R-PAGE
Resistance's Portable-Adventure-Game-Engine
Data Structures | Macros | Typedefs | Functions
utils.h File Reference
#include <string.h>
#include <stdlib.h>
#include "rpage/coroutine.h"

Go to the source code of this file.

Data Structures

struct  vec2
 
struct  vec2fp
 
struct  poly
 
struct  rect
 

Macros

#define TRUE   1
 
#define FALSE   0
 
#define min(x, y)   ((x) < (y) ? (x) : (y))
 
#define max(x, y)   ((x) > (y) ? (x) : (y))
 

Typedefs

typedef unsigned char BYTE
 
typedef unsigned char UBYTE
 
typedef unsigned long ULONG
 
typedef unsigned short UWORD
 
typedef int BOOL
 

Functions

int range_adjust (int val, int in_lower, int in_upper, int out_lower, int out_upper)
 
int clamp (int x, int in_lower, int in_upper)
 
BOOL point_within_rect (vec2 *pt, rect *r)
 
BOOL point_within_quad (vec2 *pt, poly *pl)
 
BOOL point_within_polygon (vec2 *pt, vec2 *pt_list, unsigned short n_pt)
 
char * citoa (int num, char *str, int base)
 
short str_find_delimiter (short start, char *str)
 
int qsqr (int i)
 

Macro Definition Documentation

#define FALSE   0

Definition at line 41 of file utils.h.

#define max (   x,
 
)    ((x) > (y) ? (x) : (y))

Definition at line 49 of file utils.h.

#define min (   x,
 
)    ((x) < (y) ? (x) : (y))

Definition at line 45 of file utils.h.

#define TRUE   1

Definition at line 37 of file utils.h.

Typedef Documentation

typedef int BOOL

Definition at line 32 of file utils.h.

typedef unsigned char BYTE

Definition at line 16 of file utils.h.

typedef unsigned char UBYTE

Definition at line 20 of file utils.h.

typedef unsigned long ULONG

Definition at line 24 of file utils.h.

typedef unsigned short UWORD

Definition at line 28 of file utils.h.

Function Documentation

char* citoa ( int  num,
char *  str,
int  base 
)

Definition at line 57 of file utils.c.

int clamp ( int  x,
int  in_lower,
int  in_upper 
)

Definition at line 104 of file utils.c.

BOOL point_within_polygon ( vec2 pt,
vec2 pt_list,
unsigned short  n_pt 
)

Definition at line 135 of file utils.c.

BOOL point_within_quad ( vec2 pt,
poly pl 
)

Definition at line 117 of file utils.c.

BOOL point_within_rect ( vec2 pt,
rect r 
)

Definition at line 108 of file utils.c.

int qsqr ( int  i)

Definition at line 12 of file utils.c.

int range_adjust ( int  val,
int  in_lower,
int  in_upper,
int  out_lower,
int  out_upper 
)

Definition at line 98 of file utils.c.

short str_find_delimiter ( short  start,
char *  str 
)

Definition at line 30 of file utils.c.