Home
last modified time | relevance | path

Searched refs:_tile_supervisor (Results 1 – 4 of 4) sorted by relevance

/dports/games/allacrost/allacrost-1.0.2/src/modes/map/
H A Dmap.cpp66 _tile_supervisor(NULL), in MapMode()
98 _tile_supervisor = new TileSupervisor(); in MapMode()
138 delete(_tile_supervisor); in ~MapMode()
192 _tile_supervisor->Update(); in Update()
339 _tile_supervisor->Load(_map_script, this); in _Load()
606 else if (_map_frame.starting_col + TILE_COLS >= _tile_supervisor->_num_tile_cols) { in _CalculateMapFrame()
607 _map_frame.starting_col = static_cast<int16>(_tile_supervisor->_num_tile_cols - TILE_COLS); in _CalculateMapFrame()
621 else if (_map_frame.starting_row + TILE_ROWS >= _tile_supervisor->_num_tile_rows) { in _CalculateMapFrame()
659 _tile_supervisor->DrawLowerLayer(&_map_frame); in _DrawMapLayers()
660 _tile_supervisor->DrawMiddleLayer(&_map_frame); in _DrawMapLayers()
[all …]
H A Dmap.h164 { return _tile_supervisor; } in GetTileSupervisor()
240 private_map::TileSupervisor* _tile_supervisor; variable
/dports/games/valyriatear/ValyriaTear-1.1.0/src/modes/map/
H A Dmap_mode.cpp88 _tile_supervisor(nullptr), in MapMode()
121 _tile_supervisor = new TileSupervisor(); in MapMode()
176 delete(_tile_supervisor); in ~MapMode()
364 _tile_supervisor->Update(); in Update()
622 return _tile_supervisor->_num_tile_on_x_axis; in GetMapWidth()
627 return _tile_supervisor->_num_tile_on_y_axis; in GetMapHeight()
663 if(!_tile_supervisor->Load(_map_script)) { in _Load()
1060 else if(_map_frame.tile_x_start + TILES_ON_X_AXIS >= _tile_supervisor->_num_tile_on_x_axis) { in _UpdateMapFrame()
1079 else if(_map_frame.tile_y_start + TILES_ON_Y_AXIS >= _tile_supervisor->_num_tile_on_y_axis) { in _UpdateMapFrame()
1178 _tile_supervisor->DrawLayers(&_map_frame, GROUND_LAYER); in _DrawMapLayers()
[all …]
H A Dmap_mode.h225 return _tile_supervisor; in GetTileSupervisor()
500 private_map::TileSupervisor* _tile_supervisor; variable