├── .gitattributes ├── .gitignore ├── .idea ├── .idea.MonogameHtml │ └── .idea │ │ ├── .gitignore │ │ ├── encodings.xml │ │ ├── inspectionProfiles │ │ └── Project_Default.xml │ │ ├── misc.xml │ │ └── vcs.xml ├── MonoGameHtml.iml ├── modules.xml ├── vcs.xml └── workspace.xml ├── .vs └── MonogameHtml │ ├── DesignTimeBuild │ └── .dtbcache.v2 │ └── v16 │ └── .suo ├── Example ├── Content │ ├── Apple.png │ ├── Content.mgcb │ ├── Stick.png │ └── Sword.png ├── Example.csproj ├── Examples │ ├── ExamplePicker │ │ ├── Assets │ │ │ ├── CSS │ │ │ │ └── Styles.css │ │ │ ├── Cache │ │ │ │ └── MonoGameCache_ExamplePicker.cs │ │ │ └── Scripts │ │ │ │ └── script.monohtml │ │ └── ExamplePickerGame.cs │ ├── Inventory │ │ ├── Assets │ │ │ ├── CSS │ │ │ │ └── Styles.css │ │ │ └── Scripts │ │ │ │ └── script.monohtml │ │ ├── Inventory.cs │ │ └── InventoryGame.cs │ ├── LiveEdit │ │ ├── Assets │ │ │ ├── CSS │ │ │ │ └── Styles.css │ │ │ ├── Cache │ │ │ │ └── MonoGameCache_LiveEdit.cs │ │ │ └── Scripts │ │ │ │ └── script.monohtml │ │ └── LiveEditGame.cs │ ├── SplitterTest │ │ ├── Assets │ │ │ ├── CSS │ │ │ │ └── Styles.css │ │ │ ├── Cache │ │ │ │ └── MonoGameCache_SplitterTest.cs │ │ │ ├── Fonts │ │ │ │ └── Corleone.ttf │ │ │ └── Scripts │ │ │ │ └── script.monohtml │ │ └── SplitterTestGame.cs │ └── TextInput │ │ ├── Assets │ │ ├── CSS │ │ │ └── Styles.css │ │ ├── Cache │ │ │ └── MonoGameCache_TextInput.cs │ │ ├── Fonts │ │ │ └── Corleone.ttf │ │ └── Scripts │ │ │ └── script.monohtml │ │ └── TextInputGame.cs ├── Icon.bmp ├── Icon.ico ├── Program.cs └── app.manifest ├── LICENSE ├── MonoGameHtml.sln ├── MonoGameHtml.sln.DotSettings.user ├── MonoGameHtml ├── .gitattributes ├── Content │ └── Content.mgcb ├── Icon.bmp ├── Icon.ico ├── JetBrainsMono.ttf ├── MonoGameHtml.csproj ├── README.md ├── Source │ ├── Html │ │ ├── BakedDefaultAssets.cs │ │ ├── CSSHandler.cs │ │ ├── CacheSettings.cs │ │ ├── DelimPair.cs │ │ ├── Exceptions │ │ │ ├── InvalidHtmlComponentException.cs │ │ │ ├── InvalidHtmlStructureException.cs │ │ │ └── MacroException.cs │ │ ├── HtmlCache.cs │ │ ├── HtmlCatchingRunner.cs │ │ ├── HtmlComponents.cs │ │ ├── HtmlIntermediateUser.cs │ │ ├── HtmlLiveEdit.cs │ │ ├── HtmlLiveEditRunner.cs │ │ ├── HtmlMain.cs │ │ ├── HtmlNode.cs │ │ ├── HtmlPair.cs │ │ ├── HtmlProcessor.cs │ │ ├── HtmlRunner.cs │ │ ├── HtmlSettings.cs │ │ ├── HtmlStartInfo.cs │ │ ├── Macros.cs │ │ ├── NodeUtil.cs │ │ ├── PropInfo.cs │ │ └── StatePack.cs │ ├── Program.cs │ └── Util │ │ ├── ColorConsole │ │ ├── ConsoleMain.cs │ │ └── Range.cs │ │ ├── FileUtil.cs │ │ ├── FrameCounter.cs │ │ ├── HtmlOutput.cs │ │ ├── KeyInfo.cs │ │ ├── Logger.cs │ │ ├── LoggerSettings.cs │ │ ├── Maths.cs │ │ ├── MonoGameHtmlFonts.cs │ │ ├── MouseInfo.cs │ │ ├── Parser.cs │ │ ├── StringUtil.cs │ │ ├── TextInputUtil.cs │ │ ├── Textures.cs │ │ ├── Util.cs │ │ └── Warnings.cs ├── app.manifest └── docs │ └── images │ ├── FruitListExample.PNG │ ├── MonoGameHtmlIcon.png │ └── MonoGameHtmlLogo.png ├── MonogameHtml.sln.DotSettings ├── README.md └── Testing ├── Assets ├── CSS │ ├── IDE.css │ └── Styles.css ├── Cache │ └── MonoGameCache.cs ├── Fonts │ └── JetBrainsMono.ttf └── Scripts │ ├── HtmlWriter │ ├── App.monohtml │ ├── FileScreen.monohtml │ ├── MainScreen.monohtml │ ├── Predictor.monohtml │ ├── SearchBar.monohtml │ ├── Test.monohtml │ └── TextRender.monohtml │ └── rainbow.monohtml ├── Content ├── Content.mgcb └── bush.png ├── Icon.bmp ├── Icon.ico ├── Source ├── GameMain.cs ├── HtmlWriter │ ├── CodePredictor.cs │ └── HtmlWriter.cs ├── Program.cs └── Thesaurus │ ├── Scraper.cs │ ├── Speech.cs │ └── Thesaurus.cs ├── Testing.csproj └── app.manifest /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.MonogameHtml/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/.idea/.idea.MonogameHtml/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.MonogameHtml/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/.idea/.idea.MonogameHtml/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.MonogameHtml/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/.idea/.idea.MonogameHtml/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/.idea.MonogameHtml/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/.idea/.idea.MonogameHtml/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/.idea.MonogameHtml/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/.idea/.idea.MonogameHtml/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/MonoGameHtml.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/.idea/MonoGameHtml.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.vs/MonogameHtml/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/.vs/MonogameHtml/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/MonogameHtml/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/.vs/MonogameHtml/v16/.suo -------------------------------------------------------------------------------- /Example/Content/Apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Content/Apple.png -------------------------------------------------------------------------------- /Example/Content/Content.mgcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Content/Content.mgcb -------------------------------------------------------------------------------- /Example/Content/Stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Content/Stick.png -------------------------------------------------------------------------------- /Example/Content/Sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Content/Sword.png -------------------------------------------------------------------------------- /Example/Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Example.csproj -------------------------------------------------------------------------------- /Example/Examples/ExamplePicker/Assets/CSS/Styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/ExamplePicker/Assets/CSS/Styles.css -------------------------------------------------------------------------------- /Example/Examples/ExamplePicker/Assets/Cache/MonoGameCache_ExamplePicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/ExamplePicker/Assets/Cache/MonoGameCache_ExamplePicker.cs -------------------------------------------------------------------------------- /Example/Examples/ExamplePicker/Assets/Scripts/script.monohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/ExamplePicker/Assets/Scripts/script.monohtml -------------------------------------------------------------------------------- /Example/Examples/ExamplePicker/ExamplePickerGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/ExamplePicker/ExamplePickerGame.cs -------------------------------------------------------------------------------- /Example/Examples/Inventory/Assets/CSS/Styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/Inventory/Assets/CSS/Styles.css -------------------------------------------------------------------------------- /Example/Examples/Inventory/Assets/Scripts/script.monohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/Inventory/Assets/Scripts/script.monohtml -------------------------------------------------------------------------------- /Example/Examples/Inventory/Inventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/Inventory/Inventory.cs -------------------------------------------------------------------------------- /Example/Examples/Inventory/InventoryGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/Inventory/InventoryGame.cs -------------------------------------------------------------------------------- /Example/Examples/LiveEdit/Assets/CSS/Styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/LiveEdit/Assets/CSS/Styles.css -------------------------------------------------------------------------------- /Example/Examples/LiveEdit/Assets/Cache/MonoGameCache_LiveEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/LiveEdit/Assets/Cache/MonoGameCache_LiveEdit.cs -------------------------------------------------------------------------------- /Example/Examples/LiveEdit/Assets/Scripts/script.monohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/LiveEdit/Assets/Scripts/script.monohtml -------------------------------------------------------------------------------- /Example/Examples/LiveEdit/LiveEditGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/LiveEdit/LiveEditGame.cs -------------------------------------------------------------------------------- /Example/Examples/SplitterTest/Assets/CSS/Styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/SplitterTest/Assets/CSS/Styles.css -------------------------------------------------------------------------------- /Example/Examples/SplitterTest/Assets/Cache/MonoGameCache_SplitterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/SplitterTest/Assets/Cache/MonoGameCache_SplitterTest.cs -------------------------------------------------------------------------------- /Example/Examples/SplitterTest/Assets/Fonts/Corleone.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/SplitterTest/Assets/Fonts/Corleone.ttf -------------------------------------------------------------------------------- /Example/Examples/SplitterTest/Assets/Scripts/script.monohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/SplitterTest/Assets/Scripts/script.monohtml -------------------------------------------------------------------------------- /Example/Examples/SplitterTest/SplitterTestGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/SplitterTest/SplitterTestGame.cs -------------------------------------------------------------------------------- /Example/Examples/TextInput/Assets/CSS/Styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/TextInput/Assets/CSS/Styles.css -------------------------------------------------------------------------------- /Example/Examples/TextInput/Assets/Cache/MonoGameCache_TextInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/TextInput/Assets/Cache/MonoGameCache_TextInput.cs -------------------------------------------------------------------------------- /Example/Examples/TextInput/Assets/Fonts/Corleone.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/TextInput/Assets/Fonts/Corleone.ttf -------------------------------------------------------------------------------- /Example/Examples/TextInput/Assets/Scripts/script.monohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/TextInput/Assets/Scripts/script.monohtml -------------------------------------------------------------------------------- /Example/Examples/TextInput/TextInputGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Examples/TextInput/TextInputGame.cs -------------------------------------------------------------------------------- /Example/Icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Icon.bmp -------------------------------------------------------------------------------- /Example/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Icon.ico -------------------------------------------------------------------------------- /Example/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/Program.cs -------------------------------------------------------------------------------- /Example/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Example/app.manifest -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/LICENSE -------------------------------------------------------------------------------- /MonoGameHtml.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml.sln -------------------------------------------------------------------------------- /MonoGameHtml.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml.sln.DotSettings.user -------------------------------------------------------------------------------- /MonoGameHtml/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/.gitattributes -------------------------------------------------------------------------------- /MonoGameHtml/Content/Content.mgcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Content/Content.mgcb -------------------------------------------------------------------------------- /MonoGameHtml/Icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Icon.bmp -------------------------------------------------------------------------------- /MonoGameHtml/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Icon.ico -------------------------------------------------------------------------------- /MonoGameHtml/JetBrainsMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/JetBrainsMono.ttf -------------------------------------------------------------------------------- /MonoGameHtml/MonoGameHtml.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/MonoGameHtml.csproj -------------------------------------------------------------------------------- /MonoGameHtml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/README.md -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/BakedDefaultAssets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/BakedDefaultAssets.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/CSSHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/CSSHandler.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/CacheSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/CacheSettings.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/DelimPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/DelimPair.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/Exceptions/InvalidHtmlComponentException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/Exceptions/InvalidHtmlComponentException.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/Exceptions/InvalidHtmlStructureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/Exceptions/InvalidHtmlStructureException.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/Exceptions/MacroException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/Exceptions/MacroException.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/HtmlCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/HtmlCache.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/HtmlCatchingRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/HtmlCatchingRunner.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/HtmlComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/HtmlComponents.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/HtmlIntermediateUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/HtmlIntermediateUser.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/HtmlLiveEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/HtmlLiveEdit.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/HtmlLiveEditRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/HtmlLiveEditRunner.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/HtmlMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/HtmlMain.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/HtmlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/HtmlNode.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/HtmlPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/HtmlPair.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/HtmlProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/HtmlProcessor.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/HtmlRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/HtmlRunner.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/HtmlSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/HtmlSettings.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/HtmlStartInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/HtmlStartInfo.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/Macros.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/Macros.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/NodeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/NodeUtil.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/PropInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/PropInfo.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Html/StatePack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Html/StatePack.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Program.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Util/ColorConsole/ConsoleMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Util/ColorConsole/ConsoleMain.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Util/ColorConsole/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Util/ColorConsole/Range.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Util/FileUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Util/FileUtil.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Util/FrameCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Util/FrameCounter.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Util/HtmlOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Util/HtmlOutput.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Util/KeyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Util/KeyInfo.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Util/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Util/Logger.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Util/LoggerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Util/LoggerSettings.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Util/Maths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Util/Maths.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Util/MonoGameHtmlFonts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Util/MonoGameHtmlFonts.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Util/MouseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Util/MouseInfo.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Util/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Util/Parser.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Util/StringUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Util/StringUtil.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Util/TextInputUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Util/TextInputUtil.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Util/Textures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Util/Textures.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Util/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Util/Util.cs -------------------------------------------------------------------------------- /MonoGameHtml/Source/Util/Warnings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/Source/Util/Warnings.cs -------------------------------------------------------------------------------- /MonoGameHtml/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/app.manifest -------------------------------------------------------------------------------- /MonoGameHtml/docs/images/FruitListExample.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/docs/images/FruitListExample.PNG -------------------------------------------------------------------------------- /MonoGameHtml/docs/images/MonoGameHtmlIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/docs/images/MonoGameHtmlIcon.png -------------------------------------------------------------------------------- /MonoGameHtml/docs/images/MonoGameHtmlLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonoGameHtml/docs/images/MonoGameHtmlLogo.png -------------------------------------------------------------------------------- /MonogameHtml.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/MonogameHtml.sln.DotSettings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/README.md -------------------------------------------------------------------------------- /Testing/Assets/CSS/IDE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Assets/CSS/IDE.css -------------------------------------------------------------------------------- /Testing/Assets/CSS/Styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Assets/CSS/Styles.css -------------------------------------------------------------------------------- /Testing/Assets/Cache/MonoGameCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Assets/Cache/MonoGameCache.cs -------------------------------------------------------------------------------- /Testing/Assets/Fonts/JetBrainsMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Assets/Fonts/JetBrainsMono.ttf -------------------------------------------------------------------------------- /Testing/Assets/Scripts/HtmlWriter/App.monohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Assets/Scripts/HtmlWriter/App.monohtml -------------------------------------------------------------------------------- /Testing/Assets/Scripts/HtmlWriter/FileScreen.monohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Assets/Scripts/HtmlWriter/FileScreen.monohtml -------------------------------------------------------------------------------- /Testing/Assets/Scripts/HtmlWriter/MainScreen.monohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Assets/Scripts/HtmlWriter/MainScreen.monohtml -------------------------------------------------------------------------------- /Testing/Assets/Scripts/HtmlWriter/Predictor.monohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Assets/Scripts/HtmlWriter/Predictor.monohtml -------------------------------------------------------------------------------- /Testing/Assets/Scripts/HtmlWriter/SearchBar.monohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Assets/Scripts/HtmlWriter/SearchBar.monohtml -------------------------------------------------------------------------------- /Testing/Assets/Scripts/HtmlWriter/Test.monohtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/Assets/Scripts/HtmlWriter/TextRender.monohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Assets/Scripts/HtmlWriter/TextRender.monohtml -------------------------------------------------------------------------------- /Testing/Assets/Scripts/rainbow.monohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Assets/Scripts/rainbow.monohtml -------------------------------------------------------------------------------- /Testing/Content/Content.mgcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Content/Content.mgcb -------------------------------------------------------------------------------- /Testing/Content/bush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Content/bush.png -------------------------------------------------------------------------------- /Testing/Icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Icon.bmp -------------------------------------------------------------------------------- /Testing/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Icon.ico -------------------------------------------------------------------------------- /Testing/Source/GameMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Source/GameMain.cs -------------------------------------------------------------------------------- /Testing/Source/HtmlWriter/CodePredictor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Source/HtmlWriter/CodePredictor.cs -------------------------------------------------------------------------------- /Testing/Source/HtmlWriter/HtmlWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Source/HtmlWriter/HtmlWriter.cs -------------------------------------------------------------------------------- /Testing/Source/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Source/Program.cs -------------------------------------------------------------------------------- /Testing/Source/Thesaurus/Scraper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Source/Thesaurus/Scraper.cs -------------------------------------------------------------------------------- /Testing/Source/Thesaurus/Speech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Source/Thesaurus/Speech.cs -------------------------------------------------------------------------------- /Testing/Source/Thesaurus/Thesaurus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Source/Thesaurus/Thesaurus.cs -------------------------------------------------------------------------------- /Testing/Testing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/Testing.csproj -------------------------------------------------------------------------------- /Testing/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobySalusky/MonoGameHtml/HEAD/Testing/app.manifest --------------------------------------------------------------------------------