forked from CleverRaven/Cataclysm-DDA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitem_tname_test.cpp
443 lines (357 loc) · 13.9 KB
/
item_tname_test.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
#include "catch/catch.hpp"
#include <memory>
#include <set>
#include <string>
#include "calendar.h"
#include "character.h"
#include "item.h"
#include "itype.h"
#include "options_helpers.h"
#include "type_id.h"
#include "value_ptr.h"
static const std::string flag_COLD( "COLD" );
static const std::string flag_DIAMOND( "DIAMOND" );
static const std::string flag_FILTHY( "FILTHY" );
static const std::string flag_FROZEN( "FROZEN" );
static const std::string flag_HIDDEN_HALLU( "HIDDEN_HALLU" );
static const std::string flag_HIDDEN_POISON( "HIDDEN_POISON" );
static const std::string flag_HOT( "HOT" );
static const std::string flag_MELTS( "MELTS" );
static const std::string flag_WET( "WET" );
static const fault_id fault_gun_dirt( "fault_gun_dirt" );
static const skill_id skill_survival( "survival" );
// Test cases focused on item::tname
// TODO: Add test cases to cover other aspects of tname such as:
//
// - clothing with +1 suffix
// - ethereal (X turns)
// - is_bionic (sterile), (packed)
// - (UPS) for UPS tool
// - (faulty) for faults
// - "burnt" or "badly burnt"
// - (dirty)
// - (rotten)
// - (mushy)
// - (old)
// - (fresh)
// - Radio-mod with signals (Red, Blue, Green)
// - used, lit, plugged in, active, sawn-off
// - favorite *
TEST_CASE( "food with hidden effects", "[item][tname][hidden]" )
{
Character &player_character = get_player_character();
player_character.clear_mutations();
GIVEN( "food with hidden poison" ) {
item coffee = item( "coffee_pod" );
REQUIRE( coffee.is_food() );
REQUIRE( coffee.has_flag( flag_HIDDEN_POISON ) );
WHEN( "avatar has level 2 survival skill" ) {
player_character.set_skill_level( skill_survival, 2 );
REQUIRE( player_character.get_skill_level( skill_survival ) == 2 );
THEN( "they cannot see it is poisonous" ) {
CHECK( coffee.tname() == "Kentucky coffee pod" );
}
}
WHEN( "avatar has level 3 survival skill" ) {
player_character.set_skill_level( skill_survival, 3 );
REQUIRE( player_character.get_skill_level( skill_survival ) == 3 );
THEN( "they see it is poisonous" ) {
CHECK( coffee.tname() == "Kentucky coffee pod (poisonous)" );
}
}
}
GIVEN( "food with hidden hallucinogen" ) {
item mushroom = item( "mushroom" );
mushroom.set_flag( flag_HIDDEN_HALLU );
REQUIRE( mushroom.is_food() );
REQUIRE( mushroom.has_flag( flag_HIDDEN_HALLU ) );
WHEN( "avatar has level 4 survival skill" ) {
player_character.set_skill_level( skill_survival, 4 );
REQUIRE( player_character.get_skill_level( skill_survival ) == 4 );
THEN( "they cannot see it is hallucinogenic" ) {
CHECK( mushroom.tname() == "mushroom (fresh)" );
}
}
WHEN( "avatar has level 5 survival skill" ) {
player_character.set_skill_level( skill_survival, 5 );
REQUIRE( player_character.get_skill_level( skill_survival ) == 5 );
THEN( "they see it is hallucinogenic" ) {
CHECK( mushroom.tname() == "mushroom (hallucinogenic) (fresh)" );
}
}
}
}
TEST_CASE( "items with a temperature flag", "[item][tname][temperature]" )
{
GIVEN( "food that can melt" ) {
item shake( "milkshake" );
REQUIRE( shake.is_food() );
REQUIRE( shake.has_flag( flag_MELTS ) );
WHEN( "frozen" ) {
shake.set_flag( flag_FROZEN );
REQUIRE( shake.has_flag( flag_FROZEN ) );
THEN( "it appears frozen and not melted" ) {
CHECK( shake.tname() == "milkshake (fresh) (frozen)" );
}
}
WHEN( "cold" ) {
shake.set_flag( flag_COLD );
REQUIRE( shake.has_flag( flag_COLD ) );
THEN( "it appears cold and melted" ) {
CHECK( shake.tname() == "milkshake (fresh) (cold) (melted)" );
}
}
WHEN( "hot" ) {
shake.set_flag( flag_HOT );
REQUIRE( shake.has_flag( flag_HOT ) );
THEN( "it appears hot and melted" ) {
CHECK( shake.tname() == "milkshake (fresh) (hot) (melted)" );
}
}
}
GIVEN( "food that cannot melt" ) {
item nut( "pine_nuts" );
REQUIRE( nut.is_food() );
REQUIRE_FALSE( nut.has_flag( flag_MELTS ) );
WHEN( "frozen" ) {
nut.set_flag( flag_FROZEN );
REQUIRE( nut.has_flag( flag_FROZEN ) );
THEN( "it appears frozen" ) {
CHECK( nut.tname() == "pine nuts (fresh) (frozen)" );
}
}
WHEN( "cold" ) {
nut.set_flag( flag_COLD );
REQUIRE( nut.has_flag( flag_COLD ) );
THEN( "it appears cold" ) {
CHECK( nut.tname() == "pine nuts (fresh) (cold)" );
}
}
WHEN( "hot" ) {
nut.set_flag( flag_HOT );
REQUIRE( nut.has_flag( flag_HOT ) );
THEN( "it appears hot" ) {
CHECK( nut.tname() == "pine nuts (fresh) (hot)" );
}
}
}
GIVEN( "a human corpse" ) {
item corpse = item::make_corpse( mtype_id::NULL_ID(), calendar::turn, "" );
REQUIRE( corpse.is_corpse() );
WHEN( "frozen" ) {
corpse.set_flag( flag_FROZEN );
REQUIRE( corpse.has_flag( flag_FROZEN ) );
THEN( "it appears frozen" ) {
CHECK( corpse.tname() == "corpse of a human (fresh) (frozen)" );
}
}
WHEN( "cold" ) {
corpse.set_flag( flag_COLD );
REQUIRE( corpse.has_flag( flag_COLD ) );
THEN( "it appears cold" ) {
CHECK( corpse.tname() == "corpse of a human (fresh) (cold)" );
}
}
WHEN( "hot" ) {
corpse.set_flag( flag_HOT );
REQUIRE( corpse.has_flag( flag_HOT ) );
THEN( "it appears hot" ) {
CHECK( corpse.tname() == "corpse of a human (fresh) (hot)" );
}
}
}
GIVEN( "an item that is not food or a corpse" ) {
item hammer( "hammer" );
REQUIRE_FALSE( hammer.is_food() );
REQUIRE_FALSE( hammer.is_corpse() );
WHEN( "it is hot" ) {
hammer.set_flag( flag_HOT );
REQUIRE( hammer.has_flag( flag_HOT ) );
THEN( "it does not appear hot" ) {
CHECK( hammer.tname() == "hammer" );
}
}
WHEN( "it is cold" ) {
hammer.set_flag( flag_COLD );
REQUIRE( hammer.has_flag( flag_COLD ) );
THEN( "it does not appear cold" ) {
CHECK( hammer.tname() == "hammer" );
}
}
WHEN( "it is frozen" ) {
hammer.set_flag( flag_FROZEN );
REQUIRE( hammer.has_flag( flag_FROZEN ) );
THEN( "it does not appear frozen" ) {
CHECK( hammer.tname() == "hammer" );
}
}
}
}
TEST_CASE( "wet item", "[item][tname][wet]" )
{
item rag( "rag" );
rag.set_flag( flag_WET );
REQUIRE( rag.has_flag( flag_WET ) );
CHECK( rag.tname() == "rag (wet)" );
}
TEST_CASE( "filthy item", "[item][tname][filthy]" )
{
item rag( "rag" );
rag.set_flag( flag_FILTHY );
REQUIRE( rag.is_filthy() );
CHECK( rag.tname() == "rag (filthy)" );
}
TEST_CASE( "diamond item", "[item][tname][diamond]" )
{
item katana( "katana" );
katana.set_flag( flag_DIAMOND );
REQUIRE( katana.has_flag( flag_DIAMOND ) );
CHECK( katana.tname() == "diamond katana" );
}
TEST_CASE( "truncated item name", "[item][tname][truncate]" )
{
SECTION( "plain item name can be truncated" ) {
item katana( "katana" );
CHECK( katana.tname() == "katana" );
CHECK( katana.tname( 1, false, 5 ) == "katan" );
}
// TODO: color-coded or otherwise embellished item name can be truncated
}
TEST_CASE( "engine displacement volume", "[item][tname][engine]" )
{
item vtwin = item( "v2_combustion" );
item v12diesel = item( "v12_diesel" );
item turbine = item( "small_turbine_engine" );
REQUIRE( vtwin.engine_displacement() == 100 );
REQUIRE( v12diesel.engine_displacement() == 700 );
REQUIRE( turbine.engine_displacement() == 2700 );
CHECK( vtwin.tname() == "1.0L V-twin engine" );
CHECK( v12diesel.tname() == "7.0L V12 diesel engine" );
CHECK( turbine.tname() == "27.0L 1350 hp gas turbine engine" );
}
TEST_CASE( "wheel diameter", "[item][tname][wheel]" )
{
item wheel17 = item( "wheel" );
item wheel24 = item( "wheel_wide" );
item wheel32 = item( "wheel_armor" );
REQUIRE( wheel17.type->wheel->diameter == 17 );
REQUIRE( wheel24.type->wheel->diameter == 24 );
REQUIRE( wheel32.type->wheel->diameter == 32 );
CHECK( wheel17.tname() == "17\" wheel" );
CHECK( wheel24.tname() == "24\" wide wheel" );
CHECK( wheel32.tname() == "32\" armored wheel" );
}
TEST_CASE( "item health or damage bar", "[item][tname][health][damage]" )
{
GIVEN( "some clothing" ) {
item shirt( "longshirt" );
REQUIRE( shirt.is_armor() );
// Ensure the health bar option is enabled
override_option opt( "ITEM_HEALTH_BAR", "true" );
// Damage bar uses a scale of 0 `||` to 4 `XX`, in increments of 25%
int dam25 = shirt.max_damage() / 4;
WHEN( "it is undamaged" ) {
shirt.set_damage( 0 );
REQUIRE( shirt.damage() == 0 );
REQUIRE( shirt.damage_level() == 0 );
// green `||`
THEN( "it appears undamaged" ) {
CHECK( shirt.tname() == "<color_c_light_green>||\u00A0</color>long-sleeved shirt (poor fit)" );
}
}
WHEN( "is is one-quarter damaged" ) {
shirt.set_damage( dam25 );
REQUIRE( shirt.damage() == dam25 );
REQUIRE( shirt.damage_level() == 1 );
// yellow `|\`
THEN( "it appears slightly damaged" ) {
CHECK( shirt.tname() == "<color_c_yellow>|\\\u00A0</color>long-sleeved shirt (poor fit)" );
}
}
WHEN( "it is half damaged" ) {
shirt.set_damage( dam25 * 2 );
REQUIRE( shirt.damage() == dam25 * 2 );
REQUIRE( shirt.damage_level() == 2 );
// magenta `|.`
THEN( "it appears moderately damaged" ) {
CHECK( shirt.tname() == "<color_c_magenta>|.\u00A0</color>long-sleeved shirt (poor fit)" );
}
}
WHEN( "it is three-quarters damaged" ) {
shirt.set_damage( dam25 * 3 );
REQUIRE( shirt.damage() == dam25 * 3 );
REQUIRE( shirt.damage_level() == 3 );
// red `\.`
THEN( "it appears heavily damaged" ) {
CHECK( shirt.tname() == "<color_c_light_red>\\.\u00A0</color>long-sleeved shirt (poor fit)" );
}
}
WHEN( "it is totally damaged" ) {
shirt.set_damage( dam25 * 4 );
REQUIRE( shirt.damage() == dam25 * 4 );
REQUIRE( shirt.damage_level() == 4 );
// dark gray `XX`
THEN( "it appears almost destroyed" ) {
CHECK( shirt.tname() == "<color_c_dark_gray>XX\u00A0</color>long-sleeved shirt (poor fit)" );
}
}
}
GIVEN( "ITEM_HEALTH_BAR option is disabled" ) {
override_option opt( "ITEM_HEALTH_BAR", "false" );
THEN( "clothing health bars are hidden" ) {
item shirt( "longshirt" );
REQUIRE( shirt.is_armor() );
CHECK( shirt.tname() == "long-sleeved shirt (poor fit)" );
}
}
}
TEST_CASE( "weapon fouling", "[item][tname][fouling][dirt]" )
{
GIVEN( "a gun with potential fouling" ) {
item gun( "hk_mp5" );
Character &player_character = get_player_character();
// Ensure the player and gun are normal size to prevent "too big" or "too small" suffix in tname
player_character.clear_mutations();
REQUIRE( gun.get_sizing( player_character ) == item::sizing::ignore );
REQUIRE_FALSE( gun.has_flag( "OVERSIZE" ) );
REQUIRE_FALSE( gun.has_flag( "UNDERSIZE" ) );
WHEN( "it is perfectly clean" ) {
gun.set_var( "dirt", 0 );
CHECK( gun.tname() == "H&K MP5A2" );
}
WHEN( "it is fouled" ) {
gun.faults.insert( fault_gun_dirt );
REQUIRE( gun.has_fault( fault_gun_dirt ) );
// Max dirt is 10,000
THEN( "minimal fouling is not indicated" ) {
gun.set_var( "dirt", 1000 );
CHECK( gun.tname() == "H&K MP5A2" );
}
// U+2581 'Lower one eighth block'
THEN( "20%% fouling is indicated with a thin white bar" ) {
gun.set_var( "dirt", 2000 );
CHECK( gun.tname() == "<color_white>\u2581</color>H&K MP5A2" );
}
// U+2583 'Lower three eighths block'
THEN( "40%% fouling is indicated with a slight gray bar" ) {
gun.set_var( "dirt", 4000 );
CHECK( gun.tname() == "<color_light_gray>\u2583</color>H&K MP5A2" );
}
// U+2585 'Lower five eighths block'
THEN( "60%% fouling is indicated with a medium gray bar" ) {
gun.set_var( "dirt", 6000 );
CHECK( gun.tname() == "<color_light_gray>\u2585</color>H&K MP5A2" );
}
// U+2585 'Lower seven eighths block'
THEN( "80%% fouling is indicated with a tall dark gray bar" ) {
gun.set_var( "dirt", 8000 );
CHECK( gun.tname() == "<color_dark_gray>\u2587</color>H&K MP5A2" );
}
// U+2588 'Full block'
THEN( "100%% fouling is indicated with a full brown bar" ) {
gun.set_var( "dirt", 10000 );
CHECK( gun.tname() == "<color_brown>\u2588</color>H&K MP5A2" );
}
}
}
}