Skip to content

Level

Level routines. A level is a scene in the game, represented by a .lev file in the levels/ folder.

Whenever you spawn an object in SurgeScript, you should keep a reference to it, otherwise it will be automatically deleted by the Garbage Collector. Sometimes, you may want to spawn entities in your level, but keeping references to all of them may be inconvenient. If this is your case, you can spawn them as children of the Level object. It will keep references of the entities for you; therefore, they won't be garbage collected.

Example

using SurgeEngine.Actor;
using SurgeEngine.Level;
using SurgeEngine.Vector2;

object "Application"
{
    state "main"
    {
        createExplosionAt(100, 200);
        state = "wait";
    }

    state "wait"
    {
        if(timeout(1.0))
            state = "main";
    }

    fun createExplosionAt(x, y)
    {
        position = Vector2(x, y);
        return Level.spawnEntity("MyExplosion", position); // no need to keep references
    }
}

object "MyExplosion" is "entity", "disposable", "private"
{
    actor = Actor("MyExplosion");

    state "main"
    {
        if(actor.animation.finished)
            destroy()
    }
}

Properties

name

name: string, read-only.

The name of the level.

Example

using SurgeEngine.Level;

// Will display the name of the level
object "Application"
{
    state "main"
    {
        Console.print(Level.name);
        state = "done";
    }

    state "done"
    {
    }
}

act

act: number, read-only.

The act number (1, 2, 3...) of the current level.

cleared

cleared: boolean, read-only.

Checks if the current level has been cleared by the player. If this is true, a level cleared animation should be played. Although the engine provides a default animation, you may use this property to design your own. See also: clear().

file

file: string, read-only.

The relative path of the .lev file of the current level.

version

version: string, read-only.

The version of the level, defined in the .lev file.

author

author: string, read-only.

The author of the level, defined in the .lev file.

license

license: string, read-only.

The license of the level, defined in the .lev file.

music

music: Music object, read-only.

The music of the level.

bgtheme

bgtheme: string, read-only.

The path to the original background file (.bg), as declared in the .lev file.

background

background: string.

The path to the background file (.bg) currently in use. Use this property to change the background of the level.

waterlevel

waterlevel: number.

The y-coordinate, in world space, of the level water. Pixels not above this value are underwater.

spawnpoint

spawnpoint: Vector2 object.

The position where the player is placed when the level starts.

gravity

gravity: number, read-only.

The acceleration of gravity, measured in pixels per second squared.

time

time: number.

Elapsed time in the level, given in seconds.

Note: this property is writable since Open Surge 0.6.0.

next

next: number.

The number of the next level in the current quest: 1 means the first level of the quest, 2 means the second, and so on.

onUnload

onUnload: object | null.

Used to specify a function object to be called when the level is unloaded.

Functions

spawn

spawn(objectName)

Spawns an object as a child of Level. Such objects won't be garbage collected.

Arguments

  • objectName: string. The name of the object to be spawned.

Returns

The spawned object.

spawnEntity

spawnEntity(objectName, position)

Spawns an entity named objectName at a certain position. This works like spawn, but lets you position the entity as well.

Arguments

  • objectName: string. The name of the entity to be spawned.
  • position: Vector2 object. A position in world coordinates.

Returns

The spawned entity.

entity

entity(id)

Entities placed on the level via the editor are automatically assigned an ID, a hexadecimal identification code. The purpose of the ID is to uniquely identify the entity in the level. This function returns the entity whose ID is id. It's recommended to cache the return value of this function. Do not call it every frame (better performance).

Arguments

  • id: string. The ID of the entity to be retrieved.

Returns

The desired entity (object), or null if there is no entity associated with the given ID.

Example

using SurgeEngine.Level;

//
// Level.entity() is very useful when creating setup objects, i.e.,
// objects spawned when the level is initialized. You can use it to
// tune the parameters of specific entities, call their functions, etc.
//
// The example below can be added to the startup list in the .lev file.
//
object "My Setup Object"
{
    state "main"
    {
        // setup the entity
        item = Level.entity("ab65d8fe1ebd68de"); // first, we get the entity
        if(item != null) {
            Console.print(item.__name); // then we print the object name
            //item.score = 100; // we can also change a property
        }
        else
            Console.print("Entity not found");

        // change the state
        state = "done";
    }

    state "done"
    {
    }
}

entityId

entityId(entityObject)

Returns the ID of the provided entity, if it is defined. If no such ID is defined, an empty string is returned.

Available since: Open Surge 0.6.1

Arguments

  • entityObject: object. An object tagged entity.

Returns

A string with a hexadecimal identification code, or an empty string.

setup

setup(config)

Sets up the properties of a collection of level objects. This is a handy function typically used in a startup object of your level. Its purpose is to configure the properties of level objects. You may set the properties of groups of objects (given their names) and of individual entities alone (given their IDs).

The target properties and their respective values should be specified in the config Dictionary, passed as a parameter. Each key of config should be either an object name or an entity ID. Each value of the dictionary should be another dictionary specifying the properties to be set and their respective values. If an object name is specified in a key of config, all level objects with that name will be affected. If an entity ID is provided, only that specific entity will be affected, if it exists.

This function will search for all the specified objects in the level, so it's not supposed to be used in a loop (or in a repeating state). Furthermore, if one or more objects or properties do not exist, this function will fail silently. Therefore, make sure you type everything correctly.

Arguments

  • config: Dictionary object. The configuration as described.

Example

using SurgeEngine.Level;

//
// This is supposed to be a startup object,
// listed in the startup list of a .lev file
//
object "My Level Setup"
{
    // setup properties
    fun constructor()
    {
        Level.setup({
            "Elevator": {
                "anim": 2
            },
            "Background Exchanger": {
                "background": "themes/template.bg"
            },
            "5640353a6efd2901": {
                "someProperty": 123,
                "someOtherProperty": "hello"
            },
            "770ae26584229af2": {
                "title": "Super!!",
                "message": "Hey there! Feeling good today?",
                "buttons": [ "Yes", "No" ]
            }
        });
    }
}

restart

restart()

Restarts the current level.

quit

quit()

Prompts the user to see if he/she wants to quit the current level.

abort

abort()

Quits the current level/quest without prompting the user.

pause

pause()

Pauses the game.

load

load(filepath)

Loads the specified level/quest.

  • If you pass the path to a level (a .lev file in the levels/ folder), the specified level will be loaded. The state of the current level (position of the entities and so on) will be lost.

  • If you pass the path to a quest (a .qst file in the quests/ folder), the specified quest will be loaded and, when it's completed, the engine will redirect the user back to the level he/she was before. This might be useful for creating bonuses, configuration screens, and so on.

Arguments

  • filepath: string. Relative path of the level or quest to be loaded.

Example

using SurgeEngine.Level;

object "My Level Loader"
{
    fun load(id)
    {
        if(id == "beach")
            Level.load("levels/my_beach_level.lev");
        else if(id == "forest")
            Level.load("levels/my_forest_level.lev");
        else
            Console.print("Unrecognized level: " + id);
    }
}

loadNext

loadNext()

Loads the next level in the current quest. This is the usual procedure after clearing the level. See also: next.

clear

clear()

Clears the level without actually changing it. Once the level is cleared, a level cleared animation is played. See also: cleared.