mirror of
https://github.com/tbamud/tbamud.git
synced 2026-02-19 18:11:45 +01:00
Setting up 3.5.0 as trunk
This commit is contained in:
64
src/genolc.h
Normal file
64
src/genolc.h
Normal file
@@ -0,0 +1,64 @@
|
||||
/************************************************************************
|
||||
* Generic OLC Library - General / genolc.h v1.0 *
|
||||
* Original author: Levork *
|
||||
* Copyright 1996 by Harvey Gilpin *
|
||||
* Copyright 1997-2001 by George Greer (greerga@circlemud.org) *
|
||||
************************************************************************/
|
||||
|
||||
#if !defined(_CIRCLEMUD) || !defined(CIRCLEMUD_VERSION)
|
||||
# error "This version of GenOLC only supports CircleMUD 3.0 bpl15 or later."
|
||||
#else
|
||||
# if _CIRCLEMUD < CIRCLEMUD_VERSION(3,0,15)
|
||||
# error "This version of GenOLC only supports CircleMUD 3.0 bpl15 or later."
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#define STRING_TERMINATOR '~'
|
||||
|
||||
#define CONFIG_GENOLC_MOBPROG 0
|
||||
|
||||
/* from modify.c */
|
||||
void smash_tilde(char *str);
|
||||
|
||||
int genolc_checkstring(struct descriptor_data *d, char *arg);
|
||||
int remove_from_save_list(zone_vnum, int type);
|
||||
int add_to_save_list(zone_vnum, int type);
|
||||
int in_save_list(zone_vnum, int type);
|
||||
void strip_cr(char *);
|
||||
void do_show_save_list(struct char_data *);
|
||||
int save_all(void);
|
||||
char *str_udup(const char *);
|
||||
void copy_ex_descriptions(struct extra_descr_data **to, struct extra_descr_data *from);
|
||||
void free_ex_descriptions(struct extra_descr_data *head);
|
||||
int sprintascii(char *out, bitvector_t bits);
|
||||
|
||||
struct save_list_data {
|
||||
int zone;
|
||||
int type;
|
||||
struct save_list_data *next;
|
||||
};
|
||||
|
||||
extern struct save_list_data *save_list;
|
||||
extern int top_shop_offset;
|
||||
|
||||
/* save_list_data.type */
|
||||
#define SL_MOB 0
|
||||
#define SL_OBJ 1
|
||||
#define SL_SHP 2
|
||||
#define SL_WLD 3
|
||||
#define SL_ZON 4
|
||||
#define SL_CFG 5
|
||||
#define SL_ACT 6
|
||||
#define SL_MAX 6
|
||||
|
||||
#ifndef STOCK_CIRCLE
|
||||
#define SL_ACTION 100 /* must be above MAX */
|
||||
#endif
|
||||
|
||||
#define ZCMD(zon, cmds) zone_table[(zon)].cmd[(cmds)]
|
||||
|
||||
#define LIMIT(var, low, high) MIN(high, MAX(var, low))
|
||||
|
||||
room_vnum genolc_zone_bottom(zone_rnum rznum);
|
||||
room_vnum genolc_zonep_bottom(struct zone_data *zone);
|
||||
|
||||
Reference in New Issue
Block a user