R-PAGE
Resistance's Portable-Adventure-Game-Engine
utils.h
Go to the documentation of this file.
1 /* Resistance's Portable-Adventure-Game-Engine (R-PAGE), Copyright (C) 2019 François Gutherz, Resistance.no
2  Released under MIT License, see license.txt for details.
3 */
4 
5 #ifndef _UTILS_HEADER_
6 #define _UTILS_HEADER_
7 #include <string.h>
8 #include <stdlib.h>
9 #ifdef LATTICE
10 #include <exec/types.h>
11 #endif
12 #include "rpage/coroutine.h"
13 
14 #ifndef LATTICE
15 #ifndef BYTE
16 typedef unsigned char BYTE;
17 #endif
18 
19 #ifndef UBYTE
20 typedef unsigned char UBYTE;
21 #endif
22 
23 #ifndef ULONG
24 typedef unsigned long ULONG;
25 #endif
26 
27 #ifndef UWORD
28 typedef unsigned short UWORD;
29 #endif
30 
31 #ifndef BOOL
32 typedef int BOOL;
33 #endif
34 #endif
35 
36 #ifndef TRUE
37 #define TRUE 1
38 #endif
39 
40 #ifndef FALSE
41 #define FALSE 0
42 #endif
43 
44 #ifndef min
45 #define min(x,y) ((x) < (y) ? (x) : (y))
46 #endif
47 
48 #ifndef max
49 #define max(x,y) ((x) > (y) ? (x) : (y))
50 #endif
51 
52 typedef struct
53 {
54  short x, y;
55 } vec2;
56 
57 typedef struct
58 {
59  int x, y;
60 } vec2fp;
61 
62 typedef struct
63 {
64  vec2 p0, p1, p2, p3;
65 } poly;
66 
67 typedef struct
68 {
69  short sx, sy, ex, ey;
70 } rect;
71 
72 int range_adjust(int val, int in_lower, int in_upper, int out_lower, int out_upper);
73 int clamp(int x, int in_lower, int in_upper);
76 BOOL point_within_polygon(vec2 *pt, vec2 *pt_list, unsigned short n_pt);
77 char* citoa(int num, char* str, int base);
78 short str_find_delimiter(short start, char *str);
79 int qsqr(int i);
80 #endif
short sy
Definition: utils.h:69
short y
Definition: utils.h:54
Definition: utils.h:52
BOOL point_within_rect(vec2 *pt, rect *r)
Definition: utils.c:108
short str_find_delimiter(short start, char *str)
Definition: utils.c:30
int y
Definition: utils.h:59
int BOOL
Definition: utils.h:32
unsigned char UBYTE
Definition: utils.h:20
BOOL point_within_quad(vec2 *pt, poly *pl)
Definition: utils.c:117
int qsqr(int i)
Definition: utils.c:12
unsigned short UWORD
Definition: utils.h:28
Definition: utils.h:57
char * citoa(int num, char *str, int base)
Definition: utils.c:57
Definition: utils.h:67
vec2 p3
Definition: utils.h:64
BOOL point_within_polygon(vec2 *pt, vec2 *pt_list, unsigned short n_pt)
Definition: utils.c:135
unsigned char BYTE
Definition: utils.h:16
unsigned long ULONG
Definition: utils.h:24
Definition: utils.h:62
int range_adjust(int val, int in_lower, int in_upper, int out_lower, int out_upper)
Definition: utils.c:98
int clamp(int x, int in_lower, int in_upper)
Definition: utils.c:104