diff --git a/bin/Game.html b/bin/Game.html deleted file mode 100755 index d623b22..0000000 --- a/bin/Game.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - -SugarCube - - - - - - - - - - - - - - - - - -
-
-
Your browser lacks required capabilities. Please upgrade it or switch to another to continue.
-
Loading…
-
- - - - diff --git a/compile.bat b/compile.bat index b4ba19c..797ed9b 100755 --- a/compile.bat +++ b/compile.bat @@ -7,9 +7,9 @@ pushd %~dp0 :: Run the appropriate compiler for the user's CPU architecture. if %PROCESSOR_ARCHITECTURE% == AMD64 ( - CALL "%~dp0devTools\tweeGo\tweego_win64.exe" -o "%~dp0bin/Game.html" "%~dp0src" + CALL "%~dp0devTools\tweeGo\tweego_win64.exe" -o "%~dp0docs/index.html" "%~dp0src" ) else ( - CALL "%~dp0devTools\tweeGo\tweego_win86.exe" -o "%~dp0bin/Game.html" "%~dp0src*" + CALL "%~dp0devTools\tweeGo\tweego_win86.exe" -o "%~dp0docs/index.html" "%~dp0src*" ) popd diff --git a/compile.sh b/compile.sh index 56baa9b..ce2d476 100644 --- a/compile.sh +++ b/compile.sh @@ -1,3 +1,3 @@ #! /bin/bash -devTools/tweeGo/tweego_nix64 -o bin/Game.html src/* +devTools/tweeGo/tweego_nix64 -o docs/index.html src/* diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..037d824 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,1339 @@ + + + + +Game Title + + + + + + + + + + + + + + + + +
+
+
Your browser lacks required capabilities. Please upgrade it or switch to another to continue.
+
Loading…
+
+ + + + diff --git a/src/engine/js/achievement.js b/src/engine/js/achievement.js deleted file mode 100755 index 3275cfb..0000000 --- a/src/engine/js/achievement.js +++ /dev/null @@ -1,14 +0,0 @@ -// <> macro -Macro.add('achievement', { - handler : function () { - - var $wrapper = $(document.createElement('div')); - var className = "ach"; - var content = "

Achievement!

you achieved something
\\"; - - $wrapper - .wiki(content) - .addClass(className) - .appendTo(this.output); - } -}); diff --git a/src/engine/passages/refresh.tw b/src/engine/passages/refresh.tw new file mode 100644 index 0000000..4d1ce62 --- /dev/null +++ b/src/engine/passages/refresh.tw @@ -0,0 +1,9 @@ +/* Passage Refresh Widget + Description: + Simple widget to refresh the current passage. + Options: + Use: + <> +*/ +:: Refresh Widget [widget nobr] +<><><><> \ No newline at end of file diff --git a/src/game/characters/character/character.tw b/src/game/characters/character/character.tw new file mode 100644 index 0000000..697f3e0 --- /dev/null +++ b/src/game/characters/character/character.tw @@ -0,0 +1,10 @@ +:: character_examine +A character. + +<> +<> + +:: character_dialog_conversation +Hello! + +<> \ No newline at end of file diff --git a/src/game/items/item/item.tw b/src/game/items/item/item.tw new file mode 100644 index 0000000..2164186 --- /dev/null +++ b/src/game/items/item/item.tw @@ -0,0 +1,6 @@ +:: item_examine +An item. + +<><><> + +<> diff --git a/src/game/rooms/hallway/hallway.tw b/src/game/rooms/hallway/hallway.tw new file mode 100644 index 0000000..0564420 --- /dev/null +++ b/src/game/rooms/hallway/hallway.tw @@ -0,0 +1,7 @@ +:: hallway_title +Hallway + +:: hallway_description +A hallway. + +:: hallway_image \ No newline at end of file diff --git a/src/game/rooms/room/room.tw b/src/game/rooms/room/room.tw new file mode 100644 index 0000000..5288d40 --- /dev/null +++ b/src/game/rooms/room/room.tw @@ -0,0 +1,7 @@ +:: room_title +Room + +:: room_description +A room. + +:: room_image \ No newline at end of file diff --git a/src/game/setup/GameSetup.tw b/src/game/setup/GameSetup.tw index 4016ce1..d291d15 100755 --- a/src/game/setup/GameSetup.tw +++ b/src/game/setup/GameSetup.tw @@ -1,3 +1,37 @@ :: GameSetup /* Put your variable setup here and NOT in StoryInit */ + +/* Initialize Rooms */ +<> +<> +<> + +<> +<> +<> + +/* Add exits */ +<> +<> + +/* Setup the player. */ +<> + +/* Initialize Items */ +<> +<> + +/* Add Items to Rooms */ +<> + +/* Initialize Characters */ +<> +<> + +/* Place Characters in Rooms*/ +<> + +/* Initialize Character Conversations*/ +<> +