2022-03-10 03:01:03 +01:00
|
|
|
#ifndef DYNOS_C_H
|
|
|
|
#define DYNOS_C_H
|
|
|
|
#ifndef __cplusplus
|
|
|
|
|
|
|
|
#include "dynos.h"
|
2022-03-31 08:04:41 +02:00
|
|
|
#include "types.h"
|
2022-06-02 21:19:54 +02:00
|
|
|
#include "engine/behavior_script.h"
|
2022-04-05 22:44:05 +02:00
|
|
|
#include "src/game/moving_texture.h"
|
2022-03-10 03:01:03 +01:00
|
|
|
|
2022-04-09 04:29:16 +02:00
|
|
|
void *dynos_swap_cmd(void *cmd);
|
|
|
|
|
2022-03-31 08:04:41 +02:00
|
|
|
// -- built in -- //
|
2022-05-14 23:28:25 +02:00
|
|
|
void *dynos_update_cmd(void *cmd);
|
|
|
|
void dynos_update_gfx();
|
|
|
|
s32 dynos_tex_import(void **output, void *ptr, s32 tile, void *grapi, void **hashmap, void *pool, s32 *poolpos, s32 poolsize);
|
2022-03-10 03:01:03 +01:00
|
|
|
void dynos_gfx_swap_animations(void *ptr);
|
|
|
|
|
2022-03-31 08:04:41 +02:00
|
|
|
// -- warps -- //
|
2023-08-18 18:31:59 +02:00
|
|
|
LevelScript* dynos_get_level_script(const char* scriptEntryName);
|
2022-10-01 07:51:00 +02:00
|
|
|
bool dynos_warp_to_warpnode(s32 aLevel, s32 aArea, s32 aAct, s32 aWarpId);
|
2022-03-31 08:04:41 +02:00
|
|
|
bool dynos_warp_to_level(s32 aLevel, s32 aArea, s32 aAct);
|
|
|
|
bool dynos_warp_restart_level(void);
|
2022-08-26 02:27:05 +02:00
|
|
|
bool dynos_warp_to_start_level(void);
|
2022-03-31 08:04:41 +02:00
|
|
|
bool dynos_warp_exit_level(s32 aDelay);
|
|
|
|
bool dynos_warp_to_castle(s32 aLevel);
|
|
|
|
|
|
|
|
// -- dynos packs -- //
|
2023-04-04 04:15:52 +02:00
|
|
|
void dynos_packs_init(void);
|
2022-04-20 06:06:18 +02:00
|
|
|
int dynos_pack_get_count(void);
|
|
|
|
const char* dynos_pack_get_name(s32 index);
|
|
|
|
bool dynos_pack_get_enabled(s32 index);
|
|
|
|
void dynos_pack_set_enabled(s32 index, bool value);
|
2023-10-30 06:03:36 +01:00
|
|
|
bool dynos_pack_get_exists(s32 index);
|
2022-04-23 12:23:30 +02:00
|
|
|
void dynos_pack_init(void);
|
2022-03-31 08:04:41 +02:00
|
|
|
void dynos_generate_packs(const char* directory);
|
|
|
|
|
|
|
|
// -- geos -- //
|
2022-04-20 06:06:18 +02:00
|
|
|
void dynos_actor_override(void** aSharedChild);
|
2022-04-16 22:05:10 +02:00
|
|
|
void dynos_add_actor_custom(const char *filePath, const char* geoName);
|
2022-03-31 08:04:41 +02:00
|
|
|
const void* dynos_geolayout_get(const char *name);
|
2022-05-14 23:28:25 +02:00
|
|
|
void *dynos_geolayout_to_graphnode(const void *geoLayout, bool keepInMemory);
|
2022-03-31 08:04:41 +02:00
|
|
|
|
|
|
|
// -- collisions -- //
|
2022-04-16 22:05:10 +02:00
|
|
|
void dynos_add_collision(const char *filePath, const char* collisionName);
|
2022-03-31 08:04:41 +02:00
|
|
|
Collision* dynos_collision_get(const char* collisionName);
|
|
|
|
|
2022-05-07 07:03:12 +02:00
|
|
|
// -- textures -- //
|
|
|
|
void dynos_add_texture(const char *filePath, const char* textureName);
|
|
|
|
bool dynos_texture_get(const char* textureName, struct TextureInfo* outTextureInfo);
|
|
|
|
|
2022-04-09 10:47:20 +02:00
|
|
|
// -- movtexqcs -- //
|
|
|
|
void dynos_movtexqc_register(const char* name, s16 level, s16 area, s16 type);
|
|
|
|
struct MovtexQuadCollection* dynos_movtexqc_get_from_id(u32 id);
|
|
|
|
struct MovtexQuadCollection* dynos_movtexqc_get_from_index(s32 index);
|
|
|
|
|
2022-04-03 00:14:04 +02:00
|
|
|
// -- levels -- //
|
2022-04-16 22:05:10 +02:00
|
|
|
void dynos_add_level(s32 modIndex, const char *filePath, const char* levelName);
|
2022-04-07 17:21:19 +02:00
|
|
|
const char* dynos_level_get_token(u32 index);
|
2022-04-09 08:01:41 +02:00
|
|
|
Trajectory* dynos_level_get_trajectory(const char* name);
|
2022-04-06 07:56:03 +02:00
|
|
|
void dynos_level_load_background(void *ptr);
|
2023-01-31 13:24:56 +01:00
|
|
|
u64 dynos_level_cmd_get(void *cmd, u64 offset);
|
2023-10-28 01:42:27 +02:00
|
|
|
void dynos_level_cmd_next(void *cmd);
|
2023-01-31 13:24:56 +01:00
|
|
|
void dynos_level_parse_script(const void *script, s32 (*aPreprocessFunction)(u8, void *));
|
|
|
|
void* dynos_level_get_script(s32 level);
|
2023-04-29 01:55:29 +02:00
|
|
|
s32 dynos_level_get_mod_index(s32 level);
|
|
|
|
bool dynos_level_is_vanilla_level(s32 level);
|
2022-04-03 00:14:04 +02:00
|
|
|
|
2022-06-02 21:19:54 +02:00
|
|
|
// -- behaviors -- //
|
|
|
|
void dynos_add_behavior(s32 modIndex, const char *filePath, const char *behaviorName);
|
|
|
|
s32 dynos_behavior_get_active_mod_index(BehaviorScript *bhvScript);
|
|
|
|
const char *dynos_behavior_get_token(BehaviorScript *bhvScript, u32 index);
|
|
|
|
void dynos_behavior_hook_all_custom_behaviors(void);
|
|
|
|
|
2023-05-13 01:15:35 +02:00
|
|
|
// -- models -- //
|
2023-05-19 06:29:57 +02:00
|
|
|
struct GraphNode* dynos_model_load_geo(u32* aId, enum ModelPool aModelPool, void* aAsset, bool aDeDuplicate);
|
2023-05-16 05:45:04 +02:00
|
|
|
struct GraphNode* dynos_model_load_dl(u32* aId, enum ModelPool aModelPool, u8 aLayer, void* aAsset);
|
|
|
|
struct GraphNode* dynos_model_store_geo(u32* aId, enum ModelPool aModelPool, void* aAsset, struct GraphNode* aGraphNode);
|
|
|
|
struct GraphNode* dynos_model_get_geo(u32 aId);
|
|
|
|
void dynos_model_overwrite_slot(u32 srcSlot, u32 dstSlot);
|
2023-05-18 08:32:39 +02:00
|
|
|
u32 dynos_model_get_id_from_asset(void* aAsset);
|
|
|
|
u32 dynos_model_get_id_from_graph_node(struct GraphNode* aGraphNode);
|
2023-05-13 01:15:35 +02:00
|
|
|
void dynos_model_clear_pool(enum ModelPool aModelPool);
|
|
|
|
|
2022-05-09 16:27:47 +02:00
|
|
|
// -- other -- //
|
|
|
|
void dynos_mod_shutdown(void);
|
2022-08-26 02:46:33 +02:00
|
|
|
void dynos_add_scroll_target(u32 index, const char *name, u32 offset, u32 size);
|
2022-05-09 16:27:47 +02:00
|
|
|
|
2022-03-10 03:01:03 +01:00
|
|
|
#endif
|
|
|
|
#endif
|