├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── formatter.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle ├── src ├── com │ └── strongjoshua │ │ ├── console.gwt.xml │ │ └── console │ │ ├── AbstractConsole.java │ │ ├── CommandCompleter.java │ │ ├── CommandExecutor.java │ │ ├── CommandHistory.java │ │ ├── Console.java │ │ ├── ConsoleContext.java │ │ ├── ConsoleUtils.java │ │ ├── GUIConsole.java │ │ ├── HeadlessConsole.java │ │ ├── Log.java │ │ ├── LogEntry.java │ │ ├── LogLevel.java │ │ └── annotation │ │ ├── ConsoleDoc.java │ │ └── HiddenCommand.java └── default_skin │ ├── default.fnt │ ├── default.png │ ├── uiskin.atlas │ ├── uiskin.json │ └── uiskin.png └── test ├── com └── strongjoshua │ └── console │ ├── CommandHistoryTest.java │ └── ConsoleTest.java └── tests ├── Box2DTest.java ├── StageTest.java ├── VisUITest.java ├── badlogic.jpg └── test_skin ├── console-font.fnt ├── console-font.png ├── default.fnt ├── default.png ├── uiskin.atlas ├── uiskin.json └── uiskin.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/README.md -------------------------------------------------------------------------------- /formatter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/formatter.xml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'libgdx-inGameConsole' 2 | -------------------------------------------------------------------------------- /src/com/strongjoshua/console.gwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/com/strongjoshua/console.gwt.xml -------------------------------------------------------------------------------- /src/com/strongjoshua/console/AbstractConsole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/com/strongjoshua/console/AbstractConsole.java -------------------------------------------------------------------------------- /src/com/strongjoshua/console/CommandCompleter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/com/strongjoshua/console/CommandCompleter.java -------------------------------------------------------------------------------- /src/com/strongjoshua/console/CommandExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/com/strongjoshua/console/CommandExecutor.java -------------------------------------------------------------------------------- /src/com/strongjoshua/console/CommandHistory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/com/strongjoshua/console/CommandHistory.java -------------------------------------------------------------------------------- /src/com/strongjoshua/console/Console.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/com/strongjoshua/console/Console.java -------------------------------------------------------------------------------- /src/com/strongjoshua/console/ConsoleContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/com/strongjoshua/console/ConsoleContext.java -------------------------------------------------------------------------------- /src/com/strongjoshua/console/ConsoleUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/com/strongjoshua/console/ConsoleUtils.java -------------------------------------------------------------------------------- /src/com/strongjoshua/console/GUIConsole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/com/strongjoshua/console/GUIConsole.java -------------------------------------------------------------------------------- /src/com/strongjoshua/console/HeadlessConsole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/com/strongjoshua/console/HeadlessConsole.java -------------------------------------------------------------------------------- /src/com/strongjoshua/console/Log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/com/strongjoshua/console/Log.java -------------------------------------------------------------------------------- /src/com/strongjoshua/console/LogEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/com/strongjoshua/console/LogEntry.java -------------------------------------------------------------------------------- /src/com/strongjoshua/console/LogLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/com/strongjoshua/console/LogLevel.java -------------------------------------------------------------------------------- /src/com/strongjoshua/console/annotation/ConsoleDoc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/com/strongjoshua/console/annotation/ConsoleDoc.java -------------------------------------------------------------------------------- /src/com/strongjoshua/console/annotation/HiddenCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/com/strongjoshua/console/annotation/HiddenCommand.java -------------------------------------------------------------------------------- /src/default_skin/default.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/default_skin/default.fnt -------------------------------------------------------------------------------- /src/default_skin/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/default_skin/default.png -------------------------------------------------------------------------------- /src/default_skin/uiskin.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/default_skin/uiskin.atlas -------------------------------------------------------------------------------- /src/default_skin/uiskin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/default_skin/uiskin.json -------------------------------------------------------------------------------- /src/default_skin/uiskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/src/default_skin/uiskin.png -------------------------------------------------------------------------------- /test/com/strongjoshua/console/CommandHistoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/test/com/strongjoshua/console/CommandHistoryTest.java -------------------------------------------------------------------------------- /test/com/strongjoshua/console/ConsoleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/test/com/strongjoshua/console/ConsoleTest.java -------------------------------------------------------------------------------- /test/tests/Box2DTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/test/tests/Box2DTest.java -------------------------------------------------------------------------------- /test/tests/StageTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/test/tests/StageTest.java -------------------------------------------------------------------------------- /test/tests/VisUITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/test/tests/VisUITest.java -------------------------------------------------------------------------------- /test/tests/badlogic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/test/tests/badlogic.jpg -------------------------------------------------------------------------------- /test/tests/test_skin/console-font.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/test/tests/test_skin/console-font.fnt -------------------------------------------------------------------------------- /test/tests/test_skin/console-font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/test/tests/test_skin/console-font.png -------------------------------------------------------------------------------- /test/tests/test_skin/default.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/test/tests/test_skin/default.fnt -------------------------------------------------------------------------------- /test/tests/test_skin/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/test/tests/test_skin/default.png -------------------------------------------------------------------------------- /test/tests/test_skin/uiskin.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/test/tests/test_skin/uiskin.atlas -------------------------------------------------------------------------------- /test/tests/test_skin/uiskin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/test/tests/test_skin/uiskin.json -------------------------------------------------------------------------------- /test/tests/test_skin/uiskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongJoshua/libgdx-inGameConsole/HEAD/test/tests/test_skin/uiskin.png --------------------------------------------------------------------------------