2020-07-19 06:15:50 +02:00
|
|
|
#ifndef _MACROS_H_
|
|
|
|
#define _MACROS_H_
|
|
|
|
|
2020-10-13 03:28:01 +02:00
|
|
|
#include "common.h"
|
2021-03-09 18:10:12 +01:00
|
|
|
#include "include_asm.h"
|
2020-07-19 06:15:50 +02:00
|
|
|
|
2021-07-16 20:27:27 +02:00
|
|
|
#define BSS __attribute__ ((section (".bss")))
|
|
|
|
|
2020-12-02 00:23:26 +01:00
|
|
|
#define ALIGN16(val) (((val) + 0xF) & ~0xF)
|
|
|
|
|
2021-01-01 02:20:39 +01:00
|
|
|
#define N(sym) NS(NAMESPACE, sym)
|
|
|
|
|
2020-08-09 04:17:37 +02:00
|
|
|
#define ARRAY_COUNT(arr) (s32)(sizeof(arr) / sizeof(arr[0]))
|
2020-08-12 03:01:33 +02:00
|
|
|
|
2021-03-25 09:56:12 +01:00
|
|
|
#define PHYSICAL_TO_VIRTUAL(addr) (void*)((u32)(addr) + 0x80000000)
|
|
|
|
#define VIRTUAL_TO_PHYSICAL(addr) (u32)((u8*)(addr) - 0x80000000)
|
|
|
|
|
2021-07-19 10:22:43 +02:00
|
|
|
#ifdef DEBUG
|
|
|
|
#define ASSERT(condition) \
|
|
|
|
if (!(condition)) { \
|
|
|
|
func_80025F44("Assertion failed: " #condition, __FILE__, __LINE__); \
|
|
|
|
while (TRUE) {} \
|
|
|
|
}
|
|
|
|
#define PANIC() \
|
|
|
|
func_80025F44("Panic!", __FILE__, __LINE__); \
|
|
|
|
while (TRUE) {}
|
|
|
|
#else
|
|
|
|
#define ASSERT(condition) if (!(condition)) { while (TRUE) {} }
|
|
|
|
#define PANIC() while (TRUE) {}
|
|
|
|
#endif
|
2020-08-17 14:09:19 +02:00
|
|
|
|
2020-11-10 21:21:37 +01:00
|
|
|
#define BADGE_MENU_PAGE(index) (&gBadgeMenuPages[index])
|
2020-11-12 06:44:10 +01:00
|
|
|
#define ITEM_MENU_PAGE(index) (&gItemMenuPages[index])
|
2020-11-10 21:21:37 +01:00
|
|
|
|
2020-10-13 03:28:01 +02:00
|
|
|
#define MAX_MAPVARS 16
|
|
|
|
#define MAX_MAPFLAGS 3
|
|
|
|
|
2020-11-08 21:40:26 +01:00
|
|
|
#define MAX_ANIMATED_MODELS 16
|
|
|
|
#define MAX_ANIMATED_MESHES 16
|
2021-04-13 02:07:05 +02:00
|
|
|
#define MAX_ENTITY_MODELS 256
|
2020-10-22 02:07:00 +02:00
|
|
|
#define MAX_MODELS 256
|
2021-06-21 06:30:57 +02:00
|
|
|
#define MAX_MODEL_TRANSFORM_GROUPS 4
|
2020-10-13 03:28:01 +02:00
|
|
|
#define MAX_SCRIPTS 128
|
2020-10-22 02:07:00 +02:00
|
|
|
#define MAX_NPCS 64
|
|
|
|
#define MAX_TRIGGERS 64
|
|
|
|
#define MAX_SHADOWS 60
|
|
|
|
#define MAX_ENTITIES 30
|
|
|
|
#define MAX_DYNAMIC_ENTITIES 16
|
2021-03-28 20:31:15 +02:00
|
|
|
#define MAX_TEX_PANNERS 16
|
2021-04-29 19:09:30 +02:00
|
|
|
#define MAX_ITEM_ENTITIES 256
|
2020-10-13 03:28:01 +02:00
|
|
|
|
2021-07-22 20:48:30 +02:00
|
|
|
#define SCREEN_WIDTH 320
|
|
|
|
#define SCREEN_HEIGHT 240
|
|
|
|
|
2020-10-26 22:45:24 +01:00
|
|
|
// Alternative to libultra's M_PI: non-float version; more digits cause issues
|
2021-04-29 19:31:16 +02:00
|
|
|
#define PI 3.141592f
|
|
|
|
#define PI_D 3.141592
|
|
|
|
#define TAU 6.28318f
|
2021-07-08 17:53:00 +02:00
|
|
|
#define PI_S 3.14159f // Shorter PI
|
2020-10-26 22:45:24 +01:00
|
|
|
|
2021-04-22 05:19:31 +02:00
|
|
|
#define SPRITE_WORLD_SCALE 0.71428573f
|
|
|
|
|
2021-07-12 11:15:00 +02:00
|
|
|
#define PACK_FILL_COLOR(r, g, b, a) (GPACK_RGBA5551(r, g, b, a) << 0x10) | GPACK_RGBA5551(r, g, b, a)
|
|
|
|
|
2020-10-13 03:28:01 +02:00
|
|
|
//NOTE: SCRIPT_ALLOC is probably not quite correct, but this is the closest thing to matching for the functions its used in. Needs more work.
|
|
|
|
#define SCRIPT_ALLOC(new, index) \
|
|
|
|
{ \
|
2021-04-23 13:55:30 +02:00
|
|
|
(*gCurrentScriptListPtr)[index] = new = heap_malloc(sizeof(ScriptInstance)); \
|
|
|
|
gNumScripts++; \
|
2020-10-13 03:28:01 +02:00
|
|
|
ASSERT(new != NULL); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SCRIPT_FREE(index) \
|
|
|
|
{ \
|
|
|
|
ScriptList** temp = &gCurrentScriptListPtr; \
|
|
|
|
s32 *numScripts = &gNumScripts; \
|
|
|
|
heap_free((**temp)[index]); \
|
|
|
|
(**temp)[index] = NULL; \
|
|
|
|
(*numScripts)--; \
|
|
|
|
}
|
|
|
|
|
2020-09-11 22:29:52 +02:00
|
|
|
#define SQ(x) (x*x)
|
2021-04-29 19:31:16 +02:00
|
|
|
#define CUBE(x) (x*x*x)
|
|
|
|
#define QUART(x) (x*x*x*x)
|
2020-09-11 22:29:52 +02:00
|
|
|
|
2020-10-20 05:08:28 +02:00
|
|
|
// Fixed-point short literal
|
|
|
|
#define F16(f) (s16)(f * 327.67f)
|
|
|
|
|
2020-12-28 08:09:39 +01:00
|
|
|
#define _NS(x, y) x ## _ ## y
|
|
|
|
#define NS(x, y) _NS(x, y)
|
2020-10-21 15:12:24 +02:00
|
|
|
|
2021-01-15 04:19:49 +01:00
|
|
|
#define ASCII_TO_U32(a, b, c, d) ((u32)((a << 24) | (b << 16) | (c << 8) | (d << 0)))
|
|
|
|
|
2020-08-12 03:01:33 +02:00
|
|
|
#endif
|