-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Paragraph stylehints use _par CSS classes, rather than a div selector
Some other small fixes too
- Loading branch information
1 parent
5c5dbab
commit aff596d
Showing
9 changed files
with
170 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
** game: advent.ulx | ||
** remformat: yes | ||
|
||
* prologue | ||
|
||
ADVENTURE | ||
|
||
> east | ||
> get all | ||
set of keys: Taken. | ||
tasty food: Taken. | ||
brass lantern: Taken. | ||
small bottle: Taken. | ||
|
||
> west | ||
> south | ||
> south | ||
> south | ||
> unlock grate with keys | ||
> open it | ||
> down | ||
> west | ||
> west | ||
> turn on lamp | ||
A note on the wall says, "Magic word XYZZY." | ||
|
||
> xyzzy | ||
Inside Building | ||
|
||
* save/restore | ||
|
||
>{include} prologue | ||
|
||
> save | ||
>{fileref_prompt} adventtest | ||
Ok. | ||
|
||
> restart | ||
> yes | ||
At End Of Road | ||
|
||
> restore | ||
>{fileref_prompt} adventtest | ||
Ok. | ||
|
||
> look | ||
Inside Building | ||
|
||
* menu | ||
|
||
> look | ||
> help | ||
>{char} return | ||
I know of places, actions, and things. | ||
|
||
>{char} space | ||
>{char} n | ||
>{char} return | ||
Perhaps the first adventurer was a mulatto slave named Stephen Bishop | ||
|
||
>{char} space | ||
>{char} q | ||
At End Of Road |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
** game: inputfeaturetest.ulx | ||
** remformat: yes | ||
|
||
# Not a complete test, but it does check the functions can be run | ||
|
||
* basic | ||
|
||
InputLineFeatureTest | ||
|
||
> noecho | ||
The library has been set to no-echo mode for line input. | ||
|
||
> look | ||
look | ||
A voice booooms out: Welcome to the test chamber. | ||
|
||
> echo | ||
The library has been set to echo mode for line input (the normal behavior). | ||
|
||
> interrupt | ||
Your input will be interrupted in two seconds by a timer event. | ||
|
||
>{timer} | ||
The timer went off! (The command line was empty, though. You should see an empty prompt on the line above. Try typing something during those two seconds.) | ||
|
||
> terminate | ||
There are now 13 special line input terminator keys. | ||
|
||
> even | ||
There are now 6 special line input terminator keys. | ||
|
||
> odd | ||
There are now 6 special line input terminator keys. | ||
|
||
> none | ||
There are now 0 special line input terminator keys. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters