├── .bumpversion.cfg ├── .gitattributes ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── config ├── CREDITS.txt ├── gta3 │ ├── alternators.xml │ ├── cleo.xml │ ├── commandline.txt │ ├── commands.xml │ ├── constants.xml │ ├── default.xml │ └── extensions.xml ├── gta3sc.xml ├── gtasa │ ├── alternators.xml │ ├── cleo.xml │ ├── commandline.txt │ ├── commands.xml │ ├── constants.xml │ ├── default.xml │ ├── eventchoices.xml │ ├── extensions.xml │ ├── sounds.xml │ ├── taskchoices.xml │ └── taskopcodes.xml └── gtavc │ ├── alternators.xml │ ├── cleo.xml │ ├── commandline.txt │ ├── commands.xml │ ├── constants.xml │ ├── default.xml │ ├── extensions.xml │ └── mobile.xml ├── deps ├── CMake │ ├── GetGitRevisionDescription.cmake │ ├── GetGitRevisionDescription.cmake.in │ └── PrecompiledHeader.cmake ├── SmallVector │ ├── LICENSE.TXT │ ├── README.md │ └── SmallVector.h ├── any │ └── include │ │ └── any │ │ └── any.hpp ├── cppformat │ └── cppformat │ │ ├── .travis.yml │ │ ├── Android.mk │ │ ├── CMakeLists.txt │ │ ├── ChangeLog.rst │ │ ├── LICENSE.rst │ │ ├── README.rst │ │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── _static │ │ │ ├── bootstrap.min.js │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── _templates │ │ │ ├── layout.html │ │ │ └── search.html │ │ ├── api.rst │ │ ├── basic-bootstrap │ │ │ ├── README │ │ │ ├── layout.html │ │ │ └── theme.conf │ │ ├── bootstrap │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── build.py │ │ ├── conf.py │ │ ├── contents.rst │ │ ├── cppformat.less │ │ ├── html │ │ │ ├── _sources │ │ │ │ ├── api.txt │ │ │ │ ├── contents.txt │ │ │ │ ├── index.txt │ │ │ │ ├── syntax.txt │ │ │ │ └── usage.txt │ │ │ ├── _static │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── basic.css │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── comment-bright.png │ │ │ │ ├── comment-close.png │ │ │ │ ├── comment.png │ │ │ │ ├── cppformat.css │ │ │ │ ├── doctools.js │ │ │ │ ├── down-pressed.png │ │ │ │ ├── down.png │ │ │ │ ├── file.png │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ ├── jquery-1.11.1.js │ │ │ │ ├── jquery.js │ │ │ │ ├── minus.png │ │ │ │ ├── plus.png │ │ │ │ ├── pygments.css │ │ │ │ ├── searchtools.js │ │ │ │ ├── underscore-1.3.1.js │ │ │ │ ├── underscore.js │ │ │ │ ├── up-pressed.png │ │ │ │ ├── up.png │ │ │ │ └── websupport.js │ │ │ ├── api.html │ │ │ ├── contents.html │ │ │ ├── genindex.html │ │ │ ├── index.html │ │ │ ├── objects.inv │ │ │ ├── search.html │ │ │ ├── searchindex.js │ │ │ ├── syntax.html │ │ │ └── usage.html │ │ ├── index.rst │ │ ├── python-license.txt │ │ ├── syntax.rst │ │ └── usage.rst │ │ ├── format.cc │ │ ├── format.h │ │ ├── gmock │ │ ├── gmock-gtest-all.cc │ │ ├── gmock │ │ │ └── gmock.h │ │ └── gtest │ │ │ ├── gtest-spi.h │ │ │ └── gtest.h │ │ ├── posix.cc │ │ ├── posix.h │ │ ├── support │ │ ├── README │ │ ├── appveyor-build.py │ │ ├── appveyor.yml │ │ ├── biicode-build.py │ │ ├── biicode │ │ │ ├── biicode.conf │ │ │ ├── ignore.bii │ │ │ └── sample.cc │ │ ├── cmake │ │ │ ├── FindSetEnv.cmake │ │ │ ├── biicode.cmake │ │ │ └── run-cmake.bat │ │ ├── download.py │ │ ├── release.py │ │ ├── rtd │ │ │ ├── conf.py │ │ │ ├── index.rst │ │ │ └── theme │ │ │ │ ├── layout.html │ │ │ │ └── theme.conf │ │ ├── timer.py │ │ ├── travis-build.py │ │ └── update-converity-branch.py │ │ └── test │ │ ├── CMakeLists.txt │ │ ├── assert-test.cc │ │ ├── compile-test │ │ └── CMakeLists.txt │ │ ├── format-impl-test.cc │ │ ├── format-test.cc │ │ ├── gtest-extra-test.cc │ │ ├── gtest-extra.cc │ │ ├── gtest-extra.h │ │ ├── header-only-test.cc │ │ ├── header-only-test2.cc │ │ ├── macro-test.cc │ │ ├── mock-allocator.h │ │ ├── posix-mock-test.cc │ │ ├── posix-mock.h │ │ ├── posix-test.cc │ │ ├── printf-test.cc │ │ ├── test-assert.h │ │ ├── test-main.cc │ │ ├── util-test.cc │ │ ├── util.cc │ │ └── util.h ├── expected │ ├── LICENSE │ ├── README.md │ └── include │ │ └── nonstd │ │ └── expected.hpp ├── optional │ ├── LICENSE_1_0.txt │ ├── README.md │ └── include │ │ └── optional │ │ └── optional.hpp ├── rapidxml │ ├── license.txt │ ├── manual.html │ ├── rapidxml.hpp │ ├── rapidxml_iterators.hpp │ ├── rapidxml_print.hpp │ └── rapidxml_utils.hpp ├── string_view │ ├── CREDITS.TXT │ ├── LICENSE.TXT │ ├── README.md │ └── string_view.hpp └── variant │ ├── .appveyor.yml │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ ├── cmake │ └── eggs.variant-config.cmake.in │ ├── docs │ ├── README.md │ ├── config.md │ ├── css │ │ ├── img │ │ │ ├── bgcode.png │ │ │ └── favicon.png │ │ ├── main.css │ │ └── normalize.css │ ├── design.md │ ├── index.md │ ├── introduction.md │ ├── logo.png │ └── reference.Doxyfile │ ├── include │ └── eggs │ │ ├── variant.hpp │ │ └── variant │ │ ├── bad_variant_access.hpp │ │ ├── detail │ │ ├── apply.hpp │ │ ├── config │ │ │ ├── prefix.hpp │ │ │ └── suffix.hpp │ │ ├── pack.hpp │ │ ├── storage.hpp │ │ ├── utility.hpp │ │ └── visitor.hpp │ │ ├── in_place.hpp │ │ └── variant.hpp │ └── test │ ├── CMakeLists.txt │ ├── README.md │ ├── apply.cpp │ ├── assign.conversion.cpp │ ├── assign.copy.cpp │ ├── assign.emplace.cpp │ ├── assign.move.cpp │ ├── catch.cpp │ ├── catch.hpp │ ├── cnstr.conversion.cpp │ ├── cnstr.copy.cpp │ ├── cnstr.default.cpp │ ├── cnstr.emplace.cpp │ ├── cnstr.move.cpp │ ├── constexpr.hpp │ ├── dtor.cpp │ ├── dtor.hpp │ ├── elem.get.cpp │ ├── elem.get_if.cpp │ ├── hash.cpp │ ├── helper.cpp │ ├── in_place.cpp │ ├── obs.bool.cpp │ ├── obs.target.cpp │ ├── obs.target_type.cpp │ ├── obs.which.cpp │ ├── rel.equality.cpp │ ├── rel.order.cpp │ ├── swap.cpp │ └── throw.hpp ├── git-sha1.cpp.in ├── src ├── README.md ├── annotation.hpp ├── binary_fetcher.hpp ├── binary_writer.hpp ├── cdimage.hpp ├── codegen.cpp ├── codegen.hpp ├── commands.cpp ├── commands.hpp ├── compiler.cpp ├── compiler.hpp ├── config.cpp ├── cpp │ ├── any.hpp │ ├── argv.hpp │ ├── contracts.hpp │ ├── expected.hpp │ ├── file.hpp │ ├── filesystem.hpp │ ├── icompare.hpp │ ├── optional.hpp │ ├── scope_guard.hpp │ ├── small_vector.hpp │ ├── string_view.hpp │ └── variant.hpp ├── decompiler_ir2.hpp ├── disassembler.cpp ├── disassembler.hpp ├── main.cpp ├── main_compile.cpp ├── main_decompile.cpp ├── parser.hpp ├── parser_lexer.cpp ├── parser_syntax.cpp ├── program.cpp ├── program.hpp ├── script.cpp ├── script.hpp ├── stdinc.cpp ├── stdinc.h ├── symtable.cpp ├── symtable.hpp ├── system.cpp └── system.hpp ├── test ├── Checksum.sh ├── Discard.sh ├── GTA3ScriptTest.py ├── Not.sh ├── README.md ├── VerifyDiagnosticConsumer.py ├── codegen │ ├── 0001-var-offset.sc │ ├── 0001-var-offset │ │ └── mission.sc │ ├── 0002-multifile-local-offsets.sc │ ├── 0002-multifile-local-offsets │ │ ├── miss1.sc │ │ └── subscript.sc │ ├── 0003-call-scope-fix.sc │ ├── 0004-includers-label.sc │ ├── 0004-includers-label │ │ ├── miss1.sc │ │ └── subscript.sc │ ├── 0005-mission-vars-header.sc │ ├── 0005-mission-vars-header │ │ ├── miss1.sc │ │ └── miss2.sc │ ├── 0006-require-label-offset.sc │ ├── 0006-require-label-offset │ │ ├── a.sc │ │ └── b.sc │ ├── alternators.sc │ ├── andor.sc │ ├── arrays.sc │ ├── cheader_multifile.sc │ ├── cheader_multifile │ │ ├── miss1.sc │ │ ├── stream1.sc │ │ └── subscript1.sc │ ├── cheader_oatc.sc │ ├── cleo_call.sc │ ├── cleo_mission.sc │ ├── cleo_param.sc │ ├── cleo_script.sc │ ├── cleo_string.sc │ ├── cleo_string_3vc.sc │ ├── collectables.sc │ ├── const.sc │ ├── constant_precedence.sc │ ├── control_flow.sc │ ├── dump.sc │ ├── expr.sc │ ├── extension_lvar_eq_var.sc │ ├── extension_repeat_lvar.sc │ ├── models.sc │ ├── multifile.sc │ ├── multifile │ │ ├── gosub1.sc │ │ ├── gosub2.sc │ │ ├── gosub3.sc │ │ ├── subdir │ │ │ ├── mission1 │ │ │ │ └── mission1.sc │ │ │ ├── mission2 │ │ │ │ └── mission2.sc │ │ │ ├── mission3.sc │ │ │ └── subscript2.sc │ │ └── subscript1.sc │ ├── offsets.sc │ ├── offsets │ │ ├── gosub1.sc │ │ ├── mission1.sc │ │ ├── stream1.sc │ │ └── subscript1.sc │ ├── optimize_andor.sc │ ├── optimize_zero.sc │ ├── progress.sc │ ├── progress │ │ ├── prog2.sc │ │ └── prog5.sc │ ├── ranges.sc │ ├── require.sc │ ├── require │ │ ├── miss1.sc │ │ ├── requires │ │ │ ├── req1_from_main.sc │ │ │ ├── req2_from_extscript.sc │ │ │ ├── req3_from_subscript.sc │ │ │ ├── req4_from_miss1.sc │ │ │ ├── req5_from_stream1.sc │ │ │ ├── req6_from_everywhere.sc │ │ │ └── req7_from_subscript.sc │ │ ├── stream1.sc │ │ └── subscript.sc │ ├── require_cleo.sc │ ├── require_cleo │ │ └── req1.sc │ ├── save_string_to_debug_file.sc │ ├── scope.sc │ ├── skip_cutscene.sc │ ├── streaming.sc │ ├── streaming │ │ ├── attractor1.sc │ │ ├── brain1.sc │ │ ├── missions │ │ │ ├── mission1.sc │ │ │ └── mission2.sc │ │ ├── object1.sc │ │ ├── ped1.sc │ │ └── stream1.sc │ ├── switch_3vc.sc │ ├── switch_3vc_fail.sc │ ├── switch_sa.sc │ ├── text_label.sc │ ├── timers_3vc.sc │ ├── timers_sa.sc │ └── uppercase.sc ├── frontend │ ├── Inputs │ │ ├── override.xml │ │ └── test.xml │ ├── add_config.sc │ ├── override_config.sc │ └── switch.sc ├── lexer │ ├── commands.sc │ ├── comments.sc │ ├── dump.sc │ ├── expr.sc │ ├── label.sc │ ├── tokens.sc │ └── whitespaces.sc ├── lit.cfg ├── main │ ├── gta3.test │ └── gtavc.test ├── misc │ ├── expect_var_badindex.sc │ ├── expect_var_noexist_3vc.sc │ ├── expect_var_noexist_sa.sc │ ├── expect_var_okay_3.sc │ ├── expect_var_okay_sa.sc │ └── expect_var_okay_vc.sc ├── parser │ └── TODO ├── preprocessor │ ├── ifdef.sc │ └── syntax.sc └── semantics │ ├── Inputs │ └── data │ │ ├── default.dat │ │ ├── default.ide │ │ ├── gta.dat │ │ ├── gta3.dat │ │ ├── gta_vc.dat │ │ └── level.ide │ ├── arrays.sc │ ├── break-continue.sc │ ├── cleo_call_entity.sc │ ├── cleo_call_params.sc │ ├── cleo_call_text1.sc │ ├── cleo_call_text2.sc │ ├── cleo_disallow_global.sc │ ├── cleo_disallow_model.sc │ ├── cleo_disallow_scripts.sc │ ├── cleo_disallow_terminate.sc │ ├── collision.sc │ ├── collision │ └── gosub1.sc │ ├── commands.sc │ ├── control_flow.sc │ ├── directives.sc │ ├── directives │ ├── miss1.sc │ ├── miss2.sc │ ├── miss3.sc │ ├── miss4.sc │ ├── miss5.sc │ ├── stream1.sc │ └── subscript.sc │ ├── entity1.sc │ ├── entity2.sc │ ├── expr.sc │ ├── identifiers_3vc.sc │ ├── identifiers_sa.sc │ ├── identifiers_sa │ ├── 4x4.sc │ └── _a.sc │ ├── includers.sc │ ├── includers │ ├── gosub1.sc │ ├── something │ ├── something.sc2 │ └── subscript.sc │ ├── ranges.sc │ ├── repeat.sc │ ├── require.sc │ ├── require │ └── req1.sc │ ├── scopes.sc │ ├── script_name.sc │ ├── script_name │ └── miss1.sc │ ├── set_total.sc │ ├── skip_cutscene.sc │ ├── switch.sc │ ├── unsupported.sc │ ├── vars_scan_3vc.sc │ ├── vars_scan_sa.sc │ └── warn_conflict_text_label_var.sc └── utils ├── cmp_scmini.py ├── discover_constants.py ├── discover_entity_commands.py ├── discover_supported_commands.py ├── fix_sa.py ├── gta3sc ├── __init__.py ├── bytecode.py └── config.py ├── ir2_to_gta3.py ├── license.sh ├── make_hash.py ├── simplify.py └── test.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sc linguist-vendored 2 | *.sh text eol=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/README.md -------------------------------------------------------------------------------- /config/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/CREDITS.txt -------------------------------------------------------------------------------- /config/gta3/alternators.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gta3/alternators.xml -------------------------------------------------------------------------------- /config/gta3/cleo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gta3/cleo.xml -------------------------------------------------------------------------------- /config/gta3/commandline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gta3/commandline.txt -------------------------------------------------------------------------------- /config/gta3/commands.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gta3/commands.xml -------------------------------------------------------------------------------- /config/gta3/constants.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gta3/constants.xml -------------------------------------------------------------------------------- /config/gta3/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gta3/default.xml -------------------------------------------------------------------------------- /config/gta3/extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gta3/extensions.xml -------------------------------------------------------------------------------- /config/gta3sc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gta3sc.xml -------------------------------------------------------------------------------- /config/gtasa/alternators.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtasa/alternators.xml -------------------------------------------------------------------------------- /config/gtasa/cleo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtasa/cleo.xml -------------------------------------------------------------------------------- /config/gtasa/commandline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtasa/commandline.txt -------------------------------------------------------------------------------- /config/gtasa/commands.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtasa/commands.xml -------------------------------------------------------------------------------- /config/gtasa/constants.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtasa/constants.xml -------------------------------------------------------------------------------- /config/gtasa/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtasa/default.xml -------------------------------------------------------------------------------- /config/gtasa/eventchoices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtasa/eventchoices.xml -------------------------------------------------------------------------------- /config/gtasa/extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtasa/extensions.xml -------------------------------------------------------------------------------- /config/gtasa/sounds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtasa/sounds.xml -------------------------------------------------------------------------------- /config/gtasa/taskchoices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtasa/taskchoices.xml -------------------------------------------------------------------------------- /config/gtasa/taskopcodes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtasa/taskopcodes.xml -------------------------------------------------------------------------------- /config/gtavc/alternators.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtavc/alternators.xml -------------------------------------------------------------------------------- /config/gtavc/cleo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtavc/cleo.xml -------------------------------------------------------------------------------- /config/gtavc/commandline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtavc/commandline.txt -------------------------------------------------------------------------------- /config/gtavc/commands.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtavc/commands.xml -------------------------------------------------------------------------------- /config/gtavc/constants.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtavc/constants.xml -------------------------------------------------------------------------------- /config/gtavc/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtavc/default.xml -------------------------------------------------------------------------------- /config/gtavc/extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtavc/extensions.xml -------------------------------------------------------------------------------- /config/gtavc/mobile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/config/gtavc/mobile.xml -------------------------------------------------------------------------------- /deps/CMake/GetGitRevisionDescription.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/CMake/GetGitRevisionDescription.cmake -------------------------------------------------------------------------------- /deps/CMake/GetGitRevisionDescription.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/CMake/GetGitRevisionDescription.cmake.in -------------------------------------------------------------------------------- /deps/CMake/PrecompiledHeader.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/CMake/PrecompiledHeader.cmake -------------------------------------------------------------------------------- /deps/SmallVector/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/SmallVector/LICENSE.TXT -------------------------------------------------------------------------------- /deps/SmallVector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/SmallVector/README.md -------------------------------------------------------------------------------- /deps/SmallVector/SmallVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/SmallVector/SmallVector.h -------------------------------------------------------------------------------- /deps/any/include/any/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/any/include/any/any.hpp -------------------------------------------------------------------------------- /deps/cppformat/cppformat/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/.travis.yml -------------------------------------------------------------------------------- /deps/cppformat/cppformat/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/Android.mk -------------------------------------------------------------------------------- /deps/cppformat/cppformat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/CMakeLists.txt -------------------------------------------------------------------------------- /deps/cppformat/cppformat/ChangeLog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/ChangeLog.rst -------------------------------------------------------------------------------- /deps/cppformat/cppformat/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/LICENSE.rst -------------------------------------------------------------------------------- /deps/cppformat/cppformat/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/README.rst -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/CMakeLists.txt -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/_static/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/_static/bootstrap.min.js -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/_static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/_static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/_static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/_static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/_static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/_static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/_static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/_static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/_templates/layout.html -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/_templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/_templates/search.html -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/api.rst -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/basic-bootstrap/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/basic-bootstrap/README -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/basic-bootstrap/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/basic-bootstrap/layout.html -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/basic-bootstrap/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/alerts.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/badges.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/bootstrap.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/breadcrumbs.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/button-groups.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/buttons.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/carousel.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/close.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/code.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/component-animations.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/dropdowns.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/forms.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/glyphicons.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/grid.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/input-groups.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/jumbotron.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/labels.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/list-group.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/media.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/alerts.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/background-variant.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/background-variant.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/border-radius.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/border-radius.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/buttons.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/center-block.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/center-block.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/clearfix.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/forms.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/gradients.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/grid-framework.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/grid-framework.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/grid.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/hide-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/hide-text.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/image.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/labels.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/list-group.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/nav-divider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/nav-divider.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/nav-vertical-align.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/opacity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/opacity.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/pagination.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/panels.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/progress-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/progress-bar.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/reset-filter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/reset-filter.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/resize.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/responsive-visibility.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/size.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/tab-focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/tab-focus.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/table-row.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/table-row.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/text-emphasis.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/text-emphasis.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/text-overflow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/text-overflow.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/mixins/vendor-prefixes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/mixins/vendor-prefixes.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/modals.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/navbar.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/navs.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/normalize.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/pager.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/pagination.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/panels.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/popovers.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/print.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/progress-bars.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/responsive-embed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/responsive-embed.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/responsive-utilities.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/scaffolding.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/tables.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/theme.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/thumbnails.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/tooltip.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/type.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/utilities.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/variables.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/bootstrap/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/bootstrap/wells.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/build.py -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/conf.py -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/contents.rst -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/cppformat.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/cppformat.less -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_sources/api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_sources/api.txt -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_sources/contents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_sources/contents.txt -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_sources/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_sources/index.txt -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_sources/syntax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_sources/syntax.txt -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_sources/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_sources/usage.txt -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/basic.css -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/bootstrap.min.js -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/comment-bright.png -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/comment-close.png -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/comment.png -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/cppformat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/cppformat.css -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/doctools.js -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/down-pressed.png -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/down.png -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/file.png -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/jquery-1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/jquery-1.11.1.js -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/jquery.js -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/minus.png -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/plus.png -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/pygments.css -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/searchtools.js -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/underscore.js -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/up-pressed.png -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/up.png -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/_static/websupport.js -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/api.html -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/contents.html -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/genindex.html -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/index.html -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/objects.inv -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/search.html -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/searchindex.js -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/syntax.html -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/html/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/html/usage.html -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/index.rst -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/python-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/python-license.txt -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/syntax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/syntax.rst -------------------------------------------------------------------------------- /deps/cppformat/cppformat/doc/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/doc/usage.rst -------------------------------------------------------------------------------- /deps/cppformat/cppformat/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/format.cc -------------------------------------------------------------------------------- /deps/cppformat/cppformat/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/format.h -------------------------------------------------------------------------------- /deps/cppformat/cppformat/gmock/gmock-gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/gmock/gmock-gtest-all.cc -------------------------------------------------------------------------------- /deps/cppformat/cppformat/gmock/gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/gmock/gmock/gmock.h -------------------------------------------------------------------------------- /deps/cppformat/cppformat/gmock/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/gmock/gtest/gtest-spi.h -------------------------------------------------------------------------------- /deps/cppformat/cppformat/gmock/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/gmock/gtest/gtest.h -------------------------------------------------------------------------------- /deps/cppformat/cppformat/posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/posix.cc -------------------------------------------------------------------------------- /deps/cppformat/cppformat/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/posix.h -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/support/README -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/appveyor-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/support/appveyor-build.py -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/support/appveyor.yml -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/biicode-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/support/biicode-build.py -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/biicode/biicode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/support/biicode/biicode.conf -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/biicode/ignore.bii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/support/biicode/ignore.bii -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/biicode/sample.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/support/biicode/sample.cc -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/cmake/FindSetEnv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/support/cmake/FindSetEnv.cmake -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/cmake/biicode.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/support/cmake/biicode.cmake -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/cmake/run-cmake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/support/cmake/run-cmake.bat -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/support/download.py -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/support/release.py -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/rtd/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/support/rtd/conf.py -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/rtd/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/support/rtd/index.rst -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/rtd/theme/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/support/rtd/theme/layout.html -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/rtd/theme/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/support/timer.py -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/travis-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/support/travis-build.py -------------------------------------------------------------------------------- /deps/cppformat/cppformat/support/update-converity-branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/support/update-converity-branch.py -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/CMakeLists.txt -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/assert-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/assert-test.cc -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/compile-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/compile-test/CMakeLists.txt -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/format-impl-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/format-impl-test.cc -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/format-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/format-test.cc -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/gtest-extra-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/gtest-extra-test.cc -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/gtest-extra.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/gtest-extra.cc -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/gtest-extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/gtest-extra.h -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/header-only-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/header-only-test.cc -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/header-only-test2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/header-only-test2.cc -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/macro-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/macro-test.cc -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/mock-allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/mock-allocator.h -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/posix-mock-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/posix-mock-test.cc -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/posix-mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/posix-mock.h -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/posix-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/posix-test.cc -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/printf-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/printf-test.cc -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/test-assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/test-assert.h -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/test-main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/test-main.cc -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/util-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/util-test.cc -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/util.cc -------------------------------------------------------------------------------- /deps/cppformat/cppformat/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/cppformat/cppformat/test/util.h -------------------------------------------------------------------------------- /deps/expected/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/expected/LICENSE -------------------------------------------------------------------------------- /deps/expected/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/expected/README.md -------------------------------------------------------------------------------- /deps/expected/include/nonstd/expected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/expected/include/nonstd/expected.hpp -------------------------------------------------------------------------------- /deps/optional/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/optional/LICENSE_1_0.txt -------------------------------------------------------------------------------- /deps/optional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/optional/README.md -------------------------------------------------------------------------------- /deps/optional/include/optional/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/optional/include/optional/optional.hpp -------------------------------------------------------------------------------- /deps/rapidxml/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/rapidxml/license.txt -------------------------------------------------------------------------------- /deps/rapidxml/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/rapidxml/manual.html -------------------------------------------------------------------------------- /deps/rapidxml/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/rapidxml/rapidxml.hpp -------------------------------------------------------------------------------- /deps/rapidxml/rapidxml_iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/rapidxml/rapidxml_iterators.hpp -------------------------------------------------------------------------------- /deps/rapidxml/rapidxml_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/rapidxml/rapidxml_print.hpp -------------------------------------------------------------------------------- /deps/rapidxml/rapidxml_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/rapidxml/rapidxml_utils.hpp -------------------------------------------------------------------------------- /deps/string_view/CREDITS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/string_view/CREDITS.TXT -------------------------------------------------------------------------------- /deps/string_view/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/string_view/LICENSE.TXT -------------------------------------------------------------------------------- /deps/string_view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/string_view/README.md -------------------------------------------------------------------------------- /deps/string_view/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/string_view/string_view.hpp -------------------------------------------------------------------------------- /deps/variant/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/.appveyor.yml -------------------------------------------------------------------------------- /deps/variant/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/.travis.yml -------------------------------------------------------------------------------- /deps/variant/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/CMakeLists.txt -------------------------------------------------------------------------------- /deps/variant/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/LICENSE.txt -------------------------------------------------------------------------------- /deps/variant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/README.md -------------------------------------------------------------------------------- /deps/variant/cmake/eggs.variant-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/cmake/eggs.variant-config.cmake.in -------------------------------------------------------------------------------- /deps/variant/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/docs/README.md -------------------------------------------------------------------------------- /deps/variant/docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/docs/config.md -------------------------------------------------------------------------------- /deps/variant/docs/css/img/bgcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/docs/css/img/bgcode.png -------------------------------------------------------------------------------- /deps/variant/docs/css/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/docs/css/img/favicon.png -------------------------------------------------------------------------------- /deps/variant/docs/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/docs/css/main.css -------------------------------------------------------------------------------- /deps/variant/docs/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/docs/css/normalize.css -------------------------------------------------------------------------------- /deps/variant/docs/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/docs/design.md -------------------------------------------------------------------------------- /deps/variant/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/docs/index.md -------------------------------------------------------------------------------- /deps/variant/docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/docs/introduction.md -------------------------------------------------------------------------------- /deps/variant/docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/docs/logo.png -------------------------------------------------------------------------------- /deps/variant/docs/reference.Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/docs/reference.Doxyfile -------------------------------------------------------------------------------- /deps/variant/include/eggs/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/include/eggs/variant.hpp -------------------------------------------------------------------------------- /deps/variant/include/eggs/variant/bad_variant_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/include/eggs/variant/bad_variant_access.hpp -------------------------------------------------------------------------------- /deps/variant/include/eggs/variant/detail/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/include/eggs/variant/detail/apply.hpp -------------------------------------------------------------------------------- /deps/variant/include/eggs/variant/detail/config/prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/include/eggs/variant/detail/config/prefix.hpp -------------------------------------------------------------------------------- /deps/variant/include/eggs/variant/detail/config/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/include/eggs/variant/detail/config/suffix.hpp -------------------------------------------------------------------------------- /deps/variant/include/eggs/variant/detail/pack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/include/eggs/variant/detail/pack.hpp -------------------------------------------------------------------------------- /deps/variant/include/eggs/variant/detail/storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/include/eggs/variant/detail/storage.hpp -------------------------------------------------------------------------------- /deps/variant/include/eggs/variant/detail/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/include/eggs/variant/detail/utility.hpp -------------------------------------------------------------------------------- /deps/variant/include/eggs/variant/detail/visitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/include/eggs/variant/detail/visitor.hpp -------------------------------------------------------------------------------- /deps/variant/include/eggs/variant/in_place.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/include/eggs/variant/in_place.hpp -------------------------------------------------------------------------------- /deps/variant/include/eggs/variant/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/include/eggs/variant/variant.hpp -------------------------------------------------------------------------------- /deps/variant/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/CMakeLists.txt -------------------------------------------------------------------------------- /deps/variant/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/README.md -------------------------------------------------------------------------------- /deps/variant/test/apply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/apply.cpp -------------------------------------------------------------------------------- /deps/variant/test/assign.conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/assign.conversion.cpp -------------------------------------------------------------------------------- /deps/variant/test/assign.copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/assign.copy.cpp -------------------------------------------------------------------------------- /deps/variant/test/assign.emplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/assign.emplace.cpp -------------------------------------------------------------------------------- /deps/variant/test/assign.move.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/assign.move.cpp -------------------------------------------------------------------------------- /deps/variant/test/catch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/catch.cpp -------------------------------------------------------------------------------- /deps/variant/test/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/catch.hpp -------------------------------------------------------------------------------- /deps/variant/test/cnstr.conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/cnstr.conversion.cpp -------------------------------------------------------------------------------- /deps/variant/test/cnstr.copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/cnstr.copy.cpp -------------------------------------------------------------------------------- /deps/variant/test/cnstr.default.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/cnstr.default.cpp -------------------------------------------------------------------------------- /deps/variant/test/cnstr.emplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/cnstr.emplace.cpp -------------------------------------------------------------------------------- /deps/variant/test/cnstr.move.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/cnstr.move.cpp -------------------------------------------------------------------------------- /deps/variant/test/constexpr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/constexpr.hpp -------------------------------------------------------------------------------- /deps/variant/test/dtor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/dtor.cpp -------------------------------------------------------------------------------- /deps/variant/test/dtor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/dtor.hpp -------------------------------------------------------------------------------- /deps/variant/test/elem.get.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/elem.get.cpp -------------------------------------------------------------------------------- /deps/variant/test/elem.get_if.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/elem.get_if.cpp -------------------------------------------------------------------------------- /deps/variant/test/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/hash.cpp -------------------------------------------------------------------------------- /deps/variant/test/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/helper.cpp -------------------------------------------------------------------------------- /deps/variant/test/in_place.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/in_place.cpp -------------------------------------------------------------------------------- /deps/variant/test/obs.bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/obs.bool.cpp -------------------------------------------------------------------------------- /deps/variant/test/obs.target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/obs.target.cpp -------------------------------------------------------------------------------- /deps/variant/test/obs.target_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/obs.target_type.cpp -------------------------------------------------------------------------------- /deps/variant/test/obs.which.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/obs.which.cpp -------------------------------------------------------------------------------- /deps/variant/test/rel.equality.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/rel.equality.cpp -------------------------------------------------------------------------------- /deps/variant/test/rel.order.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/rel.order.cpp -------------------------------------------------------------------------------- /deps/variant/test/swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/swap.cpp -------------------------------------------------------------------------------- /deps/variant/test/throw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/deps/variant/test/throw.hpp -------------------------------------------------------------------------------- /git-sha1.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/git-sha1.cpp.in -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/README.md -------------------------------------------------------------------------------- /src/annotation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/annotation.hpp -------------------------------------------------------------------------------- /src/binary_fetcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/binary_fetcher.hpp -------------------------------------------------------------------------------- /src/binary_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/binary_writer.hpp -------------------------------------------------------------------------------- /src/cdimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/cdimage.hpp -------------------------------------------------------------------------------- /src/codegen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/codegen.cpp -------------------------------------------------------------------------------- /src/codegen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/codegen.hpp -------------------------------------------------------------------------------- /src/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/commands.cpp -------------------------------------------------------------------------------- /src/commands.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/commands.hpp -------------------------------------------------------------------------------- /src/compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/compiler.cpp -------------------------------------------------------------------------------- /src/compiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/compiler.hpp -------------------------------------------------------------------------------- /src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/config.cpp -------------------------------------------------------------------------------- /src/cpp/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/cpp/any.hpp -------------------------------------------------------------------------------- /src/cpp/argv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/cpp/argv.hpp -------------------------------------------------------------------------------- /src/cpp/contracts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/cpp/contracts.hpp -------------------------------------------------------------------------------- /src/cpp/expected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/cpp/expected.hpp -------------------------------------------------------------------------------- /src/cpp/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/cpp/file.hpp -------------------------------------------------------------------------------- /src/cpp/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/cpp/filesystem.hpp -------------------------------------------------------------------------------- /src/cpp/icompare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/cpp/icompare.hpp -------------------------------------------------------------------------------- /src/cpp/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/cpp/optional.hpp -------------------------------------------------------------------------------- /src/cpp/scope_guard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/cpp/scope_guard.hpp -------------------------------------------------------------------------------- /src/cpp/small_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/cpp/small_vector.hpp -------------------------------------------------------------------------------- /src/cpp/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/cpp/string_view.hpp -------------------------------------------------------------------------------- /src/cpp/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/cpp/variant.hpp -------------------------------------------------------------------------------- /src/decompiler_ir2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/decompiler_ir2.hpp -------------------------------------------------------------------------------- /src/disassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/disassembler.cpp -------------------------------------------------------------------------------- /src/disassembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/disassembler.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main_compile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/main_compile.cpp -------------------------------------------------------------------------------- /src/main_decompile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/main_decompile.cpp -------------------------------------------------------------------------------- /src/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/parser.hpp -------------------------------------------------------------------------------- /src/parser_lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/parser_lexer.cpp -------------------------------------------------------------------------------- /src/parser_syntax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/parser_syntax.cpp -------------------------------------------------------------------------------- /src/program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/program.cpp -------------------------------------------------------------------------------- /src/program.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/program.hpp -------------------------------------------------------------------------------- /src/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/script.cpp -------------------------------------------------------------------------------- /src/script.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/script.hpp -------------------------------------------------------------------------------- /src/stdinc.cpp: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /src/stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/stdinc.h -------------------------------------------------------------------------------- /src/symtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/symtable.cpp -------------------------------------------------------------------------------- /src/symtable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/symtable.hpp -------------------------------------------------------------------------------- /src/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/system.cpp -------------------------------------------------------------------------------- /src/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/src/system.hpp -------------------------------------------------------------------------------- /test/Checksum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/Checksum.sh -------------------------------------------------------------------------------- /test/Discard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/Discard.sh -------------------------------------------------------------------------------- /test/GTA3ScriptTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/GTA3ScriptTest.py -------------------------------------------------------------------------------- /test/Not.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/Not.sh -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/README.md -------------------------------------------------------------------------------- /test/VerifyDiagnosticConsumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/VerifyDiagnosticConsumer.py -------------------------------------------------------------------------------- /test/codegen/0001-var-offset.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/0001-var-offset.sc -------------------------------------------------------------------------------- /test/codegen/0001-var-offset/mission.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/0001-var-offset/mission.sc -------------------------------------------------------------------------------- /test/codegen/0002-multifile-local-offsets.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/0002-multifile-local-offsets.sc -------------------------------------------------------------------------------- /test/codegen/0002-multifile-local-offsets/miss1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/0002-multifile-local-offsets/miss1.sc -------------------------------------------------------------------------------- /test/codegen/0002-multifile-local-offsets/subscript.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/0002-multifile-local-offsets/subscript.sc -------------------------------------------------------------------------------- /test/codegen/0003-call-scope-fix.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/0003-call-scope-fix.sc -------------------------------------------------------------------------------- /test/codegen/0004-includers-label.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/0004-includers-label.sc -------------------------------------------------------------------------------- /test/codegen/0004-includers-label/miss1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/0004-includers-label/miss1.sc -------------------------------------------------------------------------------- /test/codegen/0004-includers-label/subscript.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/0004-includers-label/subscript.sc -------------------------------------------------------------------------------- /test/codegen/0005-mission-vars-header.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/0005-mission-vars-header.sc -------------------------------------------------------------------------------- /test/codegen/0005-mission-vars-header/miss1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/0005-mission-vars-header/miss1.sc -------------------------------------------------------------------------------- /test/codegen/0005-mission-vars-header/miss2.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/0005-mission-vars-header/miss2.sc -------------------------------------------------------------------------------- /test/codegen/0006-require-label-offset.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/0006-require-label-offset.sc -------------------------------------------------------------------------------- /test/codegen/0006-require-label-offset/a.sc: -------------------------------------------------------------------------------- 1 | alabel: 2 | RETURN 3 | -------------------------------------------------------------------------------- /test/codegen/0006-require-label-offset/b.sc: -------------------------------------------------------------------------------- 1 | blabel: 2 | RETURN 3 | -------------------------------------------------------------------------------- /test/codegen/alternators.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/alternators.sc -------------------------------------------------------------------------------- /test/codegen/andor.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/andor.sc -------------------------------------------------------------------------------- /test/codegen/arrays.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/arrays.sc -------------------------------------------------------------------------------- /test/codegen/cheader_multifile.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/cheader_multifile.sc -------------------------------------------------------------------------------- /test/codegen/cheader_multifile/miss1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/cheader_multifile/miss1.sc -------------------------------------------------------------------------------- /test/codegen/cheader_multifile/stream1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/cheader_multifile/stream1.sc -------------------------------------------------------------------------------- /test/codegen/cheader_multifile/subscript1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/cheader_multifile/subscript1.sc -------------------------------------------------------------------------------- /test/codegen/cheader_oatc.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/cheader_oatc.sc -------------------------------------------------------------------------------- /test/codegen/cleo_call.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/cleo_call.sc -------------------------------------------------------------------------------- /test/codegen/cleo_mission.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/cleo_mission.sc -------------------------------------------------------------------------------- /test/codegen/cleo_param.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/cleo_param.sc -------------------------------------------------------------------------------- /test/codegen/cleo_script.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/cleo_script.sc -------------------------------------------------------------------------------- /test/codegen/cleo_string.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/cleo_string.sc -------------------------------------------------------------------------------- /test/codegen/cleo_string_3vc.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/cleo_string_3vc.sc -------------------------------------------------------------------------------- /test/codegen/collectables.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/collectables.sc -------------------------------------------------------------------------------- /test/codegen/const.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/const.sc -------------------------------------------------------------------------------- /test/codegen/constant_precedence.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/constant_precedence.sc -------------------------------------------------------------------------------- /test/codegen/control_flow.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/control_flow.sc -------------------------------------------------------------------------------- /test/codegen/dump.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/dump.sc -------------------------------------------------------------------------------- /test/codegen/expr.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/expr.sc -------------------------------------------------------------------------------- /test/codegen/extension_lvar_eq_var.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/extension_lvar_eq_var.sc -------------------------------------------------------------------------------- /test/codegen/extension_repeat_lvar.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/extension_repeat_lvar.sc -------------------------------------------------------------------------------- /test/codegen/models.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/models.sc -------------------------------------------------------------------------------- /test/codegen/multifile.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/multifile.sc -------------------------------------------------------------------------------- /test/codegen/multifile/gosub1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/multifile/gosub1.sc -------------------------------------------------------------------------------- /test/codegen/multifile/gosub2.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/multifile/gosub2.sc -------------------------------------------------------------------------------- /test/codegen/multifile/gosub3.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/multifile/gosub3.sc -------------------------------------------------------------------------------- /test/codegen/multifile/subdir/mission1/mission1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/multifile/subdir/mission1/mission1.sc -------------------------------------------------------------------------------- /test/codegen/multifile/subdir/mission2/mission2.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/multifile/subdir/mission2/mission2.sc -------------------------------------------------------------------------------- /test/codegen/multifile/subdir/mission3.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/multifile/subdir/mission3.sc -------------------------------------------------------------------------------- /test/codegen/multifile/subdir/subscript2.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/multifile/subdir/subscript2.sc -------------------------------------------------------------------------------- /test/codegen/multifile/subscript1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/multifile/subscript1.sc -------------------------------------------------------------------------------- /test/codegen/offsets.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/offsets.sc -------------------------------------------------------------------------------- /test/codegen/offsets/gosub1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/offsets/gosub1.sc -------------------------------------------------------------------------------- /test/codegen/offsets/mission1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/offsets/mission1.sc -------------------------------------------------------------------------------- /test/codegen/offsets/stream1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/offsets/stream1.sc -------------------------------------------------------------------------------- /test/codegen/offsets/subscript1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/offsets/subscript1.sc -------------------------------------------------------------------------------- /test/codegen/optimize_andor.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/optimize_andor.sc -------------------------------------------------------------------------------- /test/codegen/optimize_zero.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/optimize_zero.sc -------------------------------------------------------------------------------- /test/codegen/progress.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/progress.sc -------------------------------------------------------------------------------- /test/codegen/progress/prog2.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/progress/prog2.sc -------------------------------------------------------------------------------- /test/codegen/progress/prog5.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/progress/prog5.sc -------------------------------------------------------------------------------- /test/codegen/ranges.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/ranges.sc -------------------------------------------------------------------------------- /test/codegen/require.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/require.sc -------------------------------------------------------------------------------- /test/codegen/require/miss1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/require/miss1.sc -------------------------------------------------------------------------------- /test/codegen/require/requires/req1_from_main.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/require/requires/req1_from_main.sc -------------------------------------------------------------------------------- /test/codegen/require/requires/req2_from_extscript.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/require/requires/req2_from_extscript.sc -------------------------------------------------------------------------------- /test/codegen/require/requires/req3_from_subscript.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/require/requires/req3_from_subscript.sc -------------------------------------------------------------------------------- /test/codegen/require/requires/req4_from_miss1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/require/requires/req4_from_miss1.sc -------------------------------------------------------------------------------- /test/codegen/require/requires/req5_from_stream1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/require/requires/req5_from_stream1.sc -------------------------------------------------------------------------------- /test/codegen/require/requires/req6_from_everywhere.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/require/requires/req6_from_everywhere.sc -------------------------------------------------------------------------------- /test/codegen/require/requires/req7_from_subscript.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/require/requires/req7_from_subscript.sc -------------------------------------------------------------------------------- /test/codegen/require/stream1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/require/stream1.sc -------------------------------------------------------------------------------- /test/codegen/require/subscript.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/require/subscript.sc -------------------------------------------------------------------------------- /test/codegen/require_cleo.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/require_cleo.sc -------------------------------------------------------------------------------- /test/codegen/require_cleo/req1.sc: -------------------------------------------------------------------------------- 1 | PRINT_HELP req1 -------------------------------------------------------------------------------- /test/codegen/save_string_to_debug_file.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/save_string_to_debug_file.sc -------------------------------------------------------------------------------- /test/codegen/scope.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/scope.sc -------------------------------------------------------------------------------- /test/codegen/skip_cutscene.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/skip_cutscene.sc -------------------------------------------------------------------------------- /test/codegen/streaming.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/streaming.sc -------------------------------------------------------------------------------- /test/codegen/streaming/attractor1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/streaming/attractor1.sc -------------------------------------------------------------------------------- /test/codegen/streaming/brain1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/streaming/brain1.sc -------------------------------------------------------------------------------- /test/codegen/streaming/missions/mission1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/streaming/missions/mission1.sc -------------------------------------------------------------------------------- /test/codegen/streaming/missions/mission2.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/streaming/missions/mission2.sc -------------------------------------------------------------------------------- /test/codegen/streaming/object1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/streaming/object1.sc -------------------------------------------------------------------------------- /test/codegen/streaming/ped1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/streaming/ped1.sc -------------------------------------------------------------------------------- /test/codegen/streaming/stream1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/streaming/stream1.sc -------------------------------------------------------------------------------- /test/codegen/switch_3vc.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/switch_3vc.sc -------------------------------------------------------------------------------- /test/codegen/switch_3vc_fail.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/switch_3vc_fail.sc -------------------------------------------------------------------------------- /test/codegen/switch_sa.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/switch_sa.sc -------------------------------------------------------------------------------- /test/codegen/text_label.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/text_label.sc -------------------------------------------------------------------------------- /test/codegen/timers_3vc.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/timers_3vc.sc -------------------------------------------------------------------------------- /test/codegen/timers_sa.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/timers_sa.sc -------------------------------------------------------------------------------- /test/codegen/uppercase.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/codegen/uppercase.sc -------------------------------------------------------------------------------- /test/frontend/Inputs/override.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/frontend/Inputs/override.xml -------------------------------------------------------------------------------- /test/frontend/Inputs/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/frontend/Inputs/test.xml -------------------------------------------------------------------------------- /test/frontend/add_config.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/frontend/add_config.sc -------------------------------------------------------------------------------- /test/frontend/override_config.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/frontend/override_config.sc -------------------------------------------------------------------------------- /test/frontend/switch.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/frontend/switch.sc -------------------------------------------------------------------------------- /test/lexer/commands.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/lexer/commands.sc -------------------------------------------------------------------------------- /test/lexer/comments.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/lexer/comments.sc -------------------------------------------------------------------------------- /test/lexer/dump.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/lexer/dump.sc -------------------------------------------------------------------------------- /test/lexer/expr.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/lexer/expr.sc -------------------------------------------------------------------------------- /test/lexer/label.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/lexer/label.sc -------------------------------------------------------------------------------- /test/lexer/tokens.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/lexer/tokens.sc -------------------------------------------------------------------------------- /test/lexer/whitespaces.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/lexer/whitespaces.sc -------------------------------------------------------------------------------- /test/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/lit.cfg -------------------------------------------------------------------------------- /test/main/gta3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/main/gta3.test -------------------------------------------------------------------------------- /test/main/gtavc.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/main/gtavc.test -------------------------------------------------------------------------------- /test/misc/expect_var_badindex.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/misc/expect_var_badindex.sc -------------------------------------------------------------------------------- /test/misc/expect_var_noexist_3vc.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/misc/expect_var_noexist_3vc.sc -------------------------------------------------------------------------------- /test/misc/expect_var_noexist_sa.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/misc/expect_var_noexist_sa.sc -------------------------------------------------------------------------------- /test/misc/expect_var_okay_3.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/misc/expect_var_okay_3.sc -------------------------------------------------------------------------------- /test/misc/expect_var_okay_sa.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/misc/expect_var_okay_sa.sc -------------------------------------------------------------------------------- /test/misc/expect_var_okay_vc.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/misc/expect_var_okay_vc.sc -------------------------------------------------------------------------------- /test/parser/TODO: -------------------------------------------------------------------------------- 1 | TODO -------------------------------------------------------------------------------- /test/preprocessor/ifdef.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/preprocessor/ifdef.sc -------------------------------------------------------------------------------- /test/preprocessor/syntax.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/preprocessor/syntax.sc -------------------------------------------------------------------------------- /test/semantics/Inputs/data/default.dat: -------------------------------------------------------------------------------- 1 | IDE data/default.ide -------------------------------------------------------------------------------- /test/semantics/Inputs/data/default.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/Inputs/data/default.ide -------------------------------------------------------------------------------- /test/semantics/Inputs/data/gta.dat: -------------------------------------------------------------------------------- 1 | IDE data/level.ide -------------------------------------------------------------------------------- /test/semantics/Inputs/data/gta3.dat: -------------------------------------------------------------------------------- 1 | IDE data/level.ide -------------------------------------------------------------------------------- /test/semantics/Inputs/data/gta_vc.dat: -------------------------------------------------------------------------------- 1 | IDE data/level.ide -------------------------------------------------------------------------------- /test/semantics/Inputs/data/level.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/Inputs/data/level.ide -------------------------------------------------------------------------------- /test/semantics/arrays.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/arrays.sc -------------------------------------------------------------------------------- /test/semantics/break-continue.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/break-continue.sc -------------------------------------------------------------------------------- /test/semantics/cleo_call_entity.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/cleo_call_entity.sc -------------------------------------------------------------------------------- /test/semantics/cleo_call_params.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/cleo_call_params.sc -------------------------------------------------------------------------------- /test/semantics/cleo_call_text1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/cleo_call_text1.sc -------------------------------------------------------------------------------- /test/semantics/cleo_call_text2.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/cleo_call_text2.sc -------------------------------------------------------------------------------- /test/semantics/cleo_disallow_global.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/cleo_disallow_global.sc -------------------------------------------------------------------------------- /test/semantics/cleo_disallow_model.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/cleo_disallow_model.sc -------------------------------------------------------------------------------- /test/semantics/cleo_disallow_scripts.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/cleo_disallow_scripts.sc -------------------------------------------------------------------------------- /test/semantics/cleo_disallow_terminate.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/cleo_disallow_terminate.sc -------------------------------------------------------------------------------- /test/semantics/collision.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/collision.sc -------------------------------------------------------------------------------- /test/semantics/collision/gosub1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/collision/gosub1.sc -------------------------------------------------------------------------------- /test/semantics/commands.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/commands.sc -------------------------------------------------------------------------------- /test/semantics/control_flow.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/control_flow.sc -------------------------------------------------------------------------------- /test/semantics/directives.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/directives.sc -------------------------------------------------------------------------------- /test/semantics/directives/miss1.sc: -------------------------------------------------------------------------------- 1 | TERMINATE_THIS_SCRIPT -------------------------------------------------------------------------------- /test/semantics/directives/miss2.sc: -------------------------------------------------------------------------------- 1 | MISSION_START -------------------------------------------------------------------------------- /test/semantics/directives/miss3.sc: -------------------------------------------------------------------------------- 1 | MISSION_END -------------------------------------------------------------------------------- /test/semantics/directives/miss4.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/directives/miss4.sc -------------------------------------------------------------------------------- /test/semantics/directives/miss5.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/directives/miss5.sc -------------------------------------------------------------------------------- /test/semantics/directives/stream1.sc: -------------------------------------------------------------------------------- 1 | TERMINATE_THIS_SCRIPT -------------------------------------------------------------------------------- /test/semantics/directives/subscript.sc: -------------------------------------------------------------------------------- 1 | TERMINATE_THIS_SCRIPT -------------------------------------------------------------------------------- /test/semantics/entity1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/entity1.sc -------------------------------------------------------------------------------- /test/semantics/entity2.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/entity2.sc -------------------------------------------------------------------------------- /test/semantics/expr.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/expr.sc -------------------------------------------------------------------------------- /test/semantics/identifiers_3vc.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/identifiers_3vc.sc -------------------------------------------------------------------------------- /test/semantics/identifiers_sa.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/identifiers_sa.sc -------------------------------------------------------------------------------- /test/semantics/identifiers_sa/4x4.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/identifiers_sa/4x4.sc -------------------------------------------------------------------------------- /test/semantics/identifiers_sa/_a.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/identifiers_sa/_a.sc -------------------------------------------------------------------------------- /test/semantics/includers.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/includers.sc -------------------------------------------------------------------------------- /test/semantics/includers/gosub1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/includers/gosub1.sc -------------------------------------------------------------------------------- /test/semantics/includers/something: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/includers/something -------------------------------------------------------------------------------- /test/semantics/includers/something.sc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/includers/something.sc2 -------------------------------------------------------------------------------- /test/semantics/includers/subscript.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/includers/subscript.sc -------------------------------------------------------------------------------- /test/semantics/ranges.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/ranges.sc -------------------------------------------------------------------------------- /test/semantics/repeat.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/repeat.sc -------------------------------------------------------------------------------- /test/semantics/require.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/require.sc -------------------------------------------------------------------------------- /test/semantics/require/req1.sc: -------------------------------------------------------------------------------- 1 | REQUIRE req2.sc -------------------------------------------------------------------------------- /test/semantics/scopes.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/scopes.sc -------------------------------------------------------------------------------- /test/semantics/script_name.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/script_name.sc -------------------------------------------------------------------------------- /test/semantics/script_name/miss1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/script_name/miss1.sc -------------------------------------------------------------------------------- /test/semantics/set_total.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/set_total.sc -------------------------------------------------------------------------------- /test/semantics/skip_cutscene.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/skip_cutscene.sc -------------------------------------------------------------------------------- /test/semantics/switch.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/switch.sc -------------------------------------------------------------------------------- /test/semantics/unsupported.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/unsupported.sc -------------------------------------------------------------------------------- /test/semantics/vars_scan_3vc.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/vars_scan_3vc.sc -------------------------------------------------------------------------------- /test/semantics/vars_scan_sa.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/vars_scan_sa.sc -------------------------------------------------------------------------------- /test/semantics/warn_conflict_text_label_var.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/test/semantics/warn_conflict_text_label_var.sc -------------------------------------------------------------------------------- /utils/cmp_scmini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/utils/cmp_scmini.py -------------------------------------------------------------------------------- /utils/discover_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/utils/discover_constants.py -------------------------------------------------------------------------------- /utils/discover_entity_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/utils/discover_entity_commands.py -------------------------------------------------------------------------------- /utils/discover_supported_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/utils/discover_supported_commands.py -------------------------------------------------------------------------------- /utils/fix_sa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/utils/fix_sa.py -------------------------------------------------------------------------------- /utils/gta3sc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/utils/gta3sc/__init__.py -------------------------------------------------------------------------------- /utils/gta3sc/bytecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/utils/gta3sc/bytecode.py -------------------------------------------------------------------------------- /utils/gta3sc/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/utils/gta3sc/config.py -------------------------------------------------------------------------------- /utils/ir2_to_gta3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/utils/ir2_to_gta3.py -------------------------------------------------------------------------------- /utils/license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/utils/license.sh -------------------------------------------------------------------------------- /utils/make_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/utils/make_hash.py -------------------------------------------------------------------------------- /utils/simplify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/utils/simplify.py -------------------------------------------------------------------------------- /utils/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/gta3sc/HEAD/utils/test.py --------------------------------------------------------------------------------