ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/sockproto.h
Revision: 1.44
Committed: Sat Apr 23 04:56:50 2011 UTC (13 years, 1 month ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.43: +1 -1 lines
Log Message:
update copyright to 2011

File Contents

# Content
1 /*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 *
4 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 *
6 * 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 *
11 * 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 *
16 * 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 *
20 * The authors can be reached via e-mail to <support@deliantra.net>
21 */
22
23 /* image.c */
24 int is_valid_faceset(int fsn);
25 void free_socket_images();
26 void read_client_images();
27 void SetFaceMode(char *buf, int len, client *ns);
28 void AskFaceCmd(char *buf, int len, client *ns);
29 void send_image_info(client *ns, char *params);
30 void send_image_sums(client *ns, char *params);
31 /* info.c */
32 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 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 void set_title(object *pl, char *buf);
37 void draw_magic_map(object *pl);
38 /* init.c */
39 void init_ericserver();
40 void free_all_newserver();
41 void final_free_player(player *pl);
42 /* item.c */
43 void esrv_draw_look(player *pl);
44 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 void ExCmd(char *buf, int len, player *pl);
50 void ApplyCmd(char *buf, int len, player *pl);
51 void LockItem(char *data, int len, player *pl);
52 void MarkItem(char *data, int len, player *pl);
53 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 void RequestInfo(char *buf, int len, client *ns);
57 void watchdog();
58 /* lowlevel.c */
59 void write_cs_stats();
60 /* request.c */
61 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 void PlayerCmd(char *buf, int len, player *pl);
66 void NewPlayerCmd(char *buf, int len, player *pl);
67 void ReplyCmd(char *buf, int len, client *ns);
68 void VersionCmd(char *buf, int len, client *ns);
69 void SetSound(char *buf, int len, client *ns);
70 void MapRedrawCmd(char *buff, int len, player *pl);
71 void ExtCmd(char *buff, int len, player *pl);
72 void ExtiCmd(char *buff, int len, client *ns);
73 void MapInfoCmd(char *buff, int len, player *pl);
74 void MoveCmd(char *buf, int len, player *pl);
75 void send_query(client *ns, uint8 flags, const char *text);
76 void esrv_update_stats(player *pl);
77 void esrv_new_player(player *pl);
78 int getExtendedMapInfoSize(client *ns);
79 void draw_client_map(player *pl);
80 void esrv_update_spells(player *pl);
81 void esrv_remove_spell(player *pl, object *spell);
82 void esrv_add_spells(player *pl, object *spell);