Nilorea Library
C utilities for networking, threading, graphics
Loading...
Searching...
No Matches
nilorea.h
Go to the documentation of this file.
1/*
2 * Nilorea Library
3 * Copyright (C) 2005-2026 Castagnier Mickael
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14 * implied. See the License for the specific language governing
15 * permissions and limitations under the License.
16 *
17 * SPDX-License-Identifier: Apache-2.0
18 */
19
28#ifndef __NILOREA_Unified_Library__
29
30#define __NILOREA_Unified_Library__
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36#include <nilorea/n_3d.h>
38#include <nilorea/n_common.h>
39#include <nilorea/n_log.h>
40#include <nilorea/n_list.h>
43#include <nilorea/n_hash.h>
44#include <nilorea/n_network.h>
46#include <nilorea/n_reactor.h>
47#include <nilorea/n_nodup_log.h>
48#include <nilorea/n_pcre.h>
49#include <nilorea/n_pretty.h>
50#include <nilorea/n_signals.h>
51#include <nilorea/n_stack.h>
52#include <nilorea/n_str.h>
54#include <nilorea/n_time.h>
55#include <nilorea/n_user.h>
56#include <nilorea/n_zlib.h>
57#include <nilorea/n_games.h>
59#include <nilorea/n_astar.h>
60
61#ifdef HAVE_KAFKA
62#include <nilorea/n_kafka.h>
63#endif
64
65#ifdef HAVE_LIBGIT2
66#include <nilorea/n_git.h>
67#endif
68
69#ifdef HAVE_ALLEGRO
70#include <nilorea/n_anim.h>
71#include <nilorea/n_gui.h>
72#include <nilorea/n_particles.h>
74#endif
75
76#ifdef __cplusplus
77}
78#endif
79
80#endif /*#ifndef __NILOREA_Unified_Library__*/
Simple 3D movement simulation.
Animations graphics and animations parameters.
A* Pathfinding API for 2D and 3D grids.
Common headers and low-level functions & define.
Config file reading and writing.
Dead Reckoning API for latency hiding in networked games.
Exception management for C.
Games helpers functions.
libgit2 wrapper for Git repository operations
GUI system: buttons, sliders, text areas, checkboxes, scrollbars, dropdown menus, windows.
Hash functions and table.
Isometric/axonometric tile engine with height maps, terrain transitions, and A* pathfinding integrati...
Kafka generic produce and consume event header.
List structures and definitions.
Generic log system.
Network Engine.
Network messages , serialization tools.
Generic No Dup Log system.
Particles management.
PCRE helpers for regex matching.
Lexical pretty-printers for JSON, XML/HTML and JavaScript text.
Single-threaded epoll reactor for n_network connections.
Signals general handling with stack printing, from https://gist.github.com/jvranish/4441299.
Stack header definitions.
N_STR and string function declaration.
Thread pool declaration.
Timing utilities.
Trajectory interpolation and dead reckoning for 2D/3D networked simulations.
USERS handling for tiny game apps.
ZLIB compression handler.