Loading β
This section covers loading room contents - the core functionality of the library. All loading can be performed at any position and Origin in the current room.
- .Load() loads entire rooms with all layers and elements, with optional Scaling, Rotation, and filtering by Asset Type and/or Layer Name.
- .LoadInstances() loads instances from all layers, placed onto a single layer or depth, with optional Scaling and Rotation.
- .LoadTilemap() loads tilemaps from a source layer in the loaded room into a target layer in the current room. It supports optional Mirroring, Flipping, 90Β° Rotation and custom Tileset options.
IMPORTANT
Rooms can only be loaded if their data has been initialized. Make sure to Initialize the data for any room you intend to load beforehand, or the game will crash.
.Load()
β
RoomLoader.Load(room, x, y, [xOrigin], [yOrigin], [flags], [xScale], [yScale], [angle])
β Struct.Payload or Undefined
Loads all layers and elements of the given room at the given coordinates, with optional Origin, Asset Type filtering, Scaling and Rotation.
Layers are created at the same depths defined in the Room Editor. See the Payload/Depth section if you need to adjust layer depths manually after loading to be above or below a certain layer/depth.
- If ROOMLOADER_DELIVER_PAYLOAD is
true
, returns an instance of Payload. - Otherwise returns Undefined.
βΉοΈ ROOM ELEMENT COVERAGE
Full room loading supports the following elements.
Element | Layer Type | Status |
---|---|---|
Instance | Instance | βοΈ |
Tilemap | Tile | βοΈ |
Sprite | Asset | βοΈ |
Particle System | Asset | π§ Broken, GM bug |
Sequence | Asset | βοΈ |
Background | Background | βοΈ |
Filter/Effect | Filter/Effect | β |
In-layer Filter/Effect | Any | π§ GM Bug, missing room_get_info() data |
Creation Code | - | βοΈ |
Views | - | β |
Physics | - | β |
Display Buffer & Viewport Clearing | - | β |
βΉοΈ TRANSFORMATION EXCEPTIONS
- Tilemaps only load if
[xScale/yScale]
is either-1
or1
and[angle]
is an increment of 90 degrees. Otherwise they are ignored. - Backgrounds only load if
[angle]
is0
. Otherwise they are ignored.
βΉοΈ MERGING TILEMAPS
If ROOMLOADER_MERGE_LAYERS and ROOMLOADER_MERGE_TILEMAPS are both true true
, this method will attempt to merge loaded and existing tilemaps. See the ROOMLOADER_MERGE_TILEMAPS page for details.
Parameter | Type | Description |
---|---|---|
room | Asset.GMRoom | The room to load |
x | Real | The x coordinate to load the room at |
y | Real | The y coordinate to load the room at |
[xOrigin] | Real | The x Origin to load the room at [Default: State.XOrigin if set, or ROOMLOADER_DEFAULT_XORIGIN] |
[yOrigin] | Real | The y Origin to load the room at [Default: State.YOrigin if set, or ROOMLOADER_DEFAULT_YORIGIN] |
[flags] | Enum.ROOMLOADER_FLAG | The flags used to filter the loaded data [Default: State.Flags if set, or ROOMLOADER_DEFAULT_FLAGS] |
[xScale] | Real | The horizontal scale to load the room at [Default: State.XScale if set, or 1] |
[yScale] | Real | The vertical scale to load the room at [Default: State.YScale if set, or 1] |
[angle] | Real | The angle to load the room at [Default: State.Angle if set, or 0] |
// Loads rmLevelCastle at arbitrary coordinates:
RoomLoader.Load(rmLevelCastle, x, y);
// Loads rmLevelForest centered in the room:
var _x = room_width / 2;
var _y = room_height / 2;
RoomLoader.Load(rmLevelForest, _x, _y, 0.5, 0.5);
// Loads rmLevelCliff's Sprites and Tilemaps at the bottom-right corner of the room
// and stores the returned instance of Payload in a variable to be cleaned up later:
var _flags = ROOMLOADER_FLAG.SPRITES | ROOMLOADER_FLAG.TILEMAPS;
payload = RoomLoader.Load(rmLevelCliffs, room_width, room_height, 1, 1, _flags);
// Loads rmLevelForest centered in the room:
var _x = room_width / 2;
var _y = room_height / 2;
RoomLoader.MiddleCenter().Load(rmLevelForest, _x, _y);
// Loads rmLevelCliff's Sprites and Tilemaps at the bottom-right corner of the room
// and stores the returned instance of Payload in a variable to be cleaned up later:
payload = RoomLoader
.BottomRight().Sprites().Tilemaps()
.Load(rmLevelCliffs, room_width, room_height);
// Loads rmExample stretched to fill the room:
RoomLoader
.XScale(room_width / RoomLoader.DataGetWidth(rmExample))
.YScale(room_height / RoomLoader.DataGetHeight(rmExample))
.Load(rmExample, 0, 0);
// Loads rmExample's instances randomly scaled and rotated:
RoomLoader
.Scale(random_range(0.8, 1.2)).Angle(random(360))
.Instances().Load(rmExample, x, y);
// Loads rmExample 4 times rotated around a point:
RoomLoader
.Angle(0).Load(rmExample, x, y)
.Angle(90).Load(rmExample, x, y)
.Angle(180).Load(rmExample, x, y)
.Angle(270).Load(rmExample, x, y);
// Loads rmExample mirrored and flipped in all 4 corners of the room:
RoomLoader
.Load(rmExample, 0, 0)
.Mirror().Load(rmExample, room_width, 0)
.Mirror().Flip().Load(rmExample, room_width, room_height)
.Flip().Load(rmExample, 0, room_height);
.LoadInstances()
β
RoomLoader.LoadInstances(room, x, y, layerOrDepth, [xOrigin], [yOrigin], [xScale], [yScale], [angle])
β Array of Id.Instance
Loads all instances from the given room at the given coordinates, with optional Origin, Scaling and Rotation. Returns an array of loaded instance IDs.
Unlike Full Room Loading, all instances are placed onto the specified layer (or depth) instead of their original room layers.
Custom Loading
If you'd like to handle instance creation yourself rather than using GMRoomLoader's built-in method, call RoomLoader.DataGetInstances() to retrieve an array of instance data and apply your own logic to it.
Parameter | Type | Description |
---|---|---|
room | Asset.GMRoom | The room to load instances from |
x | Real | The x coordinate to load instances at |
y | Real | The y coordinate to load instances at |
layerOrDepth | Id.Layer or String or Real | The layer ID, layer name, or depth to create instances on |
[xOrigin] | Real | The x Origin to load the room at [Default: State.XOrigin if set, or ROOMLOADER_DEFAULT_XORIGIN] |
[yOrigin] | Real | The y Origin to load the room at [Default: State.YOrigin if set, or ROOMLOADER_DEFAULT_YORIGIN] |
[xscale] | Real | The horizontal scale transformation [Default: State.XScale if set, or 1] |
[yscale] | Real | The vertical scale transformation [Default: State.YScale if set, or 1] |
[angle] | Real | The angle transformation [Default: State.Angle if set, or 0] |
// Loads instances from rmLevelPartBottom at the bottom-right corner of the room:
RoomLoader.LoadInstances(rmLevelPartBottom, room_width, room_height, depth, 1, 1);
// Loads a layout of props to fill the size of the current room:
var _room = rmProps;
var _xscale = room_width / RoomLoader.DataGetWidth(_room);
var _yscale = room_height / RoomLoader.DataGetHeight(_room);
RoomLoader.LoadInstances(_room, 0, 0, depth, _xscale, _yscale);
// Loads a random arrangement of collectibles randomly rotated at the center of the room:
var _room = choose(rmCollectibles01, rmCollectibles02, rmCollectibles03);
var _x = room_width / 2;
var _y = room_height / 2;
var _angle = random(360);
RoomLoader.LoadInstances(_room, _x, _y, depth,,, _angle);
// Loads a random enemy layout in front of the player and stores their IDs in the loadedEnemies array:
var _room = script_execute_ext(choose, enemyLayoutRooms);
var _offset = 200;
var _x = objPlayer.x + lengthdir_x(_offset, objPlayer.angle);
var _y = objPlayer.y + lengthdir_y(_offset, objPlayer.angle);
var _angle = objPlayer.angle - 90;
loadedEnemies = RoomLoader.LoadInstances(_room, _x, _y, depth,,, _angle);
// Loads instances from rmLevelPartBottom at the bottom-right corner of the room:
RoomLoader.BottomRight().LoadInstances(rmLevelPartBottom, room_width, room_height, depth);
// Loads a layout of props to fill the size of the current room,
var _room = rmProps;
RoomLoader
.XScale(room_width / RoomLoader.DataGetWidth(_room))
.YScale(room_height / RoomLoader.DataGetHeight(_room))
.LoadInstances(_room, 0, 0, depth);
// Loads a random arrangement of collectibles randomly rotated at the center
// of the room:
var _room = choose(rmCollectibles01, rmCollectibles02, rmCollectibles03);
var _x = room_width / 2;
var _y = room_height / 2;
RoomLoader.Angle(random(360)).LoadInstances(_room, _x, _y, depth);
// Loads a random enemy layout in front of the player and stores their IDs
// in the loadedEnemies array:
var _room = script_execute_ext(choose, enemyLayoutRooms);
var _offset = 200;
var _x = objPlayer.x + lengthdir_x(_offset, objPlayer.angle);
var _y = objPlayer.y + lengthdir_y(_offset, objPlayer.angle);
enemies = RoomLoader.Angle(objPlayer.angle - 90).LoadInstances(_room, _x, _y, depth);
.LoadTilemap()
β
RoomLoader.LoadTilemap(room, x, y, sourceLayerName, [targetLayer], [xOrigin], [yOrigin], [mirror], [flip], [angle], [tileset])
β Id.Tilemap
Loads a tilemap from the given room and source layer at the given coordinates. The tilemap is created on the target layer at an optional origin, with optional Mirroring, Flipping, Rotation and Tileset.
Angle is wrapped around 360Β° and snapped to a 90Β° increment.
CUSTOM TILESETS
The optional [tileset]
parameter can be especially useful for loading:
- The same layout of tiles with different skins based on the set of levels/world/biome/dimension.
- A visual + collision pair of tilemaps. Great for tiles with perspective or detailing that doesn't match with collision 1:1.
When using such tileset groups/pairs, make sure that tiles on all tilesets are perfectly aligned, or you'll get a mess of misplaced tiles.
MERGING
If ROOMLOADER_MERGE_TILEMAPS is true
, GMRoomLoader will attempt to merge loaded and existing tilemaps. See the config macro page for details.
Parameter | Type | Description |
---|---|---|
room | Asset.GMRoom | The room to load a tilemap from |
x | Real | The x coordinate to load the tilemap at |
y | Real | The y coordinate to load the tilemap at |
sourceLayerName | String | The source layer name to load a tilemap from |
[targetLayer] | Id.Layer or String | The target layer to create the tilemap on [Default: if set, sourceLayerName ] |
[xOrigin] | Real | The x origin to load the tilemap at [Default: State.XOrigin if set, or ROOMLOADER_DEFAULT_XORIGIN] |
[yOrigin] | Real | The y origin to load the tilemap at [Default: State.YOrigin if set, or ROOMLOADER_DEFAULT_YORIGIN] |
[mirror] | Bool | Mirror the loaded tilemap? [Default: (State.XScale < 0 ) or State.Mirror if set, or false ] |
[flip] | Bool | Flip the loaded tilemap? [Default: (State.YScale < 0 ) or State.Flip if set, or false ] |
[angle] | Real | The angle to load the tilemap at [Default: State.Angle if set, or 0 ] |
[tileset] | Asset.GMTileset | The tileset to use for the tilemap [Default: State.Tileset if set, or source tileset] |
// Loads a tilemap from the "TilesFloor" layer in rmCasinoDetails,
// creates it centered in the room on the layer with the same name,
// and randomly mirrors and flips it:
var _x = room_width / 2;
var _y = room_height / 2;
var _layer = "TilesFloor";
var _mirror = choose(true, false);
var _flip = choose(true, false);
floorTilemap = RoomLoader.LoadTilemap(rmCasinoDetails, _x, _y, _layer, _layer, 0.5, 0.5, _mirror, _flip);
// Loads a tilemap from the "WallsLayout" layer in rmLayoutHard on the "Walls" layer,
// using a custom tileset based on the current dimension and rotates it randomly:
var _tileset = DIMENSIONS.GetCurrent().GetWallsTileset();
var _angle = random(360);
tilemap = RoomLoader.LoadTilemap(rmLayoutHard, 0, 0, "WallsLayout", "Walls", 0, 0, false, false, _angle_, _tileset);
// Loads a tilemap from the "TilesWalls" layer in rmChunkSpecial01,
// creates it on the newly created collision layer, assigns the tsWallsCollision tileset to it
// and stores its ID in the collisionTilemap variable:
collisionLayer = layer_create(0, "Collision");
collisionTilemap = RoomLoader.LoadTilemap(rmChunkSpecial01, 0, 0, "TilesWalls", collisionLayer, 0, 0, false, false, 0, tsWallsCollision);
// Loads a tilemap from the "TilesFloor" layer in rmCasinoDetails,
// creates it centered in the room on the layer with the same name,
// and randomly mirrors and flips it:
var _x = room_width / 2;
var _y = room_height / 2;
floorTilemap = RoomLoader
.MiddleCenter()
.Mirror(choose(true, false))
.Flip(choose(true, false))
.LoadTilemap(rmCasinoDetails, _x, _y, "TilesFloor");
// Loads a tilemap from the "WallsLayout" layer in rmLayoutHard on the "Walls" layer,
// using a custom tileset based on the current dimension and rotates it randomly:
tilemap = RoomLoader
.Angle(random(360))
.Tileset(DIMENSIONS.GetCurrent().GetWallsTileset())
.LoadTilemap(rmLayoutHard, 0, 0, "WallsLayout", "Walls");
// Loads a tilemap from the "TilesWalls" layer in rmChunkSpecial01,
// creates it on the newly created collision layer, assigns the tsWallsCollision tileset to it
// and stores its ID in the collisionTilemap variable:
collisionLayer = layer_create(0, "Collision");
collisionTilemap = RoomLoader
.Tileset(tsWallsCollision)
.LoadTilemap(rmChunkSpecial01, 0, 0, "TilesWalls", collisionLayer);