96 lines
3.5 KiB
C++
96 lines
3.5 KiB
C++
// Copyright (c) rAthena Dev Teams - Licensed under GNU GPL
|
|
// For more information, see LICENCE in the main folder
|
|
|
|
#ifndef CHRIF_HPP
|
|
#define CHRIF_HPP
|
|
|
|
#include <time.h>
|
|
|
|
#include "../common/cbasetypes.hpp"
|
|
#include "../common/timer.hpp" // t_tick
|
|
#include "../common/socket.hpp" // enum chrif_req_op
|
|
|
|
//fwd declaration
|
|
struct map_session_data;
|
|
|
|
enum sd_state { ST_LOGIN, ST_LOGOUT, ST_MAPCHANGE };
|
|
|
|
enum e_chrif_save_opt {
|
|
CSAVE_NORMAL = 0x00, /// Normal
|
|
CSAVE_QUIT = 0x01, /// Character quitting
|
|
CSAVE_CHANGE_MAPSERV = 0x02, /// Character changing map server
|
|
CSAVE_AUTOTRADE = 0x04, /// Character entering autotrade state
|
|
CSAVE_INVENTORY = 0x08, /// Inventory data changed
|
|
CSAVE_CART = 0x10, /// Cart data changed
|
|
CSAVE_QUITTING = CSAVE_QUIT|CSAVE_CHANGE_MAPSERV|CSAVE_AUTOTRADE,
|
|
};
|
|
|
|
struct auth_node {
|
|
uint32 account_id, char_id;
|
|
int login_id1, login_id2, sex, fd;
|
|
time_t expiration_time; // # of seconds 1/1/1970 (timestamp): Validity limit of the account (0 = unlimited)
|
|
struct map_session_data *sd; //Data from logged on char.
|
|
struct mmo_charstatus *char_dat; //Data from char server.
|
|
t_tick node_created; //timestamp for node timeouts
|
|
enum sd_state state; //To track whether player was login in/out or changing maps.
|
|
};
|
|
|
|
void chrif_setuserid(char* id);
|
|
void chrif_setpasswd(char* pwd);
|
|
void chrif_checkdefaultlogin(void);
|
|
int chrif_setip(const char* ip);
|
|
void chrif_setport(uint16 port);
|
|
|
|
int chrif_isconnected(void);
|
|
void chrif_check_shutdown(void);
|
|
|
|
extern int chrif_connected;
|
|
extern int other_mapserver_count;
|
|
|
|
struct auth_node* chrif_search(uint32 account_id);
|
|
struct auth_node* chrif_auth_check(uint32 account_id, uint32 char_id, enum sd_state state);
|
|
bool chrif_auth_delete(uint32 account_id, uint32 char_id, enum sd_state state);
|
|
bool chrif_auth_finished(struct map_session_data* sd);
|
|
|
|
void chrif_authreq(struct map_session_data* sd, bool autotrade);
|
|
void chrif_authok(int fd);
|
|
int chrif_scdata_request(uint32 account_id, uint32 char_id);
|
|
int chrif_skillcooldown_request(uint32 account_id, uint32 char_id);
|
|
int chrif_skillcooldown_save(struct map_session_data *sd);
|
|
int chrif_skillcooldown_load(int fd);
|
|
|
|
int chrif_save(struct map_session_data* sd, int flag);
|
|
int chrif_charselectreq(struct map_session_data* sd, uint32 s_ip);
|
|
int chrif_changemapserver(struct map_session_data* sd, uint32 ip, uint16 port);
|
|
|
|
int chrif_searchcharid(uint32 char_id);
|
|
int chrif_changeemail(int id, const char *actual_email, const char *new_email);
|
|
int chrif_req_login_operation(int aid, const char* character_name, enum chrif_req_op operation_type, int32 timediff, int val1, int val2);
|
|
int chrif_updatefamelist(struct map_session_data *sd);
|
|
int chrif_buildfamelist(void);
|
|
int chrif_save_scdata(struct map_session_data *sd);
|
|
int chrif_char_offline(struct map_session_data *sd);
|
|
int chrif_char_offline_nsd(uint32 account_id, uint32 char_id);
|
|
int chrif_char_reset_offline(void);
|
|
int send_users_tochar(void);
|
|
int chrif_char_online(struct map_session_data *sd);
|
|
int chrif_changesex(struct map_session_data *sd, bool change_account);
|
|
int chrif_divorce(int partner_id1, int partner_id2);
|
|
|
|
int chrif_removefriend(uint32 char_id, int friend_id);
|
|
|
|
void chrif_parse_ack_vipActive(int fd);
|
|
|
|
int chrif_req_charban(int aid, const char* character_name, int32 timediff);
|
|
int chrif_req_charunban(int aid, const char* character_name);
|
|
|
|
int chrif_bsdata_request(uint32 char_id);
|
|
int chrif_bsdata_save(struct map_session_data *sd, bool quit);
|
|
|
|
void do_final_chrif(void);
|
|
void do_init_chrif(void);
|
|
|
|
int chrif_flush_fifo(void);
|
|
|
|
#endif /* CHRIF_HPP */
|