Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-03 | HDB: Add a stubbed-out setSky() to DrawMan | Nipun Garg | |
2019-09-03 | HDB: Add getTileIndex and getPicture to DrawMan | Nipun Garg | |
2019-09-03 | HDB: Add sky tiles and non-graphics to DrawMan | Nipun Garg | |
2019-09-03 | HDB: Complete loadTiles() | Nipun Garg | |
2019-09-03 | HDB: Add isSky() | Nipun Garg | |
It checks if the tile at a given index is a Sky tile. | |||
2019-09-03 | HDB: Change cacheTile() to getTile() | Nipun Garg | |
getTile() caches the tile automatically if it hasn't been cached yet | |||
2019-09-03 | HDB: Fix parameter type in getCount | Nipun Garg | |
2019-09-03 | HDB: Fix C++11 enum warning | Nipun Garg | |
2019-09-03 | HDB: Add cacheTile() to load a Tile into memory | Nipun Garg | |
2019-09-03 | HDB: Add TileLookup struct and _tLookupArray | Nipun Garg | |
_tLookupArray is a reference needed to cache the tiles in the current level | |||
2019-09-03 | HDB: Add findFiles to file-manager | Nipun Garg | |
It finds all MPC files of a common DataType that consist of a substring. | |||
2019-09-03 | HDB: Add MAX_SKIES enum | Nipun Garg | |
2019-09-03 | HDB: Add DrawMan::init to count number of tiles | Nipun Garg | |
2019-09-03 | HDB: Add _drawMan to hdb.cpp | Nipun Garg | |
2019-09-03 | HDB: Stub out Map::loadTiles() | Nipun Garg | |
It depends on DrawMan functionality which hasn't been implemented yet | |||
2019-09-03 | HDB: Change _mapExplosions type from char to byte | Nipun Garg | |
Char is not portable for anything other than ASCII strings, byte is preferred. Similar changes were made to _mapExpBarrels and _mapLaserBeams | |||
2019-09-03 | HDB: Replace the map in hdb.cpp with _map | Nipun Garg | |
2019-09-03 | HDB: Fix variables according to Naming Conventions | Nipun Garg | |
2019-09-03 | HDB: Add the loadTiles() function to map-loader | Nipun Garg | |
2019-09-03 | HDB: Fix breaking changes in map-loader | Nipun Garg | |
2019-09-03 | HDB: Fix breaking changes in MapLoader | Nipun Garg | |
2019-09-03 | HDB: Create and load a Map in hdb.cpp | Nipun Garg | |
2019-09-03 | HDB: Add Map Coordinate data members to Map | Nipun Garg | |
2019-09-03 | HDB: Shift loadMap from MapLoader to Map | Nipun Garg | |
2019-09-03 | HDB: Add getCount to FileMan | Nipun Garg | |
It counts the number of MPC entries that have a specific substring in their filename | |||
2019-09-03 | HDB: Load the mapHeader in loadMap(...) | Nipun Garg | |
2019-09-03 | HDB: Setup loadMap call in hdb.cpp | Nipun Garg | |
2019-09-03 | HDB: Add skeletal map-loader subsystem | Nipun Garg | |
2019-09-03 | HDB: Make sure there is no OOB access for patched scripts | Eugene Sandulenko | |
2019-09-03 | HDB: Add ScriptPatches for upvalues and setglobal | Nipun Garg | |
Moved the upvalue-syntax modification from sanitizeComments to the scriptPatches | |||
2019-09-03 | HDB: Add ScriptPatches for setglobal function | Nipun Garg | |
2019-09-03 | HDB: Add scriptPatch and add in sanitizeScript | Nipun Garg | |
2019-09-03 | HDB: Hid Lua execution trace to debug level 8 | Eugene Sandulenko | |
2019-09-03 | HDB: Add error handling during level_init execution | Eugene Sandulenko | |
2019-09-03 | HDB: Test the test.lua file in the data file dir | Nipun Garg | |
2019-09-03 | HDB: Add executeFile to LuaScript | Nipun Garg | |
It executes additional files in the current Lua environment | |||
2019-09-03 | HDB: Refer to the Lua error handler | Eugene Sandulenko | |
2019-09-03 | HDB: Added more debugging facilities | Eugene Sandulenko | |
2019-09-03 | HDB: Move debugging facilities earlier in the code | Eugene Sandulenko | |
2019-09-03 | HDB: Fix warnings | Eugene Sandulenko | |
2019-09-03 | JANITORIAL: Whitespace fixes | Eugene Sandulenko | |
2019-09-03 | HDB: Added quick & dirty Lua tracing | Eugene Sandulenko | |
2019-09-03 | HDB: Call lua->init() before initScript | Nipun Garg | |
2019-09-03 | HDB: Add init() to load the GLOBAL_LUA code | Nipun Garg | |
2019-09-03 | HDB: Fix allocation problem with g_hdb | Nipun Garg | |
2019-09-03 | HDB: Load MAP00_DEMO_LUA | Nipun Garg | |
2019-09-03 | HDB: Remove the char *name arg from initScript | Nipun Garg | |
2019-09-03 | HDB: Load GLOBAL_LUA in initScript | Nipun Garg | |
2019-09-03 | HDB: Modify stripComments to sanitizeScript | Nipun Garg | |
Lua 5.0 introduced new syntax for upvalues so the old code needs to be preprocessed first. | |||
2019-09-03 | HDB: Add stubs for the Lua extensions | Nipun Garg | |