ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/plugin.h
(Generate patch)

Comparing deliantra/server/include/plugin.h (file contents):
Revision 1.10 by elmex, Mon Aug 14 04:22:04 2006 UTC vs.
Revision 1.15 by pippijn, Mon Dec 11 19:46:46 2006 UTC

11#define PLUGIN_H_ 11#define PLUGIN_H_
12 12
13/*****************************************************************************/ 13/*****************************************************************************/
14/* This one does not exist under Win32. */ 14/* This one does not exist under Win32. */
15/*****************************************************************************/ 15/*****************************************************************************/
16#ifndef WIN32
17#include <dlfcn.h> 16#include <dlfcn.h>
18#endif
19 17
20#undef MODULEAPI
21#ifdef WIN32
22#ifdef PYTHON_PLUGIN_EXPORTS
23#define MODULEAPI __declspec(dllexport)
24#else
25#define MODULEAPI __declspec(dllimport)
26#endif
27#else
28#define MODULEAPI 18#define MODULEAPI
29#endif
30 19
31#include <global.h> 20#include <global.h>
32#include <object.h> 21#include <object.h>
33 22
34#ifdef HAVE_TIME_H 23#ifdef HAVE_TIME_H
39 28
40 29
41/*****************************************************************************/ 30/*****************************************************************************/
42/* This one does not exist under Win32. */ 31/* This one does not exist under Win32. */
43/*****************************************************************************/ 32/*****************************************************************************/
44#ifndef WIN32
45#include <dirent.h> 33#include <dirent.h>
46#endif
47
48/*****************************************************************************/
49/* Event ID codes. I sorted them to present local events first, but it is */
50/* just a 'cosmetic' thing. */
51/*****************************************************************************/
52/*****************************************************************************/
53/* Local events. Those are always linked to a specific object. */
54/*****************************************************************************/
55// how about making this an enum
56#define EVENT_NONE 0 /* No event. This exists only to reserve the "0". */
57#define EVENT_APPLY 1 /* Object applied-unapplied. */
58#define EVENT_ATTACK 2 /* Monster attacked or Scripted Weapon used. */
59#define EVENT_DEATH 3 /* Player or monster dead. */
60#define EVENT_DROP 4 /* Object dropped on the floor. */
61#define EVENT_PICKUP 5 /* Object picked up. */
62#define EVENT_SAY 6 /* Someone speaks. */
63#define EVENT_STOP 7 /* Thrown object stopped. */
64#define EVENT_TIME 8 /* Triggered each time the object can react/move. */
65#define EVENT_THROW 9 /* Object is thrown. */
66#define EVENT_TRIGGER 10 /* Button pushed, lever pulled, etc. */
67#define EVENT_CLOSE 11 /* Container closed. */
68#define EVENT_TIMER 12 /* Timer connected triggered it. */
69#define EVENT_MOVE 28 /* Monster move */
70/*****************************************************************************/
71/* Global events. Those are never linked to a specific object. */
72/*****************************************************************************/
73#define EVENT_BORN 13 /* A new character has been created. */
74#define EVENT_CLOCK 14 /* Global time event. */
75#define EVENT_CRASH 15 /* Triggered when the server crashes. Not recursive*/
76#define EVENT_PLAYER_DEATH 16 /* Global Death event */
77#define EVENT_GKILL 17 /* Triggered when anything got killed by anyone. */
78#define EVENT_LOGIN 18 /* Player login. */
79#define EVENT_LOGOUT 19 /* Player logout. */
80#define EVENT_MAPENTER 20 /* A player entered a map. */
81#define EVENT_MAPLEAVE 21 /* A player left a map. */
82#define EVENT_MAPRESET 22 /* A map is resetting. */
83#define EVENT_REMOVE 23 /* A Player character has been removed. */
84#define EVENT_SHOUT 24 /* A player 'shout' something. */
85#define EVENT_TELL 25 /* A player 'tell' something. */
86#define EVENT_MUZZLE 26 /* A player was Muzzled (no_shout set). */
87#define EVENT_KICK 27 /* A player was Kicked by a DM */
88#define EVENT_FREE_OB 29 /* Object destroyed */
89#define EVENT_MAPLOAD 30 /* Original map has been loaded */
90#define EVENT_MAPOUT 31 /* Map has been swapped out */
91#define EVENT_MAPIN 32 /* Temporary map has been swapped in */
92#define EVENT_MAPCLEAN 33 /* Temporary map will be deleted */
93#define EVENT_PLAYER_LOAD 34 /* Player was just loaded from disk */
94#define EVENT_PLAYER_SAVE 35 /* Player was just saved to disk */
95#define EVENT_PLAYER_USE_SKILL 36 /* player was just trying to use a skill */
96#define EVENT_MONSTER_USE_SKILL 37 /* monster was just trying to use a skill*/
97#define EVENT_FIND_UNARMED_SKILL 38 /* lets a plugin find the unarmed skill */
98#define EVENT_EXTCMD 39 /* Low-Level socket command */
99#define EVENT_CAST_SPELL 40 /* Something successfully casted a spell */
100#define EVENT_DROP_ON 41 /* Something was dropped on this (floor) */
101/* should add FREE_MAP, FREE_PLAYER */
102 34
103#define NR_EVENTS 42 35#define NR_EVENTS 42
104 36
105#include <stdarg.h> 37#include <stdarg.h>
106 38
122 54
123typedef void* (*f_plug_api) (int* type, ...); 55typedef void* (*f_plug_api) (int* type, ...);
124typedef int (*f_plug_postinit) (void); 56typedef int (*f_plug_postinit) (void);
125typedef int (*f_plug_init)(const char* iversion, f_plug_api gethooksptr); 57typedef int (*f_plug_init)(const char* iversion, f_plug_api gethooksptr);
126 58
127#ifndef WIN32
128#define LIBPTRTYPE void* 59#define LIBPTRTYPE void*
129#else
130#define LIBPTRTYPE HMODULE
131#endif
132 60
133typedef struct _crossfire_plugin 61typedef struct _crossfire_plugin
134{ 62{
135 f_plug_api eventfunc; /* Event Handler function */ 63 f_plug_api eventfunc; /* Event Handler function */
136 f_plug_api propfunc; /* Plugin getProperty function */ 64 f_plug_api propfunc; /* Plugin getProperty function */
144} crossfire_plugin; 72} crossfire_plugin;
145 73
146extern int plugin_number; 74extern int plugin_number;
147extern crossfire_plugin* plugins_list; 75extern crossfire_plugin* plugins_list;
148 76
149#ifdef WIN32
150
151#define plugins_dlopen(fname) LoadLibrary(fname)
152#define plugins_dlclose(lib) FreeLibrary(lib)
153#define plugins_dlsym(lib,name) GetProcAddress(lib,name)
154
155#else /*WIN32 */
156
157#define plugins_dlopen(fname) dlopen(fname,RTLD_NOW|RTLD_GLOBAL) 77#define plugins_dlopen(fname) dlopen(fname,RTLD_NOW|RTLD_GLOBAL)
158#define plugins_dlclose(lib) dlclose(lib) 78#define plugins_dlclose(lib) dlclose(lib)
159#define plugins_dlsym(lib,name) dlsym(lib,name) 79#define plugins_dlsym(lib,name) dlsym(lib,name)
160#define plugins_dlerror() dlerror() 80#define plugins_dlerror() dlerror()
161#endif /* WIN32 */
162 81
163 82
164/* OBJECT-RELATED HOOKS */ 83/* OBJECT-RELATED HOOKS */
165 84
166#define CFAPI_OBJECT_PROP_OB_ABOVE 1 85#define CFAPI_OBJECT_PROP_OB_ABOVE 1

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines