Crossfire Server, Trunk
treasure.c
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 treasure_type_apply(object *op, object *applier, int aflags);
34 
38 void init_type_treasure(void) {
40 }
41 
50 static method_ret treasure_type_apply(object *op, object *applier, int aflags) {
51  object *treas;
52  tag_t op_tag = op->count, applier_tag = applier->count;
53  char name[MAX_BUF], container_name[MAX_BUF];
54  (void)aflags;
55 
56  if (applier->type == PLAYER) {
57  /* Nice side effect of new treasure creation method is that the
58  * treasure for the chest is done when the chest is created,
59  * and put into the chest inventory. So that when the chest
60  * burns up, the items still exist. Also prevents people from
61  * moving chests to more difficult maps to get better treasure
62  */
63 
64  query_name(op, container_name, MAX_BUF);
65 
66  treas = op->inv;
67  if (treas == NULL) {
69  "The chest was empty.");
71  return METHOD_OK;
72  }
73  while (op->inv) {
74  treas = op->inv;
75 
76  object_remove(treas);
77  /* don't tell the player about invisible objects */
78  if (!treas->invisible) {
79  query_name(treas, name, MAX_BUF);
81  "You find %s in the %s.",
82  name, container_name);
83  }
84 
85  treas = object_insert_in_map_at(treas, applier->map, applier, INS_BELOW_ORIGINATOR, applier->x, applier->y);
86 
87  if (treas
88  && (treas->type == RUNE || treas->type == TRAP)
89  && treas->level && QUERY_FLAG(applier, FLAG_ALIVE))
90  spring_trap(treas, applier);
91  /* If either player or container was destroyed, no need to do
92  * further processing. I think this should be enclused with
93  * spring trap above, as I don't think there is otherwise
94  * any way for the treasure chest or player to get killed
95  */
96  if (object_was_destroyed(applier, applier_tag) || object_was_destroyed(op, op_tag))
97  break;
98  }
99 
100  if (!object_was_destroyed(op, op_tag) && op->inv == NULL)
102  }
103  return METHOD_OK;
104 }
object_was_destroyed
#define object_was_destroyed(op, old_tag)
Definition: object.h:68
PLAYER
@ PLAYER
Definition: object.h:107
global.h
object_remove
void object_remove(object *op)
Definition: object.c:1819
obj::count
tag_t count
Definition: object.h:302
obj::map
struct mapdef * map
Definition: object.h:300
QUERY_FLAG
#define QUERY_FLAG(xyz, p)
Definition: define.h:226
METHOD_OK
#define METHOD_OK
Definition: ob_methods.h:15
TRAP
@ TRAP
Definition: object.h:241
spring_trap
void spring_trap(object *trap, object *victim)
Definition: rune.c:205
obj::invisible
int16_t invisible
Definition: object.h:365
TREASURE
@ TREASURE
Definition: object.h:110
RUNE
@ RUNE
Definition: object.h:240
FLAG_ALIVE
#define FLAG_ALIVE
Definition: define.h:230
object_decrease_nrof_by_one
#define object_decrease_nrof_by_one(xyz)
Definition: compat.h:32
init_type_treasure
void init_type_treasure(void)
Definition: treasure.c:38
MSG_TYPE_APPLY_SUCCESS
#define MSG_TYPE_APPLY_SUCCESS
Definition: newclient.h:603
query_name
void query_name(const object *op, char *buf, size_t size)
Definition: item.c:585
obj::x
int16_t x
Definition: object.h:330
INS_BELOW_ORIGINATOR
#define INS_BELOW_ORIGINATOR
Definition: object.h:570
tag_t
uint32_t tag_t
Definition: object.h:12
sproto.h
nlohmann::detail::void
j template void())
Definition: json.hpp:4099
MAX_BUF
#define MAX_BUF
Definition: define.h:35
obj::y
int16_t y
Definition: object.h:330
register_apply
void register_apply(int ob_type, apply_func method)
Definition: ob_types.c:62
method_ret
char method_ret
Definition: ob_methods.h:14
ob_types.h
sounds.h
obj::type
uint8_t type
Definition: object.h:343
NDI_UNIQUE
#define NDI_UNIQUE
Definition: newclient.h:262
give.op
op
Definition: give.py:33
MSG_TYPE_APPLY_FAILURE
#define MSG_TYPE_APPLY_FAILURE
Definition: newclient.h:604
object_insert_in_map_at
object * object_insert_in_map_at(object *op, mapstruct *m, object *originator, int flag, int x, int y)
Definition: object.c:2080
draw_ext_info
void draw_ext_info(int flags, int pri, const object *pl, uint8_t type, uint8_t subtype, const char *message)
Definition: main.c:309
ob_methods.h
treasure_type_apply
static method_ret treasure_type_apply(object *op, object *applier, int aflags)
Definition: treasure.c:50
MSG_TYPE_APPLY
#define MSG_TYPE_APPLY
Definition: newclient.h:408
draw_ext_info_format
void draw_ext_info_format(int flags, int pri, const object *pl, uint8_t type, uint8_t subtype, const char *format,...)
Definition: main.c:319
obj::level
int16_t level
Definition: object.h:356
give.name
name
Definition: give.py:27