ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/sockproto.h
Revision: 1.45
Committed: Tue Jan 3 11:25:32 2012 UTC (12 years, 4 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.44: +1 -1 lines
Log Message:
update copyrights to 2012

File Contents

# User Rev Content
1 root 1.29 /*
2 root 1.35 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 root 1.29 *
4 root 1.45 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 root 1.29 *
6 root 1.39 * Deliantra is free software: you can redistribute it and/or modify it under
7     * the terms of the Affero GNU General Public License as published by the
8     * Free Software Foundation, either version 3 of the License, or (at your
9     * option) any later version.
10 root 1.29 *
11 root 1.32 * This program is distributed in the hope that it will be useful,
12     * but WITHOUT ANY WARRANTY; without even the implied warranty of
13     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14     * GNU General Public License for more details.
15 root 1.29 *
16 root 1.39 * You should have received a copy of the Affero GNU General Public License
17     * and the GNU General Public License along with this program. If not, see
18     * <http://www.gnu.org/licenses/>.
19 root 1.29 *
20 root 1.35 * The authors can be reached via e-mail to <support@deliantra.net>
21 root 1.29 */
22    
23 root 1.1 /* image.c */
24     int is_valid_faceset(int fsn);
25 root 1.41 void free_socket_images();
26     void read_client_images();
27 root 1.19 void SetFaceMode(char *buf, int len, client *ns);
28 root 1.24 void AskFaceCmd(char *buf, int len, client *ns);
29 root 1.19 void send_image_info(client *ns, char *params);
30     void send_image_sums(client *ns, char *params);
31 root 1.1 /* info.c */
32 root 1.2 void new_draw_info(int flags, int pri, const object *pl, const char *buf);
33     void new_draw_info_format(int flags, int pri, const object *pl, const char *format, ...);
34 root 1.7 void new_info_map_except(int color, maptile *map, object *op, const char *str);
35     void new_info_map(int color, maptile *map, const char *str);
36 root 1.1 void set_title(object *pl, char *buf);
37     void draw_magic_map(object *pl);
38     /* init.c */
39 root 1.41 void init_ericserver();
40     void free_all_newserver();
41 root 1.1 void final_free_player(player *pl);
42     /* item.c */
43 root 1.30 void esrv_draw_look(player *pl);
44 root 1.1 void esrv_send_inventory(object *pl, object *op);
45     void esrv_update_item(int flags, object *pl, object *op);
46     void esrv_send_item(object *pl, object *op);
47     void esrv_del_item(player *pl, int tag);
48     void ExamineCmd(char *buf, int len, player *pl);
49 root 1.26 void ExCmd(char *buf, int len, player *pl);
50 root 1.1 void ApplyCmd(char *buf, int len, player *pl);
51 root 1.18 void LockItem(char *data, int len, player *pl);
52     void MarkItem(char *data, int len, player *pl);
53 root 1.1 void LookAt(char *buf, int len, player *pl);
54     void esrv_move_object(object *pl, tag_t to, tag_t tag, long nrof);
55     /* loop.c */
56 root 1.19 void RequestInfo(char *buf, int len, client *ns);
57 root 1.41 void watchdog();
58 root 1.1 /* lowlevel.c */
59 root 1.41 void write_cs_stats();
60 root 1.1 /* request.c */
61 root 1.19 void SetUp(char *buf, int len, client *ns);
62     void AddMeCmd(char *buf, int len, client *ns);
63     void ToggleExtendedInfos(char *buf, int len, client *ns);
64     void AskSmooth(char *buf, int len, client *ns);
65 root 1.1 void PlayerCmd(char *buf, int len, player *pl);
66 root 1.18 void NewPlayerCmd(char *buf, int len, player *pl);
67 root 1.22 void ReplyCmd(char *buf, int len, client *ns);
68 root 1.19 void VersionCmd(char *buf, int len, client *ns);
69     void SetSound(char *buf, int len, client *ns);
70 root 1.1 void MapRedrawCmd(char *buff, int len, player *pl);
71 root 1.4 void ExtCmd(char *buff, int len, player *pl);
72 root 1.21 void ExtiCmd(char *buff, int len, client *ns);
73 root 1.2 void MapInfoCmd(char *buff, int len, player *pl);
74 root 1.1 void MoveCmd(char *buf, int len, player *pl);
75 root 1.25 void send_query(client *ns, uint8 flags, const char *text);
76 root 1.1 void esrv_update_stats(player *pl);
77 root 1.36 void esrv_new_player(player *pl);
78 root 1.19 int getExtendedMapInfoSize(client *ns);
79 root 1.30 void draw_client_map(player *pl);
80 root 1.1 void esrv_update_spells(player *pl);
81     void esrv_remove_spell(player *pl, object *spell);
82     void esrv_add_spells(player *pl, object *spell);