ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/c_move.C
Revision: 1.3
Committed: Sun Sep 10 15:59:57 2006 UTC (17 years, 9 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.2: +48 -35 lines
Log Message:
indent

File Contents

# User Rev Content
1 root 1.3
2 elmex 1.1 /*
3     * static char *rcsid_c_move_c =
4 root 1.3 * "$Id: c_move.C,v 1.2 2006-08-29 08:01:37 root Exp $";
5 elmex 1.1 */
6    
7     /*
8     CrossFire, A Multiplayer game for X-windows
9    
10     Copyright (C) 2002 Mark Wedel & Crossfire Development Team
11     Copyright (C) 1992 Frank Tore Johansen
12    
13     This program is free software; you can redistribute it and/or modify
14     it under the terms of the GNU General Public License as published by
15     the Free Software Foundation; either version 2 of the License, or
16     (at your option) any later version.
17    
18     This program is distributed in the hope that it will be useful,
19     but WITHOUT ANY WARRANTY; without even the implied warranty of
20     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21     GNU General Public License for more details.
22    
23     You should have received a copy of the GNU General Public License
24     along with this program; if not, write to the Free Software
25     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26    
27     The author can be reached via e-mail to crossfire-devel@real-time.com
28     */
29    
30     #include <global.h>
31     #ifndef __CEXTRACT__
32 root 1.3 # include <sproto.h>
33 elmex 1.1 #endif
34     #include <skills.h>
35    
36 root 1.3 static int
37     move_internal (object *op, char *params, int dir)
38 elmex 1.1 {
39 root 1.3 if (params)
40     {
41     if (params[0] == 'f')
42     {
43     if (!op->contr->fire_on)
44     {
45     op->contr->fire_on = 1;
46     move_player (op, dir);
47     op->contr->fire_on = 0;
48     return 0;
49     }
50     }
51     else if (params[0] == 'r' && !op->contr->run_on)
52     op->contr->run_on = 1;
53     }
54     move_player (op, dir);
55 elmex 1.1 return 0;
56     }
57    
58 root 1.3 int
59     command_east (object *op, char *params)
60 elmex 1.1 {
61 root 1.3 return move_internal (op, params, 3);
62 elmex 1.1 }
63    
64 root 1.3 int
65     command_north (object *op, char *params)
66 elmex 1.1 {
67 root 1.3 return move_internal (op, params, 1);
68 elmex 1.1 }
69    
70 root 1.3 int
71     command_northeast (object *op, char *params)
72 elmex 1.1 {
73 root 1.3 return move_internal (op, params, 2);
74 elmex 1.1 }
75    
76 root 1.3 int
77     command_northwest (object *op, char *params)
78 elmex 1.1 {
79 root 1.3 return move_internal (op, params, 8);
80 elmex 1.1 }
81    
82 root 1.3 int
83     command_south (object *op, char *params)
84 elmex 1.1 {
85 root 1.3 return move_internal (op, params, 5);
86 elmex 1.1 }
87    
88 root 1.3 int
89     command_southeast (object *op, char *params)
90 elmex 1.1 {
91 root 1.3 return move_internal (op, params, 4);
92 elmex 1.1 }
93    
94 root 1.3 int
95     command_southwest (object *op, char *params)
96 elmex 1.1 {
97 root 1.3 return move_internal (op, params, 6);
98 elmex 1.1 }
99    
100 root 1.3 int
101     command_west (object *op, char *params)
102 elmex 1.1 {
103 root 1.3 return move_internal (op, params, 7);
104 elmex 1.1 }
105    
106 root 1.3 int
107     command_stay (object *op, char *params)
108 elmex 1.1 {
109     if (!op->contr->fire_on && (!params || params[0] != 'f'))
110     return 0;
111 root 1.3 fire (op, 0);
112 elmex 1.1 return 0;
113     }