General
-
(Website/Extensions) Archive old version of extensions *VW*
Maintain old versions of extensions on the website so that authors who lose them can retrieve them.
1 vote -
(IDE) Insert the matching closing bracket automatically
Brackets are rarely used alone. Either automatically insert the closing bracket immediately after the opening bracket or have this as an option.
I would find this particularly useful in the Mac IDE, since entering an opening bracket to start a comment causes the entire story from that point on to be reformatted as a comment and this reformatting can take a significant time with anything larger than a simple demo story.
1 vote -
Implement Inform 7 IDE as HTML5 Web Application
Title says it all. Would it be valuable to develop I7 as a web application that compiled server-side and returned results to client or ran app in client/server paradigm? If so, is this a good idea?
1 vote -
(World model/actions) Add a sanity-checking layer to action handling
Add checking for the sanity of an action before trying implicit actions (like the "Delicious, Delicious Rocks" example, where if we're trying to eat something, we notice it's inedible before rather than after implicitly picking it up).
1 vote -
(Syntax) May conditional relations directly consult a rulebook
As is, we must use a To phrase (and global variables) as a go-between, just as the "can see" and "can touch" relations do. But this is such a powerful pattern that I feel it merits fluid expression:
The friendship rules are a rulebook.
Likability relates a person (called X) to a person (called Y) when the friendship rules succeed with X and Y.
A friendship rule: if X is.....I think of this compound construct as a very good "design pattern" for Inform 7, much like using an amendable table to define kinds-of-value while holding all of an extension's…
1 vote -
(Programming) "involving" to refer to both noun and second noun
Ability to write
Instead of doing something involving the baseball: ...
as shorthand to catch both the case where the baseball is the noun and the one
where it is the second noun; and perhaps alsoInstead of doing something indirectly to the baseball: ...
to catch only the one where it is the second noun.1 vote -
(IDE) Add a "Find More Extensions" option to the File menu *VW*
Add a new menu item to the IDEs under the File menu after the other extension related options called "Find More Extensions," which opens up the system default web browser to the Inform 7 Extensions download page. This makes it easier for new authors to see where they can find more extensions.
1 vote -
(Releasing) Have "release along with private source text" still build HTML
When releasing along with source text, I note that marking the "source text" as "private" not only doesn't link it but also skips the generation of the typeset HTML version; the only effect the statement has is to copy in source.txt. Personally I'd prefer it to still generate the HTML source; just not to link to it.
1 vote -
Abstract out block value initialisation/shell code, for use with other phrases
When you use block value types (indexed text etc) the code a phrase produces is actually placed in a SHELL function, with the head rule function instead being used to initialise the block value and close it down when finished.
It would be useful to be able to do this with other functions. I am having a look at refactoring Flexible Windows, as it is very slow because every time you change a window it runs a bunch of code. If we could use the same sort of stuff as block values do, then the window configuring could run once,…
1 vote -
Clarify the problem report for top level "let..." phrases
Currently writing "Let Cave be a room." outside a rule raises a problem report that "You wrote...but I can't find a verb here that I know how to deal with, so I am ignoring this sentence altogether."
This might be a little hard to understand for anyone who hasn't absorbed all the relevant documentation. I7 takes great pains to produce helpful messages, which is the only reason this one stands out.
A more tailored message would be splendid, a la "You wrote "let Cave..." but that suggests that Cave should be or begin a temporary name for something. I expected…
1 vote -
MoveFloatingObjects should set self when calling found_in
(This was originally a bug report, but jesse suggested moving it here. See http://inform7.com/mantis/view.php?id=594 for original post.)
The problem is that MoveFloatingObjects is not sufficiently flexible for extensions that want to make new and better kinds of backdrop.
Way back in the I6 days, the MoveFloatingObjects routine would call "i.found_in()" to decide whether i should be in or out of the location. But in the rewrite to the template system, this was changed to:
address = i.&found_in;
m = address-->0;
if (m.call(real_location) ~= 0) ...The difference is that the old way set "self" to i (for the duration of…
1 voteThis looks to me like a small and sensible change; I’ve kicked it onto the stack.
-
(IDE/Compiler) Provide a better compiler response when a command is indented below the end of a rule
I do this all the time. Consider the following code:
Check an actor going (this is the automatically open closed doors rule):
if the door gone through is not nothing and the door gone through is closed:
if the actor is the player, say "(first opening [the door gone through])[command clarification break]";
silently try the actor opening the door gone through.
if the door gone through is closed, stop the action.Note the full stop after the "silently try the actor opening the door gone through" command. The compiler should be able to detect the invalid command after the full…
1 vote -
(IDE) table extra-column errors are unclear for large tables
If I have a table like the following:
table of q
x(tab)y(tab)z
1(tab)2(tab)3
4(tab)5(tab)6
7(tab)8(tab)9(tab)10The error the IDE displays shows the whole table and not the specific line. I can use PERL to figure this out on my own, but it is messy. Could the IDE show only the first line that fails?
1 vote -
Support for bundling old game files into a Blorb archive
A long-running complaint about IF systems is that every new release of a game breaks compatibility with old save files. This is a manageable nuisance with old-fashioned native interpreters -- you can keep your old game files, or delay upgrading until a convenient time. A web interpreter gives the player no control: the author installs an upgraded release, and players find that their save files have effectively disappeared.
True backwards compatibility of save files is a very difficult problem (which is why this is a *long-running* complaint). It requires much more game file introspection than Zcode/Glulx currently provide, and that…
1 vote -
(Windows/IDE) Auto-size the toolbar buttons based on the height of the toolbar images
I'd like to customise the icons used in the Inform toolbar. I find the default icons a bit blurry, and "un-Windows-like". I've found that I can replace the icons by editing/replacing a few PNGs in the Images subdirectory. It'd be great if Inform could make allowances for differently sized (smaller) toolbar icons. This would also make a primitive form of skinning possible for the Inform IDE.
1 vote -
Revise Writing with Inform (main manual/documentation)
Writing with Inform needs a reorganization of material, as well as comprehensive reference materials to accompany it. We plan to do this, but not immediately. Currently we are constantly revising the documentation and adding or removing sections as the language changes, so it is not practical to do a ground-up rewrite until the language stabilizes further.
1 vote -
(Actions/world model) Make it easier to create new accessibility rules
Currently it's tricky/annoying writing new accessibility rules because one has to separately check the requirements on noun and second noun, as shown in the "Electrified" example:
if the action requires a touchable noun and the noun is electrified, say "You fear touching [the noun]." instead;
if the action requires a touchable second noun and the second noun is electrified, say "You fear touching [the second noun]." instead.But internally I6 does have the information about which object-that-needs-touching we're looking at. We just need to expose it to I7, with something like
To decide what object is the touching goal: (or…
1 vote -
(IDE) Add smart bracketing to IDEs
For punctuation that changes text color, the IDE should supply the terminating mark (after the cursor) when the initial mark is typed. In other words, if I type "[", the editor would automatically insert the "]" immediately after the cursor. This would prevent the entire source code below the insertion point from having to be converted to the new color, something which can create lengthy waits (and even crashes) in larger projects. It should be smart, however--place an opening quote mark or bracket directly before another character, for example, and the auto-closing should not occur.
1 vote -
Define a means for IDEs to query inform7.com to determine what extensions have been updated *VW*
Currently, if an IDE wanted to determine if an extension is updated, the easiest way would be to pull the RSS feed (which at the moment contains *all* extensions, but that could change) and compare versions by parsing some text fields.
It would be nice if an IDE could say "tell me the latest version of 'Extension by Author'".
1 vote -
(Debugging) For the annotation * to be added back to Inform
Intended so that people can note comments in transcripts
without the game interpreting their remarks as commands. (this is a feature of the Inform 6 6/11 library)1 voteThis would hardly be difficult, but we removed it because we had the impression that it annoyed more people than it helped. If feedback shows this to be wrong, we can reconsider.
- Don't see your idea?