Crossfire Server, Trunk  1.75.0
thrown_object.cpp
Go to the documentation of this file.
1 /*
2  CrossFire, A Multiplayer game for X-windows
3 
4  Copyright (C) 2007 Mark Wedel & Crossfire Development Team
5  Copyright (C) 1992 Frank Tore Johansen
6 
7  This program is free software; you can redistribute it and/or modify
8  it under the terms of the GNU General Public License as published by
9  the Free Software Foundation; either version 2 of the License, or
10  (at your option) any later version.
11 
12  This program is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  GNU General Public License for more details.
16 
17  You should have received a copy of the GNU General Public License
18  along with this program; if not, write to the Free Software
19  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 
21  The authors can be reached via e-mail at crossfire-devel@real-time.com
22 */
23 
27 #include <global.h>
28 #include <ob_methods.h>
29 #include <ob_types.h>
30 #include <sounds.h>
31 #include <sproto.h>
32 
33 static method_ret thrown_object_type_process(object *op);
34 
41 }
42 
49  if (op->map == NULL) {
50  LOG(llevError, "BUG: Thrown object had no map.\n");
51  object_remove(op);
53  return METHOD_ERROR;
54  }
55 
56  /* we need to stop thrown objects at some point. Like here. */
57  if (op->type == THROWN_OBJ) {
58  /* If the object that the THROWN_OBJ encapsulates disappears,
59  * we need to have this object go away also - otherwise, you get
60  * left over remnants on the map. Where this currently happens
61  * is if the player throws a bomb - the bomb explodes on its own,
62  * but this object sticks around. We could handle the cleanup in the
63  * bomb code, but there are potential other cases where that could happen,
64  * and it is easy enough to clean it up here.
65  */
66  if (op->inv == NULL) {
67  object_remove(op);
69  return METHOD_OK;
70  }
71  if (op->last_sp-- < 0) {
72  stop_projectile(op);
73  return METHOD_OK;
74  }
75  }
76 
77  return common_process_projectile(op);
78 }
global.h
llevError
@ llevError
Error, serious thing.
Definition: logger.h:11
LOG
void LOG(LogLevel logLevel, const char *format,...)
Logs a message to stderr, or to file.
Definition: logger.cpp:58
object::inv
object * inv
Pointer to the first object in the inventory.
Definition: object.h:298
METHOD_OK
#define METHOD_OK
Definition: ob_methods.h:15
object::map
struct mapstruct * map
Pointer to the map in which this object is present.
Definition: object.h:305
register_move_on
void register_move_on(int ob_type, move_on_func method)
Registers the move_on method for the given type.
Definition: ob_types.cpp:89
common_projectile_move_on
method_ret common_projectile_move_on(object *trap, object *victim, object *originator)
Move on this Thrown Object object.
Definition: projectile.cpp:222
register_process
void register_process(int ob_type, process_func method)
Registers the process method for the given type.
Definition: ob_types.cpp:71
stop_projectile
void stop_projectile(object *op)
Handle an arrow or thrown object stopping.
Definition: projectile.cpp:37
object_free_drop_inventory
void object_free_drop_inventory(object *ob)
Frees everything allocated by an object, removes it from the list of used objects,...
Definition: object.cpp:1545
object::type
uint8_t type
PLAYER, BULLET, etc.
Definition: object.h:348
sproto.h
method_ret
char method_ret
Define some standard return values for callbacks which don't need to return any other results.
Definition: ob_methods.h:14
ob_types.h
sounds.h
object::last_sp
int32_t last_sp
As last_heal, but for spell points.
Definition: object.h:368
common_process_projectile
method_ret common_process_projectile(object *op)
Move an arrow or thrown object along its course.
Definition: projectile.cpp:77
object_remove
void object_remove(object *op)
This function removes the object op from the linked list of objects which it is currently tied to.
Definition: object.cpp:1818
METHOD_ERROR
#define METHOD_ERROR
Definition: ob_methods.h:17
ob_methods.h
thrown_object_type_process
static method_ret thrown_object_type_process(object *op)
Move a thrown object along its course.
Definition: thrown_object.cpp:48
THROWN_OBJ
@ THROWN_OBJ
Definition: object.h:151
init_type_thrown_object
void init_type_thrown_object(void)
Initializer for the THROWN_OBJ object type.
Definition: thrown_object.cpp:38