aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-09-03JANITORIAL: Remove trailing whitespacesEugene Sandulenko
2019-09-03HDB: Skip sky tilesEugene Sandulenko
2019-09-03HDB: Added debug output to tile lookupEugene Sandulenko
2019-09-03HDB: Initialise TileLookup structureEugene Sandulenko
2019-09-03HDB: Remove redundant moduloNipun Garg
2019-09-03HDB: Call _map->draw() from hdb.cppNipun Garg
2019-09-03HDB: Add stubbed-out Map::draw functionNipun Garg
2019-09-03HDB: Modify Picture/Tile to use a Managed SurfaceNipun Garg
2019-09-03HDB: Add Tile flags enumNipun Garg
2019-09-03HDB: Modify hdb.cpp to use Tile/Picture's draw()Nipun Garg
2019-09-03HDB: Add draw functions to Tile and PictureNipun Garg
2019-09-03HDB: Add _stars3D, _stars3DSlow + setup functionsNipun Garg
2019-09-03HDB: Add Tile dimensions and Star count as enumsNipun Garg
2019-09-03HDB: Add kScreenWidth and kScreenHeight enumsNipun Garg
2019-09-03HDB: Add the Common::RandomSource _rndNipun Garg
2019-09-03HDB: Call DrawMan::setSky from Map::loadNipun Garg
2019-09-03HDB: Add a stubbed-out setSky() to DrawManNipun Garg
2019-09-03HDB: Add getTileIndex and getPicture to DrawManNipun Garg
2019-09-03HDB: Add sky tiles and non-graphics to DrawManNipun Garg
2019-09-03HDB: Complete loadTiles()Nipun Garg
2019-09-03HDB: Add isSky()Nipun Garg
It checks if the tile at a given index is a Sky tile.
2019-09-03HDB: Change cacheTile() to getTile()Nipun Garg
getTile() caches the tile automatically if it hasn't been cached yet
2019-09-03HDB: Fix parameter type in getCountNipun Garg
2019-09-03HDB: Fix C++11 enum warningNipun Garg
2019-09-03HDB: Add cacheTile() to load a Tile into memoryNipun Garg
2019-09-03HDB: Add TileLookup struct and _tLookupArrayNipun Garg
_tLookupArray is a reference needed to cache the tiles in the current level
2019-09-03HDB: Add findFiles to file-managerNipun Garg
It finds all MPC files of a common DataType that consist of a substring.
2019-09-03HDB: Add MAX_SKIES enumNipun Garg
2019-09-03HDB: Add DrawMan::init to count number of tilesNipun Garg
2019-09-03HDB: Add _drawMan to hdb.cppNipun Garg
2019-09-03HDB: Stub out Map::loadTiles()Nipun Garg
It depends on DrawMan functionality which hasn't been implemented yet
2019-09-03HDB: Change _mapExplosions type from char to byteNipun Garg
Char is not portable for anything other than ASCII strings, byte is preferred. Similar changes were made to _mapExpBarrels and _mapLaserBeams
2019-09-03HDB: Replace the map in hdb.cpp with _mapNipun Garg
2019-09-03HDB: Fix variables according to Naming ConventionsNipun Garg
2019-09-03HDB: Add the loadTiles() function to map-loaderNipun Garg
2019-09-03HDB: Fix breaking changes in map-loaderNipun Garg
2019-09-03HDB: Fix breaking changes in MapLoaderNipun Garg
2019-09-03HDB: Create and load a Map in hdb.cppNipun Garg
2019-09-03HDB: Add Map Coordinate data members to MapNipun Garg
2019-09-03HDB: Shift loadMap from MapLoader to MapNipun Garg
2019-09-03HDB: Add getCount to FileManNipun Garg
It counts the number of MPC entries that have a specific substring in their filename
2019-09-03HDB: Load the mapHeader in loadMap(...)Nipun Garg
2019-09-03HDB: Setup loadMap call in hdb.cppNipun Garg
2019-09-03HDB: Add skeletal map-loader subsystemNipun Garg
2019-09-03HDB: Make sure there is no OOB access for patched scriptsEugene Sandulenko
2019-09-03HDB: Add ScriptPatches for upvalues and setglobalNipun Garg
Moved the upvalue-syntax modification from sanitizeComments to the scriptPatches
2019-09-03HDB: Add ScriptPatches for setglobal functionNipun Garg
2019-09-03HDB: Add scriptPatch and add in sanitizeScriptNipun Garg
2019-09-03HDB: Hid Lua execution trace to debug level 8Eugene Sandulenko
2019-09-03HDB: Add error handling during level_init executionEugene Sandulenko