dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
unilayer.h
Go to the documentation of this file.
1
2#ifndef UNILAYER_H
3#define UNILAYER_H
4
10#ifdef __GNUC__
11# define WARN_UNUSED __attribute__( (warn_unused_result) )
12# ifndef PLATFORM_NDS
13# define UNILAYER_PACKED __attribute__( (__packed__) )
14# else
15# define UNILAYER_PACKED
16# endif /* !PLATFORM_NDS */
17# define INLINE inline
18#elif defined( __WATCOMC__ )
19# define WARN_UNUSED
20# define UNILAYER_PACKED
21# define INLINE
22#else
23# define WARN_UNUSED
24# define UNILAYER_PACKED
25# define INLINE
26#endif /* __GNUC__ */
27
28#if defined( __GNUC__ ) && !defined( _POSIX_C_SOURCE )
29/* For strnlen(). */
30#define _POSIX_C_SOURCE 200809L
31#endif /* __GNUC__ */
32
33#define stringize_internal( inp ) #inp
34
35#define stringize( inp ) stringize_internal( inp )
36
37#if !defined( PLATFORM_GB ) && !defined( PLATFORM_NDS )
38#include <stddef.h>
39#endif /* !PLATFORM_GB && !PLATFORM_NDS */
40
41#ifdef ANCIENT_C
42/* For Microsoft C 5 and company. */
43# include <stdio.h>
44# define DIO_SILENT
45# define NO_VARGS
46# define NO_I86
47# define NO_CGA_FUNCTIONS
48#endif /* ANCIENT_C */
49
50#ifndef RESOURCE_NAME_MAX
54#define RESOURCE_NAME_MAX 10
55#endif /* !RESOURCE_NAME_MAX */
56
57typedef char RESOURCE_NAME[RESOURCE_NAME_MAX];
58
59/* Sets up platform, including calling resinc.h to determine resource system.
60 * It calls it before platform-specific graphics header, but after setting
61 * flags like forcing RESOURCE_FILE, so it can't be pulled out for now.
62 */
63#include "platform.h"
64
65#ifdef PLATFORM_PALM
66#define SECTION_WINDOW __attribute__ ((section( "winfns" )))
67#define SECTION_SETUP __attribute__ ((section( "setfns" )))
68#define SECTION_ASN __attribute__ ((section( "asnfns" )))
69#else
70#define SECTION_WINDOW
71#define SECTION_SETUP
72#define SECTION_ASN
73#endif
74
75/* = Subsystems and Structures = */
76
77#include "config.h"
78#include "uassert.h"
79#include "uprintf.h"
80
81/* = Module Includes = */
82
83#ifndef NO_RESEXT
84#include <resext.h>
85#endif /* !NO_RESEXT */
86
87#include "memory.h"
88#include "resource.h"
89#ifndef RES_CONST
90#define RES_CONST const
91#endif /* !RES_CONST */
92#include "graphics.h"
93#include "animate.h"
94#include "input.h"
95#include "dio.h"
96#ifdef NETWORK_SOCKET
97#include "network.h"
98#endif /* UNILAYER_NETWORK */
99#ifdef RESOURCE_FILE
100#include "json.h"
101#endif /* RESOURCE_FILE */
102#include "asn.h"
103#include "save.h"
104#include "window.h"
105
106#endif /* UNILAYER_H */
107
Tools for making common animations and effects.
Functions and macros for dealing with ASN.1 formatted data.
General abstractions for common stdlib-related tasks.
Platform-general abstractions for graphics.
Functions and prototypes for managing memory.
Contains platform-specific overrides and implementations for engine functionality.
Platform-general function prototypes for loading assets.
Overridable defines to modify Unilayer behavior.
#define RESOURCE_NAME_MAX
Definition: unilayer.h:54
Tools for drawing and interacting with graphical windows on-screen.