Skip to content

Destructors for GameMaker: Studio 2.3

License

Notifications You must be signed in to change notification settings

Totobal5/Destructors

 
 

Repository files navigation

GML2.3 Destructors

This library adds destructors to GameMaker: Studio 2.3's release. This allows you to use ds_* types such as lists and maps inside of structs without fear of leaking memory when they're deleted.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Installation via Local Package (.yymps)

GameMaker Studio 2 allows you to import assets, including scripts and shaders, directly into your project via the "Local Package" system. From the Releases tab for this repo, download the .yymp file for the latest version. In the GMS2 IDE, load up your project and click on "Tools" on the main window toolbar. Select "Import Local Package" from the drop-down menu then import all scripts from the Destructors package.

Installation via Copy/Paste

You can simply copy and paste the contents of Destructors.gml into a new Script in your project.

Usage

Destructors are registered via the dtor(type, value, [option]) function. This function can be called multiple times on the same struct instance to registered multiple destructors.

In order to register a destructor callback,

Note that struct members cannot be accessed inside of the callback.

function foo() constructor {
	name = "Zach";
	
	dtor(DtorType.Function, function () {
		show_debug_message("Destructed!");
	});
}

var a = new foo();
delete a;           // "Destructed!"

In order to register a destructor to clean an allocated ds_*,

function test1() constructor {
    list = ds_list_create();

    dtor(DtorType.List, list);
}

var a = new test1();  // foo.list exists
delete a;             // foo.list has been destroyed

Additionally, Sprite, Surface, VertexBuffer, VertexFormat, Path, AnimCurve and Instance types can be destroyed via dtor.

Running the Example

Clone this repo and open and run the project in GameMaker: Studio. Follow the on screen instructions for a demonstration of the library.

Authors

  • Zach Reedy - Developed first implementation. Finalized codebase. - DatZach
  • Juju Adams - Second draft implementation. Examples. - JujuAdams
  • Torin Freimiller - Initial discoveries related to tracking objects. - Nommiin

License

This project is licensed under the MIT License - see the LICENSE file for details

About

Destructors for GameMaker: Studio 2.3

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Yacc 83.7%
  • Game Maker Language 16.3%