├── .gitignore ├── CREDITS.md ├── LICENSE.md ├── README.md ├── assets ├── art │ ├── ArrowDown.png │ ├── ArrowLeft.png │ ├── ArrowRight.png │ ├── ArrowUp.png │ ├── BGPattern.png │ ├── Battery.png │ ├── BatteryIndicator.png │ ├── BitBotGameLoop-SpriteSheet.png │ ├── BitBotTitleIntro-SpriteSheet.png │ ├── BitBotTitleLoop-SpriteSheet.png │ ├── BitBotTrainer-DreyfusClass.png │ ├── BitBotTrainer-DreyfusClassSpriteSheet.png │ ├── BlueBitBot-SpriteSheet.png │ ├── BrownBitBot-SpriteSheet.png │ ├── CommandPrompt.png │ ├── DialogueBox.png │ ├── DialogueBoxNextArrow.png │ ├── Freedom.png │ ├── GoalTile.png │ ├── GoalTileBottom.png │ ├── GrayBitBot-SpriteSheet.png │ ├── Ian.png │ ├── Jose.png │ ├── MeterBar.png │ ├── ObstacleTile.png │ ├── PortraitFriedman.png │ ├── PortraitHoloMasterController.png │ ├── PortraitMasterController.png │ ├── PortraitPlayer.png │ ├── PurpleBitBot-SpriteSheet.png │ ├── Rogelio.png │ ├── Shadow.png │ ├── SmallBitBot.png │ ├── StartTile.png │ ├── StartTileBottom.png │ ├── Tile.png │ ├── TileBottom.png │ ├── editor-bot-enemy.png │ └── editor-bot-player.png ├── levels │ ├── level0.json │ ├── level1.json │ ├── level10.json │ ├── level11.json │ ├── level12.json │ ├── level13.json │ ├── level14.json │ ├── level15.json │ ├── level16.json │ ├── level17.json │ ├── level18.json │ ├── level19.json │ ├── level2.json │ ├── level3.json │ ├── level4.json │ ├── level5.json │ ├── level6.json │ ├── level7.json │ ├── level8.json │ └── level9.json └── sounds │ ├── fx │ ├── error.mp3 │ ├── error.ogg │ ├── error.wav │ ├── fall.mp3 │ ├── fall.ogg │ ├── fall.wav │ ├── menuselect.mp3 │ ├── menuselect.ogg │ ├── menuselect.wav │ ├── move.mp3 │ ├── move.ogg │ ├── move.wav │ ├── next.mp3 │ ├── next.ogg │ ├── next.wav │ ├── powerup.mp3 │ ├── powerup.ogg │ ├── powerup.wav │ ├── reboot.mp3 │ ├── reboot.ogg │ ├── reboot.wav │ ├── respawn.mp3 │ ├── respawn.ogg │ ├── respawn.wav │ ├── success.mp3 │ ├── success.ogg │ └── success.wav │ └── music │ ├── gameover.mp3 │ ├── gameover.ogg │ ├── gameover.wav │ ├── intro.mp3 │ ├── intro.ogg │ ├── intro.wav │ ├── metonymy.mp3 │ ├── metonymy.ogg │ ├── metonymy.wav │ ├── morallyambiguousai.mp3 │ ├── morallyambiguousai.ogg │ ├── morallyambiguousai.wav │ ├── title.mp3 │ ├── title.ogg │ ├── title.wav │ ├── victory.mp3 │ ├── victory.ogg │ └── victory.wav ├── css ├── editor.css └── game.css ├── editor.html ├── favicon.ico ├── index.html ├── lib ├── closure │ └── goog │ │ ├── array │ │ └── array.js │ │ ├── asserts │ │ └── asserts.js │ │ ├── base.js │ │ ├── debug │ │ ├── console.js │ │ ├── debug.js │ │ ├── debugwindow.js │ │ ├── devcss │ │ │ ├── devcss.js │ │ │ └── devcssrunner.js │ │ ├── divconsole.js │ │ ├── entrypointregistry.js │ │ ├── error.js │ │ ├── errorhandler.js │ │ ├── errorhandlerweakdep.js │ │ ├── errorreporter.js │ │ ├── fancywindow.js │ │ ├── formatter.js │ │ ├── fpsdisplay.js │ │ ├── gcdiagnostics.js │ │ ├── logbuffer.js │ │ ├── logger.js │ │ ├── logrecord.js │ │ ├── logrecordserializer.js │ │ ├── reflect.js │ │ ├── relativetimeprovider.js │ │ └── tracer.js │ │ ├── deps.js │ │ ├── string │ │ ├── linkify.js │ │ ├── newlines.js │ │ ├── newlines_test.js │ │ ├── parser.js │ │ ├── path.js │ │ ├── string.js │ │ ├── string_test.js │ │ ├── stringbuffer.js │ │ ├── stringformat.js │ │ └── stringifier.js │ │ └── structs │ │ ├── avltree.js │ │ ├── circularbuffer.js │ │ ├── collection.js │ │ ├── heap.js │ │ ├── inversionmap.js │ │ ├── linkedmap.js │ │ ├── map.js │ │ ├── node.js │ │ ├── pool.js │ │ ├── prioritypool.js │ │ ├── priorityqueue.js │ │ ├── quadtree.js │ │ ├── queue.js │ │ ├── set.js │ │ ├── simplepool.js │ │ ├── stringset.js │ │ ├── structs.js │ │ ├── treenode.js │ │ └── trie.js ├── howler.js ├── jaws │ ├── jaws.js │ └── tile_map.js ├── jquery.cookie.js └── jquery │ ├── jquery-2.0.3.min.js │ ├── jquery-2.0.3.min.map │ └── jquery-ui-1.10.3.custom.min.js ├── main.js ├── screenshot.png ├── src ├── gameobjects │ ├── Battery.js │ ├── DialogueSequence.js │ ├── HUD.js │ ├── Level.js │ ├── Robot.js │ └── Tile.js ├── stages │ ├── LevelStage.js │ └── NarrativeStage.js ├── states │ ├── AboutState.js │ ├── LevelSelectState.js │ ├── MenuState.js │ └── PlayState.js └── util │ ├── editor.js │ └── game_util.js └── test ├── test.html └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | .settings 2 | .project 3 | -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/CREDITS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/README.md -------------------------------------------------------------------------------- /assets/art/ArrowDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/ArrowDown.png -------------------------------------------------------------------------------- /assets/art/ArrowLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/ArrowLeft.png -------------------------------------------------------------------------------- /assets/art/ArrowRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/ArrowRight.png -------------------------------------------------------------------------------- /assets/art/ArrowUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/ArrowUp.png -------------------------------------------------------------------------------- /assets/art/BGPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/BGPattern.png -------------------------------------------------------------------------------- /assets/art/Battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/Battery.png -------------------------------------------------------------------------------- /assets/art/BatteryIndicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/BatteryIndicator.png -------------------------------------------------------------------------------- /assets/art/BitBotGameLoop-SpriteSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/BitBotGameLoop-SpriteSheet.png -------------------------------------------------------------------------------- /assets/art/BitBotTitleIntro-SpriteSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/BitBotTitleIntro-SpriteSheet.png -------------------------------------------------------------------------------- /assets/art/BitBotTitleLoop-SpriteSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/BitBotTitleLoop-SpriteSheet.png -------------------------------------------------------------------------------- /assets/art/BitBotTrainer-DreyfusClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/BitBotTrainer-DreyfusClass.png -------------------------------------------------------------------------------- /assets/art/BitBotTrainer-DreyfusClassSpriteSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/BitBotTrainer-DreyfusClassSpriteSheet.png -------------------------------------------------------------------------------- /assets/art/BlueBitBot-SpriteSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/BlueBitBot-SpriteSheet.png -------------------------------------------------------------------------------- /assets/art/BrownBitBot-SpriteSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/BrownBitBot-SpriteSheet.png -------------------------------------------------------------------------------- /assets/art/CommandPrompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/CommandPrompt.png -------------------------------------------------------------------------------- /assets/art/DialogueBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/DialogueBox.png -------------------------------------------------------------------------------- /assets/art/DialogueBoxNextArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/DialogueBoxNextArrow.png -------------------------------------------------------------------------------- /assets/art/Freedom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/Freedom.png -------------------------------------------------------------------------------- /assets/art/GoalTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/GoalTile.png -------------------------------------------------------------------------------- /assets/art/GoalTileBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/GoalTileBottom.png -------------------------------------------------------------------------------- /assets/art/GrayBitBot-SpriteSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/GrayBitBot-SpriteSheet.png -------------------------------------------------------------------------------- /assets/art/Ian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/Ian.png -------------------------------------------------------------------------------- /assets/art/Jose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/Jose.png -------------------------------------------------------------------------------- /assets/art/MeterBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/MeterBar.png -------------------------------------------------------------------------------- /assets/art/ObstacleTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/ObstacleTile.png -------------------------------------------------------------------------------- /assets/art/PortraitFriedman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/PortraitFriedman.png -------------------------------------------------------------------------------- /assets/art/PortraitHoloMasterController.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/PortraitHoloMasterController.png -------------------------------------------------------------------------------- /assets/art/PortraitMasterController.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/PortraitMasterController.png -------------------------------------------------------------------------------- /assets/art/PortraitPlayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/PortraitPlayer.png -------------------------------------------------------------------------------- /assets/art/PurpleBitBot-SpriteSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/PurpleBitBot-SpriteSheet.png -------------------------------------------------------------------------------- /assets/art/Rogelio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/Rogelio.png -------------------------------------------------------------------------------- /assets/art/Shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/Shadow.png -------------------------------------------------------------------------------- /assets/art/SmallBitBot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/SmallBitBot.png -------------------------------------------------------------------------------- /assets/art/StartTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/StartTile.png -------------------------------------------------------------------------------- /assets/art/StartTileBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/StartTileBottom.png -------------------------------------------------------------------------------- /assets/art/Tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/Tile.png -------------------------------------------------------------------------------- /assets/art/TileBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/TileBottom.png -------------------------------------------------------------------------------- /assets/art/editor-bot-enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/editor-bot-enemy.png -------------------------------------------------------------------------------- /assets/art/editor-bot-player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/art/editor-bot-player.png -------------------------------------------------------------------------------- /assets/levels/level0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level0.json -------------------------------------------------------------------------------- /assets/levels/level1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level1.json -------------------------------------------------------------------------------- /assets/levels/level10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level10.json -------------------------------------------------------------------------------- /assets/levels/level11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level11.json -------------------------------------------------------------------------------- /assets/levels/level12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level12.json -------------------------------------------------------------------------------- /assets/levels/level13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level13.json -------------------------------------------------------------------------------- /assets/levels/level14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level14.json -------------------------------------------------------------------------------- /assets/levels/level15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level15.json -------------------------------------------------------------------------------- /assets/levels/level16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level16.json -------------------------------------------------------------------------------- /assets/levels/level17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level17.json -------------------------------------------------------------------------------- /assets/levels/level18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level18.json -------------------------------------------------------------------------------- /assets/levels/level19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level19.json -------------------------------------------------------------------------------- /assets/levels/level2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level2.json -------------------------------------------------------------------------------- /assets/levels/level3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level3.json -------------------------------------------------------------------------------- /assets/levels/level4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level4.json -------------------------------------------------------------------------------- /assets/levels/level5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level5.json -------------------------------------------------------------------------------- /assets/levels/level6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level6.json -------------------------------------------------------------------------------- /assets/levels/level7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level7.json -------------------------------------------------------------------------------- /assets/levels/level8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level8.json -------------------------------------------------------------------------------- /assets/levels/level9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/levels/level9.json -------------------------------------------------------------------------------- /assets/sounds/fx/error.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/error.mp3 -------------------------------------------------------------------------------- /assets/sounds/fx/error.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/error.ogg -------------------------------------------------------------------------------- /assets/sounds/fx/error.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/error.wav -------------------------------------------------------------------------------- /assets/sounds/fx/fall.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/fall.mp3 -------------------------------------------------------------------------------- /assets/sounds/fx/fall.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/fall.ogg -------------------------------------------------------------------------------- /assets/sounds/fx/fall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/fall.wav -------------------------------------------------------------------------------- /assets/sounds/fx/menuselect.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/menuselect.mp3 -------------------------------------------------------------------------------- /assets/sounds/fx/menuselect.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/menuselect.ogg -------------------------------------------------------------------------------- /assets/sounds/fx/menuselect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/menuselect.wav -------------------------------------------------------------------------------- /assets/sounds/fx/move.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/move.mp3 -------------------------------------------------------------------------------- /assets/sounds/fx/move.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/move.ogg -------------------------------------------------------------------------------- /assets/sounds/fx/move.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/move.wav -------------------------------------------------------------------------------- /assets/sounds/fx/next.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/next.mp3 -------------------------------------------------------------------------------- /assets/sounds/fx/next.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/next.ogg -------------------------------------------------------------------------------- /assets/sounds/fx/next.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/next.wav -------------------------------------------------------------------------------- /assets/sounds/fx/powerup.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/powerup.mp3 -------------------------------------------------------------------------------- /assets/sounds/fx/powerup.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/powerup.ogg -------------------------------------------------------------------------------- /assets/sounds/fx/powerup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/powerup.wav -------------------------------------------------------------------------------- /assets/sounds/fx/reboot.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/reboot.mp3 -------------------------------------------------------------------------------- /assets/sounds/fx/reboot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/reboot.ogg -------------------------------------------------------------------------------- /assets/sounds/fx/reboot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/reboot.wav -------------------------------------------------------------------------------- /assets/sounds/fx/respawn.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/respawn.mp3 -------------------------------------------------------------------------------- /assets/sounds/fx/respawn.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/respawn.ogg -------------------------------------------------------------------------------- /assets/sounds/fx/respawn.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/respawn.wav -------------------------------------------------------------------------------- /assets/sounds/fx/success.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/success.mp3 -------------------------------------------------------------------------------- /assets/sounds/fx/success.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/success.ogg -------------------------------------------------------------------------------- /assets/sounds/fx/success.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/fx/success.wav -------------------------------------------------------------------------------- /assets/sounds/music/gameover.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/music/gameover.mp3 -------------------------------------------------------------------------------- /assets/sounds/music/gameover.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/music/gameover.ogg -------------------------------------------------------------------------------- /assets/sounds/music/gameover.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/music/gameover.wav -------------------------------------------------------------------------------- /assets/sounds/music/intro.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/music/intro.mp3 -------------------------------------------------------------------------------- /assets/sounds/music/intro.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/music/intro.ogg -------------------------------------------------------------------------------- /assets/sounds/music/intro.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/music/intro.wav -------------------------------------------------------------------------------- /assets/sounds/music/metonymy.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/music/metonymy.mp3 -------------------------------------------------------------------------------- /assets/sounds/music/metonymy.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/music/metonymy.ogg -------------------------------------------------------------------------------- /assets/sounds/music/metonymy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/music/metonymy.wav -------------------------------------------------------------------------------- /assets/sounds/music/morallyambiguousai.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/music/morallyambiguousai.mp3 -------------------------------------------------------------------------------- /assets/sounds/music/morallyambiguousai.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/music/morallyambiguousai.ogg -------------------------------------------------------------------------------- /assets/sounds/music/morallyambiguousai.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/music/morallyambiguousai.wav -------------------------------------------------------------------------------- /assets/sounds/music/title.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/music/title.mp3 -------------------------------------------------------------------------------- /assets/sounds/music/title.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/music/title.ogg -------------------------------------------------------------------------------- /assets/sounds/music/title.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/music/title.wav -------------------------------------------------------------------------------- /assets/sounds/music/victory.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/music/victory.mp3 -------------------------------------------------------------------------------- /assets/sounds/music/victory.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/music/victory.ogg -------------------------------------------------------------------------------- /assets/sounds/music/victory.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/assets/sounds/music/victory.wav -------------------------------------------------------------------------------- /css/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/css/editor.css -------------------------------------------------------------------------------- /css/game.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/css/game.css -------------------------------------------------------------------------------- /editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/editor.html -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/index.html -------------------------------------------------------------------------------- /lib/closure/goog/array/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/array/array.js -------------------------------------------------------------------------------- /lib/closure/goog/asserts/asserts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/asserts/asserts.js -------------------------------------------------------------------------------- /lib/closure/goog/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/base.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/console.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/debug.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/debugwindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/debugwindow.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/devcss/devcss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/devcss/devcss.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/devcss/devcssrunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/devcss/devcssrunner.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/divconsole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/divconsole.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/entrypointregistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/entrypointregistry.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/error.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/errorhandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/errorhandler.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/errorhandlerweakdep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/errorhandlerweakdep.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/errorreporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/errorreporter.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/fancywindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/fancywindow.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/formatter.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/fpsdisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/fpsdisplay.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/gcdiagnostics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/gcdiagnostics.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/logbuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/logbuffer.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/logger.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/logrecord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/logrecord.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/logrecordserializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/logrecordserializer.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/reflect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/reflect.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/relativetimeprovider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/relativetimeprovider.js -------------------------------------------------------------------------------- /lib/closure/goog/debug/tracer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/debug/tracer.js -------------------------------------------------------------------------------- /lib/closure/goog/deps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/deps.js -------------------------------------------------------------------------------- /lib/closure/goog/string/linkify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/string/linkify.js -------------------------------------------------------------------------------- /lib/closure/goog/string/newlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/string/newlines.js -------------------------------------------------------------------------------- /lib/closure/goog/string/newlines_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/string/newlines_test.js -------------------------------------------------------------------------------- /lib/closure/goog/string/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/string/parser.js -------------------------------------------------------------------------------- /lib/closure/goog/string/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/string/path.js -------------------------------------------------------------------------------- /lib/closure/goog/string/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/string/string.js -------------------------------------------------------------------------------- /lib/closure/goog/string/string_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/string/string_test.js -------------------------------------------------------------------------------- /lib/closure/goog/string/stringbuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/string/stringbuffer.js -------------------------------------------------------------------------------- /lib/closure/goog/string/stringformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/string/stringformat.js -------------------------------------------------------------------------------- /lib/closure/goog/string/stringifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/string/stringifier.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/avltree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/avltree.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/circularbuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/circularbuffer.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/collection.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/heap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/heap.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/inversionmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/inversionmap.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/linkedmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/linkedmap.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/map.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/node.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/pool.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/prioritypool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/prioritypool.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/priorityqueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/priorityqueue.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/quadtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/quadtree.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/queue.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/set.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/simplepool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/simplepool.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/stringset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/stringset.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/structs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/structs.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/treenode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/treenode.js -------------------------------------------------------------------------------- /lib/closure/goog/structs/trie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/closure/goog/structs/trie.js -------------------------------------------------------------------------------- /lib/howler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/howler.js -------------------------------------------------------------------------------- /lib/jaws/jaws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/jaws/jaws.js -------------------------------------------------------------------------------- /lib/jaws/tile_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/jaws/tile_map.js -------------------------------------------------------------------------------- /lib/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/jquery.cookie.js -------------------------------------------------------------------------------- /lib/jquery/jquery-2.0.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/jquery/jquery-2.0.3.min.js -------------------------------------------------------------------------------- /lib/jquery/jquery-2.0.3.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/jquery/jquery-2.0.3.min.map -------------------------------------------------------------------------------- /lib/jquery/jquery-ui-1.10.3.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/lib/jquery/jquery-ui-1.10.3.custom.min.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/main.js -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/gameobjects/Battery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/src/gameobjects/Battery.js -------------------------------------------------------------------------------- /src/gameobjects/DialogueSequence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/src/gameobjects/DialogueSequence.js -------------------------------------------------------------------------------- /src/gameobjects/HUD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/src/gameobjects/HUD.js -------------------------------------------------------------------------------- /src/gameobjects/Level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/src/gameobjects/Level.js -------------------------------------------------------------------------------- /src/gameobjects/Robot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/src/gameobjects/Robot.js -------------------------------------------------------------------------------- /src/gameobjects/Tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/src/gameobjects/Tile.js -------------------------------------------------------------------------------- /src/stages/LevelStage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/src/stages/LevelStage.js -------------------------------------------------------------------------------- /src/stages/NarrativeStage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/src/stages/NarrativeStage.js -------------------------------------------------------------------------------- /src/states/AboutState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/src/states/AboutState.js -------------------------------------------------------------------------------- /src/states/LevelSelectState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/src/states/LevelSelectState.js -------------------------------------------------------------------------------- /src/states/MenuState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/src/states/MenuState.js -------------------------------------------------------------------------------- /src/states/PlayState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/src/states/PlayState.js -------------------------------------------------------------------------------- /src/util/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/src/util/editor.js -------------------------------------------------------------------------------- /src/util/game_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/src/util/game_util.js -------------------------------------------------------------------------------- /test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/test/test.html -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetcarolinagames/BitBot/HEAD/test/test.js --------------------------------------------------------------------------------