forked from diasurgical/DevilutionX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.h
901 lines (763 loc) · 28.6 KB
/
options.h
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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
#pragma once
#include <array>
#include <cstddef>
#include <cstdint>
#include <cstring>
#include <forward_list>
#include <functional>
#include <initializer_list>
#include <optional>
#include <string>
#include <string_view>
#include <utility>
#include <SDL_version.h>
#include <ankerl/unordered_dense.h>
#include <function_ref.hpp>
#include "appfat.h"
#include "controls/controller_buttons.h"
#include "engine/size.hpp"
#include "engine/sound_defs.hpp"
#include "pack.h"
#include "quick_messages.hpp"
#include "utils/enum_traits.h"
#include "utils/string_view_hash.hpp"
namespace devilution {
#ifndef DEFAULT_WIDTH
#define DEFAULT_WIDTH 640
#endif
#ifndef DEFAULT_HEIGHT
#define DEFAULT_HEIGHT 480
#endif
enum class StartUpGameMode : uint8_t {
/** @brief If hellfire is present, asks the user what game they want to start. */
Ask = 0,
Hellfire = 1,
Diablo = 2,
};
enum class StartUpIntro : uint8_t {
Off = 0,
Once = 1,
On = 2,
};
/** @brief Defines what splash screen should be shown at startup. */
enum class StartUpSplash : uint8_t {
/** @brief Show no splash screen. */
None = 0,
/** @brief Show only TitleDialog. */
TitleDialog = 1,
/** @brief Show Logo and TitleDialog. */
LogoAndTitleDialog = 2,
};
enum class ScalingQuality : uint8_t {
NearestPixel,
BilinearFiltering,
AnisotropicFiltering,
};
enum class FrameRateControl : uint8_t {
None = 0,
#ifndef USE_SDL1
VerticalSync = 1,
#endif
CPUSleep = 2,
};
enum class Resampler : uint8_t {
#ifdef DEVILUTIONX_RESAMPLER_SPEEX
Speex = 0,
#endif
#ifdef DVL_AULIB_SUPPORTS_SDL_RESAMPLER
SDL,
#endif
};
std::string_view ResamplerToString(Resampler resampler);
std::optional<Resampler> ResamplerFromString(std::string_view resampler);
enum class FloatingNumbers : uint8_t {
/** @brief Show no floating numbers. */
Off = 0,
/** @brief Show floating numbers at random angles. */
Random = 1,
/** @brief Show floating numbers vertically only. */
Vertical = 2,
};
enum class OptionEntryType : uint8_t {
Boolean,
List,
Key,
PadButton,
};
enum class OptionEntryFlags : uint8_t {
/** @brief No special logic. */
None = 0,
/** @brief Shouldn't be shown in settings dialog. */
Invisible = 1 << 0,
/** @brief Need to restart the current running game (single- or multiplayer) to take effect. */
CantChangeInGame = 1 << 1,
/** @brief Need to restart the current running multiplayer game to take effect. */
CantChangeInMultiPlayer = 1 << 2,
/** @brief Option is only relevant for Hellfire. */
OnlyHellfire = 1 << 3,
/** @brief Option is only relevant for Diablo. */
OnlyDiablo = 1 << 4,
/** @brief After option is changed the UI needs to be recreated. */
RecreateUI = 1 << 5,
/** @brief diablo.mpq must be present. */
NeedDiabloMpq = 1 << 6,
/** @brief hellfire.mpq must be present. */
NeedHellfireMpq = 1 << 7,
};
use_enum_as_flags(OptionEntryFlags);
class OptionEntryBase {
public:
OptionEntryBase(std::string_view key, OptionEntryFlags flags, const char *name, const char *description)
: flags(flags)
, key(key)
, name(name)
, description(description)
{
}
[[nodiscard]] virtual std::string_view GetName() const;
[[nodiscard]] std::string_view GetDescription() const;
[[nodiscard]] virtual OptionEntryType GetType() const = 0;
[[nodiscard]] OptionEntryFlags GetFlags() const;
void SetValueChangedCallback(tl::function_ref<void()> callback);
[[nodiscard]] virtual std::string_view GetValueDescription() const = 0;
virtual void LoadFromIni(std::string_view category) = 0;
virtual void SaveToIni(std::string_view category) const = 0;
OptionEntryFlags flags;
public:
std::string_view key;
protected:
const char *name;
const char *description;
void NotifyValueChanged();
private:
std::optional<tl::function_ref<void()>> callback_;
};
class OptionEntryBoolean : public OptionEntryBase {
public:
OptionEntryBoolean(std::string_view key, OptionEntryFlags flags, const char *name, const char *description, bool defaultValue)
: OptionEntryBase(key, flags, name, description)
, defaultValue(defaultValue)
, value(defaultValue)
{
}
[[nodiscard]] bool operator*() const
{
return value;
}
void SetValue(bool value);
[[nodiscard]] OptionEntryType GetType() const override;
[[nodiscard]] std::string_view GetValueDescription() const override;
void LoadFromIni(std::string_view category) override;
void SaveToIni(std::string_view category) const override;
private:
bool defaultValue;
bool value;
};
class OptionEntryListBase : public OptionEntryBase {
public:
[[nodiscard]] virtual size_t GetListSize() const = 0;
[[nodiscard]] virtual std::string_view GetListDescription(size_t index) const = 0;
[[nodiscard]] virtual size_t GetActiveListIndex() const = 0;
virtual void SetActiveListIndex(size_t index) = 0;
[[nodiscard]] OptionEntryType GetType() const override;
[[nodiscard]] std::string_view GetValueDescription() const override;
protected:
OptionEntryListBase(std::string_view key, OptionEntryFlags flags, const char *name, const char *description)
: OptionEntryBase(key, flags, name, description)
{
}
};
class OptionEntryEnumBase : public OptionEntryListBase {
public:
void LoadFromIni(std::string_view category) override;
void SaveToIni(std::string_view category) const override;
[[nodiscard]] size_t GetListSize() const override;
[[nodiscard]] std::string_view GetListDescription(size_t index) const override;
[[nodiscard]] size_t GetActiveListIndex() const override;
void SetActiveListIndex(size_t index) override;
protected:
OptionEntryEnumBase(std::string_view key, OptionEntryFlags flags, const char *name, const char *description, int defaultValue)
: OptionEntryListBase(key, flags, name, description)
, defaultValue(defaultValue)
, value(defaultValue)
{
}
[[nodiscard]] int GetValueInternal() const
{
return value;
}
void SetValueInternal(int value);
void AddEntry(int value, std::string_view name);
private:
int defaultValue;
int value;
std::vector<std::string_view> entryNames;
std::vector<int> entryValues;
};
template <typename T>
class OptionEntryEnum : public OptionEntryEnumBase {
public:
OptionEntryEnum(std::string_view key, OptionEntryFlags flags, const char *name, const char *description, T defaultValue, std::initializer_list<std::pair<T, std::string_view>> entries)
: OptionEntryEnumBase(key, flags, name, description, static_cast<int>(defaultValue))
{
for (auto &&[key, value] : entries) {
AddEntry(static_cast<int>(key), value);
}
}
[[nodiscard]] T operator*() const
{
return static_cast<T>(GetValueInternal());
}
void SetValue(T value)
{
SetValueInternal(static_cast<int>(value));
}
};
class OptionEntryIntBase : public OptionEntryListBase {
public:
void LoadFromIni(std::string_view category) override;
void SaveToIni(std::string_view category) const override;
[[nodiscard]] size_t GetListSize() const override;
[[nodiscard]] std::string_view GetListDescription(size_t index) const override;
[[nodiscard]] size_t GetActiveListIndex() const override;
void SetActiveListIndex(size_t index) override;
protected:
OptionEntryIntBase(std::string_view key, OptionEntryFlags flags, const char *name, const char *description, int defaultValue)
: OptionEntryListBase(key, flags, name, description)
, defaultValue(defaultValue)
, value(defaultValue)
{
}
[[nodiscard]] int GetValueInternal() const
{
return value;
}
void SetValueInternal(int value);
void AddEntry(int value);
private:
int defaultValue;
int value;
mutable std::vector<std::string> entryNames;
std::vector<int> entryValues;
};
template <typename T>
class OptionEntryInt : public OptionEntryIntBase {
public:
OptionEntryInt(std::string_view key, OptionEntryFlags flags, const char *name, const char *description, T defaultValue, std::initializer_list<T> entries)
: OptionEntryIntBase(key, flags, name, description, static_cast<int>(defaultValue))
{
for (auto entry : entries) {
AddEntry(static_cast<int>(entry));
}
}
OptionEntryInt(std::string_view key, OptionEntryFlags flags, const char *name, const char *description, T defaultValue)
: OptionEntryInt(key, flags, name, description, defaultValue, { defaultValue })
{
}
[[nodiscard]] T operator*() const
{
return static_cast<T>(GetValueInternal());
}
void SetValue(T value)
{
SetValueInternal(static_cast<int>(value));
}
};
class OptionEntryLanguageCode : public OptionEntryListBase {
public:
OptionEntryLanguageCode();
void LoadFromIni(std::string_view category) override;
void SaveToIni(std::string_view category) const override;
[[nodiscard]] size_t GetListSize() const override;
[[nodiscard]] std::string_view GetListDescription(size_t index) const override;
[[nodiscard]] size_t GetActiveListIndex() const override;
void SetActiveListIndex(size_t index) override;
std::string_view operator*() const
{
return szCode;
}
OptionEntryLanguageCode &operator=(std::string_view code)
{
assert(code.size() < 6);
memcpy(szCode, code.data(), code.size());
szCode[code.size()] = '\0';
return *this;
}
private:
/** @brief Language code (ISO-15897) for text. */
char szCode[6];
mutable std::vector<std::pair<std::string, std::string>> languages;
void CheckLanguagesAreInitialized() const;
};
class OptionEntryResolution : public OptionEntryListBase {
public:
OptionEntryResolution();
void LoadFromIni(std::string_view category) override;
void SaveToIni(std::string_view category) const override;
[[nodiscard]] size_t GetListSize() const override;
[[nodiscard]] std::string_view GetListDescription(size_t index) const override;
[[nodiscard]] size_t GetActiveListIndex() const override;
void SetActiveListIndex(size_t index) override;
void setAvailableResolutions(std::vector<std::pair<Size, std::string>> &&resolutions)
{
resolutions_ = std::move(resolutions);
}
Size operator*() const { return size_; }
private:
/** @brief View size. */
Size size_;
std::vector<std::pair<Size, std::string>> resolutions_;
};
class OptionEntryResampler : public OptionEntryListBase {
public:
OptionEntryResampler();
void LoadFromIni(std::string_view category) override;
void SaveToIni(std::string_view category) const override;
[[nodiscard]] size_t GetListSize() const override;
[[nodiscard]] std::string_view GetListDescription(size_t index) const override;
[[nodiscard]] size_t GetActiveListIndex() const override;
void SetActiveListIndex(size_t index) override;
Resampler operator*() const
{
return resampler_;
}
private:
void UpdateDependentOptions() const;
Resampler resampler_;
};
class OptionEntryAudioDevice : public OptionEntryListBase {
public:
OptionEntryAudioDevice();
void LoadFromIni(std::string_view category) override;
void SaveToIni(std::string_view category) const override;
[[nodiscard]] size_t GetListSize() const override;
[[nodiscard]] std::string_view GetListDescription(size_t index) const override;
[[nodiscard]] size_t GetActiveListIndex() const override;
void SetActiveListIndex(size_t index) override;
std::string operator*() const
{
for (size_t i = 0; i < GetListSize(); i++) {
std::string_view deviceName = GetDeviceName(i);
if (deviceName == deviceName_)
return deviceName_;
}
return "";
}
private:
std::string_view GetDeviceName(size_t index) const;
std::string deviceName_;
};
struct OptionCategoryBase {
OptionCategoryBase(std::string_view key, const char *name, const char *description)
: key(key)
, name(name)
, description(description)
{
}
[[nodiscard]] std::string_view GetKey() const;
[[nodiscard]] std::string_view GetName() const;
[[nodiscard]] std::string_view GetDescription() const;
virtual std::vector<OptionEntryBase *> GetEntries() = 0;
protected:
std::string_view key;
const char *name;
const char *description;
};
struct GameModeOptions : OptionCategoryBase {
GameModeOptions();
std::vector<OptionEntryBase *> GetEntries() override;
OptionEntryEnum<StartUpGameMode> gameMode;
OptionEntryBoolean shareware;
};
struct StartUpOptions : OptionCategoryBase {
StartUpOptions();
std::vector<OptionEntryBase *> GetEntries() override;
/** @brief Play game intro video on diablo startup. */
OptionEntryEnum<StartUpIntro> diabloIntro;
/** @brief Play game intro video on hellfire startup. */
OptionEntryEnum<StartUpIntro> hellfireIntro;
OptionEntryEnum<StartUpSplash> splash;
};
struct DiabloOptions : OptionCategoryBase {
DiabloOptions();
std::vector<OptionEntryBase *> GetEntries() override;
/** @brief Remembers what singleplayer hero/save was last used. */
OptionEntryInt<std::uint32_t> lastSinglePlayerHero;
/** @brief Remembers what multiplayer hero/save was last used. */
OptionEntryInt<std::uint32_t> lastMultiplayerHero;
};
struct HellfireOptions : OptionCategoryBase {
HellfireOptions();
std::vector<OptionEntryBase *> GetEntries() override;
/** @brief Cornerstone of the world item. */
char szItem[sizeof(ItemPack) * 2 + 1];
/** @brief Remembers what singleplayer hero/save was last used. */
OptionEntryInt<std::uint32_t> lastSinglePlayerHero;
/** @brief Remembers what multiplayer hero/save was last used. */
OptionEntryInt<std::uint32_t> lastMultiplayerHero;
};
struct AudioOptions : OptionCategoryBase {
AudioOptions();
std::vector<OptionEntryBase *> GetEntries() override;
/** @brief Movie and SFX volume. */
OptionEntryInt<int> soundVolume;
/** @brief Music volume. */
OptionEntryInt<int> musicVolume;
/** @brief Player emits sound when walking. */
OptionEntryBoolean walkingSound;
/** @brief Automatically equipping items on pickup emits the equipment sound. */
OptionEntryBoolean autoEquipSound;
/** @brief Picking up items emits the items pickup sound. */
OptionEntryBoolean itemPickupSound;
/** @brief Output sample rate (Hz). */
OptionEntryInt<std::uint32_t> sampleRate;
/** @brief The number of output channels (1 or 2) */
OptionEntryInt<std::uint8_t> channels;
/** @brief Buffer size (number of frames per channel) */
OptionEntryInt<std::uint32_t> bufferSize;
/** @brief Resampler implementation. */
OptionEntryResampler resampler;
/** @brief Quality of the resampler, from 0 (lowest) to 10 (highest). Available for the speex resampler only. */
OptionEntryInt<std::uint8_t> resamplingQuality;
/** @brief Audio device. */
OptionEntryAudioDevice device;
};
struct GraphicsOptions : OptionCategoryBase {
GraphicsOptions();
std::vector<OptionEntryBase *> GetEntries() override;
OptionEntryResolution resolution;
/** @brief Run in fullscreen or windowed mode. */
OptionEntryBoolean fullscreen;
#if !defined(USE_SDL1) || defined(__3DS__)
/** @brief Expand the aspect ratio to match the screen. */
OptionEntryBoolean fitToScreen;
#endif
#ifndef USE_SDL1
/** @brief Scale the image after rendering. */
OptionEntryBoolean upscale;
/** @brief See SDL_HINT_RENDER_SCALE_QUALITY. */
OptionEntryEnum<ScalingQuality> scaleQuality;
/** @brief Only scale by values divisible by the width and height. */
OptionEntryBoolean integerScaling;
#endif
/** @brief Limit frame rate either for vsync or CPU load. */
OptionEntryEnum<FrameRateControl> frameRateControl;
/** @brief Brightness level. */
OptionEntryInt<int> brightness;
/** @brief Zoom on start. */
OptionEntryBoolean zoom;
/** @brief Enable color cycling animations. */
OptionEntryBoolean colorCycling;
/** @brief Use alternate nest palette. */
OptionEntryBoolean alternateNestArt;
#if SDL_VERSION_ATLEAST(2, 0, 0)
/** @brief Use a hardware cursor (SDL2 only). */
OptionEntryBoolean hardwareCursor;
/** @brief Use a hardware cursor for items. */
OptionEntryBoolean hardwareCursorForItems;
/** @brief Maximum width / height for the hardware cursor. Larger cursors fall back to software. */
OptionEntryInt<int> hardwareCursorMaxSize;
#endif
/** @brief Show FPS, even without the -f command line flag. */
OptionEntryBoolean showFPS;
};
struct GameplayOptions : OptionCategoryBase {
GameplayOptions();
std::vector<OptionEntryBase *> GetEntries() override;
/** @brief Gameplay ticks per second. */
OptionEntryInt<int> tickRate;
/** @brief Enable double walk speed when in town. */
OptionEntryBoolean runInTown;
/** @brief Do not let the mouse leave the application window. */
OptionEntryBoolean grabInput;
/** @brief Pause the game when focus is lost. */
OptionEntryBoolean pauseOnFocusLoss;
/** @brief Enable the Theo quest. */
OptionEntryBoolean theoQuest;
/** @brief Enable the cow quest. */
OptionEntryBoolean cowQuest;
/** @brief Will players still damage other players in non-PvP mode. */
OptionEntryBoolean friendlyFire;
/** @brief Enables the full/uncut singleplayer version of quests. */
OptionEntryBoolean multiplayerFullQuests;
/** @brief Enable the bard hero class. */
OptionEntryBoolean testBard;
/** @brief Enable the babarian hero class. */
OptionEntryBoolean testBarbarian;
/** @brief Show the current level progress. */
OptionEntryBoolean experienceBar;
/** @brief Show item graphics to the left of item descriptions in store menus. */
OptionEntryBoolean showItemGraphicsInStores;
/** @brief Display current/max health values on health globe. */
OptionEntryBoolean showHealthValues;
/** @brief Display current/max mana values on mana globe. */
OptionEntryBoolean showManaValues;
/** @brief Show enemy health at the top of the screen. */
OptionEntryBoolean enemyHealthBar;
/** @brief Automatically pick up gold when walking over it. */
OptionEntryBoolean autoGoldPickup;
/** @brief Auto-pickup elixirs */
OptionEntryBoolean autoElixirPickup;
/** @brief Auto-pickup oils */
OptionEntryBoolean autoOilPickup;
/** @brief Enable or Disable auto-pickup in town */
OptionEntryBoolean autoPickupInTown;
/** @brief Recover mana when talking to Adria. */
OptionEntryBoolean adriaRefillsMana;
/** @brief Automatically attempt to equip weapon-type items when picking them up. */
OptionEntryBoolean autoEquipWeapons;
/** @brief Automatically attempt to equip armor-type items when picking them up. */
OptionEntryBoolean autoEquipArmor;
/** @brief Automatically attempt to equip helm-type items when picking them up. */
OptionEntryBoolean autoEquipHelms;
/** @brief Automatically attempt to equip shield-type items when picking them up. */
OptionEntryBoolean autoEquipShields;
/** @brief Automatically attempt to equip jewelry-type items when picking them up. */
OptionEntryBoolean autoEquipJewelry;
/** @brief Only enable 2/3 quests in each game session */
OptionEntryBoolean randomizeQuests;
/** @brief Indicates whether or not monster type (Animal, Demon, Undead) is shown along with other monster information. */
OptionEntryBoolean showMonsterType;
/** @brief Displays item labels for items on the ground. */
OptionEntryBoolean showItemLabels;
/** @brief Refill belt from inventory, or rather, use potions/scrolls from inventory first when belt item is consumed. */
OptionEntryBoolean autoRefillBelt;
/** @brief Locally disable clicking on shrines which permanently cripple character. */
OptionEntryBoolean disableCripplingShrines;
/** @brief Spell hotkeys instantly cast the spell. */
OptionEntryBoolean quickCast;
/** @brief Number of Healing potions to pick up automatically */
OptionEntryInt<int> numHealPotionPickup;
/** @brief Number of Full Healing potions to pick up automatically */
OptionEntryInt<int> numFullHealPotionPickup;
/** @brief Number of Mana potions to pick up automatically */
OptionEntryInt<int> numManaPotionPickup;
/** @brief Number of Full Mana potions to pick up automatically */
OptionEntryInt<int> numFullManaPotionPickup;
/** @brief Number of Rejuvenating potions to pick up automatically */
OptionEntryInt<int> numRejuPotionPickup;
/** @brief Number of Full Rejuvenating potions to pick up automatically */
OptionEntryInt<int> numFullRejuPotionPickup;
/** @brief Enable floating numbers. */
OptionEntryEnum<FloatingNumbers> enableFloatingNumbers;
/**
* @brief If loading takes less than this value, skips displaying the loading screen.
*
* Advanced option, not displayed in the UI.
*/
OptionEntryInt<int> skipLoadingScreenThresholdMs;
};
struct ControllerOptions : OptionCategoryBase {
ControllerOptions();
std::vector<OptionEntryBase *> GetEntries() override;
/** @brief SDL Controller mapping, see SDL_GameControllerDB. */
char szMapping[1024];
/** @brief Configure gamepad joysticks deadzone */
float fDeadzone;
#ifdef __vita__
/** @brief Enable input via rear touchpad */
bool bRearTouch;
#endif
};
struct NetworkOptions : OptionCategoryBase {
NetworkOptions();
std::vector<OptionEntryBase *> GetEntries() override;
/** @brief Optionally bind to a specific network interface. */
char szBindAddress[129];
/** @brief Most recently entered ZeroTier Game ID. */
char szPreviousZTGame[129];
/** @brief Most recently entered Hostname in join dialog. */
char szPreviousHost[129];
/** @brief What network port to use. */
OptionEntryInt<uint16_t> port;
};
struct ChatOptions : OptionCategoryBase {
ChatOptions();
std::vector<OptionEntryBase *> GetEntries() override;
/** @brief Quick chat messages. */
std::vector<std::string> szHotKeyMsgs[QuickMessages.size()];
};
struct LanguageOptions : OptionCategoryBase {
LanguageOptions();
std::vector<OptionEntryBase *> GetEntries() override;
OptionEntryLanguageCode code;
};
constexpr uint32_t KeymapperMouseButtonMask = 1 << 31;
constexpr uint32_t MouseScrollUpButton = 65536 | KeymapperMouseButtonMask;
constexpr uint32_t MouseScrollDownButton = 65537 | KeymapperMouseButtonMask;
constexpr uint32_t MouseScrollLeftButton = 65538 | KeymapperMouseButtonMask;
constexpr uint32_t MouseScrollRightButton = 65539 | KeymapperMouseButtonMask;
/** The Keymapper maps keys to actions. */
struct KeymapperOptions : OptionCategoryBase {
/**
* Action represents an action that can be triggered using a keyboard
* shortcut.
*/
class Action final : public OptionEntryBase {
public:
// OptionEntryBase::key may be referencing Action::dynamicKey.
// The implicit copy constructor would copy that reference instead of referencing the copy.
Action(const Action &) = delete;
Action(std::string_view key, const char *name, const char *description, uint32_t defaultKey, std::function<void()> actionPressed, std::function<void()> actionReleased, std::function<bool()> enable, unsigned index);
[[nodiscard]] std::string_view GetName() const override;
[[nodiscard]] OptionEntryType GetType() const override
{
return OptionEntryType::Key;
}
void LoadFromIni(std::string_view category) override;
void SaveToIni(std::string_view category) const override;
[[nodiscard]] std::string_view GetValueDescription() const override;
bool SetValue(int value);
[[nodiscard]] bool isEnabled() const { return !enable || enable(); }
std::function<void()> actionPressed;
std::function<void()> actionReleased;
private:
uint32_t defaultKey;
std::function<bool()> enable;
uint32_t boundKey = SDLK_UNKNOWN;
unsigned dynamicIndex;
std::string dynamicKey;
mutable std::string dynamicName;
friend struct KeymapperOptions;
};
KeymapperOptions();
std::vector<OptionEntryBase *> GetEntries() override;
void AddAction(
std::string_view key, const char *name, const char *description, uint32_t defaultKey,
std::function<void()> actionPressed,
std::function<void()> actionReleased = nullptr,
std::function<bool()> enable = nullptr,
unsigned index = 0);
void CommitActions();
[[nodiscard]] const Action *findAction(uint32_t key) const;
std::string_view KeyNameForAction(std::string_view actionName) const;
uint32_t KeyForAction(std::string_view actionName) const;
private:
std::forward_list<Action> actions;
ankerl::unordered_dense::segmented_map<uint32_t, std::reference_wrapper<Action>> keyIDToAction;
ankerl::unordered_dense::segmented_map<uint32_t, std::string> keyIDToKeyName;
ankerl::unordered_dense::segmented_map<std::string, uint32_t, StringViewHash, StringViewEquals> keyNameToKeyID;
};
/** The Padmapper maps gamepad buttons to actions. */
struct PadmapperOptions : OptionCategoryBase {
/**
* Action represents an action that can be triggered using a gamepad
* button combo.
*/
class Action final : public OptionEntryBase {
public:
Action(std::string_view key, const char *name, const char *description, ControllerButtonCombo defaultInput, std::function<void()> actionPressed, std::function<void()> actionReleased, std::function<bool()> enable, unsigned index);
// OptionEntryBase::key may be referencing Action::dynamicKey.
// The implicit copy constructor would copy that reference instead of referencing the copy.
Action(const Action &) = delete;
[[nodiscard]] std::string_view GetName() const override;
[[nodiscard]] OptionEntryType GetType() const override
{
return OptionEntryType::PadButton;
}
void LoadFromIni(std::string_view category) override;
void SaveToIni(std::string_view category) const override;
[[nodiscard]] std::string_view GetValueDescription() const override;
[[nodiscard]] std::string_view GetValueDescription(bool useShortName) const;
bool SetValue(ControllerButtonCombo value);
[[nodiscard]] bool isEnabled() const { return !enable || enable(); }
std::function<void()> actionPressed;
std::function<void()> actionReleased;
ControllerButtonCombo boundInput;
private:
ControllerButtonCombo defaultInput;
std::function<bool()> enable;
mutable GamepadLayout boundInputDescriptionType = GamepadLayout::Generic;
mutable std::string boundInputDescription;
mutable std::string boundInputShortDescription;
unsigned dynamicIndex;
std::string dynamicKey;
mutable std::string dynamicName;
void UpdateValueDescription() const;
std::string_view Shorten(std::string_view buttonName) const;
friend struct PadmapperOptions;
};
PadmapperOptions();
std::vector<OptionEntryBase *> GetEntries() override;
void AddAction(
std::string_view key, const char *name, const char *description, ControllerButtonCombo defaultInput,
std::function<void()> actionPressed,
std::function<void()> actionReleased = nullptr,
std::function<bool()> enable = nullptr,
unsigned index = 0);
void CommitActions();
std::string_view InputNameForAction(std::string_view actionName, bool useShortName = false) const;
ControllerButtonCombo ButtonComboForAction(std::string_view actionName) const;
[[nodiscard]] const Action *findAction(ControllerButton button, tl::function_ref<bool(ControllerButton)> isModifierPressed) const;
std::forward_list<Action> actions;
private:
std::array<std::string, enum_size<ControllerButton>::value> buttonToButtonName;
ankerl::unordered_dense::segmented_map<std::string, ControllerButton, StringViewHash, StringViewEquals> buttonNameToButton;
bool committed = false;
};
struct ModOptions : OptionCategoryBase {
ModOptions();
std::vector<std::string_view> GetActiveModList();
std::vector<std::string_view> GetModList();
std::vector<OptionEntryBase *> GetEntries() override;
private:
struct ModEntry {
// OptionEntryBase::key references ModEntry::name.
// The implicit copy constructor would copy that reference instead of referencing the copy.
ModEntry(const ModEntry &) = delete;
ModEntry(std::string_view name);
std::string name;
OptionEntryBoolean enabled;
};
std::forward_list<ModEntry> &GetModEntries();
std::optional<std::forward_list<ModEntry>> modEntries;
};
struct Options {
GameModeOptions GameMode;
StartUpOptions StartUp;
DiabloOptions Diablo;
HellfireOptions Hellfire;
AudioOptions Audio;
GameplayOptions Gameplay;
GraphicsOptions Graphics;
ControllerOptions Controller;
NetworkOptions Network;
ChatOptions Chat;
LanguageOptions Language;
KeymapperOptions Keymapper;
PadmapperOptions Padmapper;
ModOptions Mods;
[[nodiscard]] std::vector<OptionCategoryBase *> GetCategories()
{
return {
&Language,
&GameMode,
&StartUp,
&Graphics,
&Audio,
&Diablo,
&Hellfire,
&Gameplay,
&Controller,
&Network,
&Chat,
&Keymapper,
&Padmapper,
&Mods,
};
}
};
/**
* @brief Get the Options singleton object
*/
[[nodiscard]] Options &GetOptions();
bool HardwareCursorSupported();
/**
* @brief Save game configurations to ini file
*/
void SaveOptions();
/**
* @brief Load game configurations from ini file
*/
void LoadOptions();
} // namespace devilution