2023-10-14 06:21:23 +00:00
|
|
|
#if defined(_CLANGD)
|
|
|
|
#pragma once
|
|
|
|
#include "feely_pona_unity.h"
|
2023-09-23 06:42:22 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
enum FP_ProfileZone
|
|
|
|
{
|
|
|
|
FP_ProfileZone_FPUpdate = TELY_ProfileZone_Count,
|
|
|
|
FP_ProfileZone_FPUpdate_EntityLoop,
|
|
|
|
FP_ProfileZone_FPUpdate_PathFinding,
|
2023-09-23 07:19:36 +00:00
|
|
|
FP_ProfileZone_FPUpdate_AStar,
|
|
|
|
FP_ProfileZone_FPUpdate_AStarEnumerateCollidables,
|
|
|
|
FP_ProfileZone_FPUpdate_AStarExpand,
|
|
|
|
FP_ProfileZone_FPUpdate_AStarExploreNeighbours,
|
2023-09-23 06:42:22 +00:00
|
|
|
FP_ProfileZone_FPUpdate_Attacks,
|
|
|
|
FP_ProfileZone_FPRender,
|
|
|
|
};
|
|
|
|
|
2023-09-25 14:07:39 +00:00
|
|
|
struct FP_Meters
|
|
|
|
{
|
|
|
|
Dqn_f32 meters;
|
|
|
|
};
|
|
|
|
|
2023-09-29 11:42:27 +00:00
|
|
|
struct FP_GlobalAnimations
|
|
|
|
{
|
2023-10-05 12:09:39 +00:00
|
|
|
Dqn_String8 airport_terry = DQN_STRING8("airport_terry");
|
|
|
|
Dqn_String8 airport_terry_plane = DQN_STRING8("airport_terry_plane");
|
2023-10-04 12:50:31 +00:00
|
|
|
|
|
|
|
Dqn_String8 catfish_attack_down = DQN_STRING8("catfish_attack_down");
|
|
|
|
Dqn_String8 catfish_attack_side = DQN_STRING8("catfish_attack_side");
|
|
|
|
Dqn_String8 catfish_attack_up = DQN_STRING8("catfish_attack_up");
|
|
|
|
Dqn_String8 catfish_death = DQN_STRING8("catfish_death");
|
|
|
|
Dqn_String8 catfish_walk_up = DQN_STRING8("catfish_walk_up");
|
|
|
|
Dqn_String8 catfish_walk_side = DQN_STRING8("catfish_walk_side");
|
|
|
|
Dqn_String8 catfish_walk_down = DQN_STRING8("catfish_walk_down");
|
|
|
|
|
2023-10-01 05:11:08 +00:00
|
|
|
Dqn_String8 clinger_attack_down = DQN_STRING8("clinger_attack_down");
|
|
|
|
Dqn_String8 clinger_attack_side = DQN_STRING8("clinger_attack_side");
|
|
|
|
Dqn_String8 clinger_attack_up = DQN_STRING8("clinger_attack_up");
|
|
|
|
Dqn_String8 clinger_death = DQN_STRING8("clinger_death");
|
|
|
|
Dqn_String8 clinger_walk_up = DQN_STRING8("clinger_walk_up");
|
|
|
|
Dqn_String8 clinger_walk_down = DQN_STRING8("clinger_walk_down");
|
2023-09-29 11:42:27 +00:00
|
|
|
|
2023-10-04 12:50:31 +00:00
|
|
|
Dqn_String8 church_terry_alive = DQN_STRING8("church_terry_alive");
|
|
|
|
Dqn_String8 church_terry_dark = DQN_STRING8("church_terry_dark");
|
|
|
|
|
2023-10-01 05:11:08 +00:00
|
|
|
Dqn_String8 club_terry_alive = DQN_STRING8("club_terry_alive");
|
|
|
|
Dqn_String8 club_terry_dark = DQN_STRING8("club_terry_dark");
|
2023-09-30 09:14:35 +00:00
|
|
|
|
2023-10-12 13:05:41 +00:00
|
|
|
Dqn_String8 end_screen = DQN_STRING8("end_screen");
|
|
|
|
|
2023-10-01 05:11:08 +00:00
|
|
|
Dqn_String8 heart = DQN_STRING8("heart");
|
|
|
|
Dqn_String8 heart_bleed = DQN_STRING8("heart_bleed");
|
|
|
|
|
2023-10-07 12:05:46 +00:00
|
|
|
Dqn_String8 icon_health = DQN_STRING8("icon_health");
|
|
|
|
Dqn_String8 icon_money = DQN_STRING8("icon_money");
|
|
|
|
Dqn_String8 icon_phone = DQN_STRING8("icon_phone");
|
|
|
|
Dqn_String8 icon_stamina = DQN_STRING8("icon_stamina");
|
|
|
|
|
2023-10-12 13:05:41 +00:00
|
|
|
Dqn_String8 intro_screen_arrows = DQN_STRING8("intro_screen_arrows");
|
|
|
|
Dqn_String8 intro_screen_subtitle = DQN_STRING8("intro_screen_subtitle");
|
|
|
|
Dqn_String8 intro_screen_terry = DQN_STRING8("intro_screen_terry");
|
|
|
|
Dqn_String8 intro_screen_title = DQN_STRING8("intro_screen_title");
|
|
|
|
|
2023-10-04 12:50:31 +00:00
|
|
|
Dqn_String8 kennel_terry = DQN_STRING8("kennel_terry");
|
|
|
|
|
2023-10-12 13:05:41 +00:00
|
|
|
Dqn_String8 map = DQN_STRING8("map");
|
|
|
|
Dqn_String8 map_billboard_attack = DQN_STRING8("map_billboard_attack");
|
|
|
|
Dqn_String8 map_billboard_dash = DQN_STRING8("map_billboard_dash");
|
|
|
|
Dqn_String8 map_billboard_monkey = DQN_STRING8("map_billboard_monkey");
|
|
|
|
Dqn_String8 map_billboard_range_attack = DQN_STRING8("map_billboard_range_attack");
|
|
|
|
Dqn_String8 map_billboard_strafe = DQN_STRING8("map_billboard_strafe");
|
|
|
|
Dqn_String8 map_police = DQN_STRING8("map_police");
|
2023-10-01 06:50:32 +00:00
|
|
|
|
2023-10-04 12:50:31 +00:00
|
|
|
Dqn_String8 merchant_button_a = DQN_STRING8("merchant_button_a");
|
|
|
|
Dqn_String8 merchant_button_b = DQN_STRING8("merchant_button_b");
|
|
|
|
Dqn_String8 merchant_button_x = DQN_STRING8("merchant_button_x");
|
|
|
|
Dqn_String8 merchant_button_y = DQN_STRING8("merchant_button_y");
|
|
|
|
|
|
|
|
Dqn_String8 merchant_graveyard = DQN_STRING8("merchant_graveyard");
|
2023-10-06 12:16:55 +00:00
|
|
|
Dqn_String8 merchant_graveyard_menu = DQN_STRING8("merchant_graveyard_menu");
|
2023-10-04 12:50:31 +00:00
|
|
|
Dqn_String8 merchant_gym = DQN_STRING8("merchant_gym");
|
|
|
|
Dqn_String8 merchant_gym_menu = DQN_STRING8("merchant_gym_menu");
|
|
|
|
Dqn_String8 merchant_phone_company = DQN_STRING8("merchant_phone_company");
|
|
|
|
Dqn_String8 merchant_phone_company_menu = DQN_STRING8("merchant_phone_company_menu");
|
|
|
|
Dqn_String8 merchant_terry = DQN_STRING8("merchant_terry");
|
|
|
|
Dqn_String8 merchant_terry_menu = DQN_STRING8("merchant_terry_menu");
|
2023-10-01 06:50:32 +00:00
|
|
|
|
2023-10-07 12:05:46 +00:00
|
|
|
Dqn_String8 particle_drunk = DQN_STRING8("particle_drunk");
|
|
|
|
Dqn_String8 particle_heart = DQN_STRING8("particle_heart");
|
|
|
|
Dqn_String8 particle_purchase = DQN_STRING8("particle_purchase");
|
|
|
|
Dqn_String8 portal = DQN_STRING8("portal");
|
2023-10-07 14:29:50 +00:00
|
|
|
Dqn_String8 portal_break = DQN_STRING8("portal_break");
|
2023-10-07 12:05:46 +00:00
|
|
|
Dqn_String8 portal_monk = DQN_STRING8("portal_monk");
|
|
|
|
|
2023-10-01 06:50:32 +00:00
|
|
|
Dqn_String8 shadow_long_circle = DQN_STRING8("shadow_long_circle");
|
|
|
|
Dqn_String8 shadow_tight_circle = DQN_STRING8("shadow_tight_circle");
|
|
|
|
|
2023-10-04 12:50:31 +00:00
|
|
|
Dqn_String8 shrubbery_bush_1 = DQN_STRING8("shrubbery_bush_1");
|
|
|
|
Dqn_String8 shrubbery_bush_2 = DQN_STRING8("shrubbery_bush_2");
|
|
|
|
Dqn_String8 shrubbery_island_1 = DQN_STRING8("shrubbery_island_1");
|
|
|
|
Dqn_String8 shrubbery_island_2 = DQN_STRING8("shrubbery_island_2");
|
|
|
|
Dqn_String8 shrubbery_island_3 = DQN_STRING8("shrubbery_island_3");
|
|
|
|
|
2023-10-01 06:50:32 +00:00
|
|
|
Dqn_String8 smoochie_walk_up = DQN_STRING8("smoochie_walk_up");
|
|
|
|
Dqn_String8 smoochie_walk_down = DQN_STRING8("smoochie_walk_down");
|
|
|
|
Dqn_String8 smoochie_walk_left = DQN_STRING8("smoochie_walk_left");
|
|
|
|
Dqn_String8 smoochie_walk_right = DQN_STRING8("smoochie_walk_right");
|
|
|
|
Dqn_String8 smoochie_attack_down = DQN_STRING8("smoochie_attack_down");
|
|
|
|
Dqn_String8 smoochie_hurt_side = DQN_STRING8("smoochie_hurt_side");
|
|
|
|
Dqn_String8 smoochie_attack_heart = DQN_STRING8("smoochie_attack_heart");
|
|
|
|
Dqn_String8 smoochie_death = DQN_STRING8("smoochie_death");
|
|
|
|
|
2023-10-04 12:50:31 +00:00
|
|
|
Dqn_String8 terry_attack_up = DQN_STRING8("terry_attack_up");
|
|
|
|
Dqn_String8 terry_attack_side = DQN_STRING8("terry_attack_side");
|
|
|
|
Dqn_String8 terry_attack_down = DQN_STRING8("terry_attack_down");
|
|
|
|
Dqn_String8 terry_attack_phone_up = DQN_STRING8("terry_attack_phone_up");
|
|
|
|
Dqn_String8 terry_attack_phone_side = DQN_STRING8("terry_attack_phone_side");
|
|
|
|
Dqn_String8 terry_attack_phone_down = DQN_STRING8("terry_attack_phone_down");
|
|
|
|
Dqn_String8 terry_attack_phone_message = DQN_STRING8("terry_attack_phone_message");
|
2023-10-07 12:05:46 +00:00
|
|
|
Dqn_String8 terry_death = DQN_STRING8("terry_death");
|
|
|
|
Dqn_String8 terry_pat_dog = DQN_STRING8("terry_pat_dog");
|
2023-10-07 04:29:56 +00:00
|
|
|
Dqn_String8 terry_ghost = DQN_STRING8("terry_ghost");
|
2023-10-04 12:50:31 +00:00
|
|
|
Dqn_String8 terry_walk_idle = DQN_STRING8("terry_walk_idle");
|
|
|
|
Dqn_String8 terry_walk_up = DQN_STRING8("terry_walk_up");
|
|
|
|
Dqn_String8 terry_walk_down = DQN_STRING8("terry_walk_down");
|
|
|
|
Dqn_String8 terry_walk_left = DQN_STRING8("terry_walk_left");
|
|
|
|
Dqn_String8 terry_walk_right = DQN_STRING8("terry_walk_right");
|
2023-09-29 11:42:27 +00:00
|
|
|
}
|
|
|
|
g_anim_names;
|
|
|
|
|