mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-08-23 07:13:44 +02:00

This commit adds `sb()->create_object()`, `sb()->get_object()`, `sb()->check_object_type()` and `sb()->destroy_object()` in libretro builds to keep track of all C++ objects allocated by the bindings in libretro builds. This has some benefits: * Any C++ objects allocated by the bindings that are still alive when the game terminates can now be deallocated instead of being leaked like before. * We now keep track of the types of all objects allocated by the bindings, so we will be able to detect when the bindings attempt to access objects of mismatching type. * Keeping track of all allocated objects is required to implement libretro save states. * Objects are now kept track of using numeric keys whose sizes are the same on every platform rather than pointers, which helps with making save states portable across platforms.
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
/*
|
|
** wasm-types.h
|
|
**
|
|
** This file is part of mkxp.
|
|
**
|
|
** Copyright (C) 2013 - 2021 Amaryllis Kulla <ancurio@mapleshrine.eu>
|
|
**
|
|
** mkxp is free software: you can redistribute it and/or modify
|
|
** it under the terms of the GNU General Public License as published by
|
|
** the Free Software Foundation, either version 2 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** mkxp is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
** GNU General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with mkxp. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef MKXPZ_SANDBOX_WASM_TYPES_H
|
|
#define MKXPZ_SANDBOX_WASM_TYPES_H
|
|
|
|
#include <cstdint>
|
|
|
|
namespace mkxp_sandbox {
|
|
#ifdef MKXPZ_RETRO_MEMORY64
|
|
typedef int64_t wasm_ssize_t;
|
|
typedef uint64_t wasm_size_t;
|
|
#else
|
|
typedef int32_t wasm_ssize_t;
|
|
typedef uint32_t wasm_size_t;
|
|
#endif
|
|
|
|
#define ANYARGS ...
|
|
typedef wasm_size_t wasm_ptr_t;
|
|
typedef wasm_ptr_t wasm_objkey_t;
|
|
typedef wasm_ptr_t VALUE;
|
|
typedef wasm_ptr_t ID;
|
|
}
|
|
|
|
#endif // MKXPZ_SANDBOX_WASM_TYPES_H
|