1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- // Copyright (c) Athena Dev Teams - Licensed under GNU GPL
- // For more information, see LICENCE in the main folder
- #ifndef _CHAR_H_
- #define _CHAR_H_
- #include "../common/core.h" // CORE_ST_LAST
- #include "../common/mmo.h"
- #ifndef TXT_SQL_CONVERT
- enum E_CHARSERVER_ST
- {
- CHARSERVER_ST_RUNNING = CORE_ST_LAST,
- CHARSERVER_ST_SHUTDOWN,
- CHARSERVER_ST_LAST
- };
- #endif
- #define MAX_MAP_SERVERS 30
- #define DEFAULT_AUTOSAVE_INTERVAL 300*1000
- struct character_data {
- struct mmo_charstatus status;
- int global_num;
- struct global_reg global[GLOBAL_REG_NUM];
- };
- struct mmo_charstatus* search_character(int aid, int cid);
- struct mmo_charstatus* search_character_byname(char* character_name);
- int search_character_index(char* character_name);
- char* search_character_name(int index);
- int search_character_online(int aid, int cid);
- int mapif_sendall(unsigned char *buf, unsigned int len);
- int mapif_sendallwos(int fd,unsigned char *buf, unsigned int len);
- int mapif_send(int fd,unsigned char *buf, unsigned int len);
- int char_married(int pl1,int pl2);
- int char_child(int parent_id, int child_id);
- int char_family(int cid1, int cid2, int cid3);
- int char_log(char *fmt, ...);
- int request_accreg2(int account_id, int char_id);
- int char_parse_Registry(int account_id, int char_id, unsigned char *buf, int len);
- int save_accreg2(unsigned char *buf, int len);
- int char_account_reg_reply(int fd,int account_id,int char_id);
- extern int char_name_option;
- extern char char_name_letters[];
- extern int autosave_interval;
- extern char db_path[];
- extern int guild_exp_rate;
- extern int log_inter;
- //Exported for use in the TXT-SQL converter.
- extern char char_txt[];
- int char_config_read(const char *cfgName);
- int mmo_char_fromstr(char *str, struct mmo_charstatus *p, struct global_reg *reg, int *reg_num);
- int parse_friend_txt(struct mmo_charstatus *p);
- #endif /* _CHAR_H_ */
|