blob: 72f956e1dafae8b4b216a6fb14334808d147eb14 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// See the LICENSE file
// Portions Copyright (c) Athena Dev Teams
#ifndef _COMMON_CORE_H_
#define _COMMON_CORE_H_
#include "../common/db.h"
#include "../common/mmo.h"
#include "../config/core.h"
/* so that developers with --enable-debug can raise signals from any section of the code they'd like */
#ifdef DEBUG
#include <signal.h>
#endif
extern int arg_c;
extern char **arg_v;
#define HERC_UNKNOWN_VER '\x02'
/// @see E_CORE_ST
extern int runflag;
extern char *SERVER_NAME;
enum server_types {
SERVER_TYPE_UNKNOWN = 0x0,
SERVER_TYPE_LOGIN = 0x1,
SERVER_TYPE_CHAR = 0x2,
SERVER_TYPE_MAP = 0x4,
};
enum server_types SERVER_TYPE;
const char *get_svn_revision(void);
const char *get_git_hash (void);
extern int do_init(int,char**);
extern void set_server_type(void);
extern void do_abort(void);
extern void do_final(void);
/// The main loop continues until runflag is CORE_ST_STOP
enum E_CORE_ST {
CORE_ST_STOP = 0,
CORE_ST_RUN,
CORE_ST_LAST
};
/// Called when a terminate signal is received. (Ctrl+C pressed)
/// If NULL, runflag is set to CORE_ST_STOP instead.
extern void (*shutdown_callback)(void);
#endif /* _COMMON_CORE_H_ */
|