forked from stepmania/stepmania
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNoteSkin.cpp
1507 lines (1456 loc) · 45.4 KB
/
NoteSkin.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
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
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "global.h"
#include "ActorUtil.h"
#include "NoteSkin.h"
#include "NoteSkinManager.h"
#include "RageFileManager.h"
#include "RageTextureManager.h"
#include "RageUtil.hpp"
#include "XmlFile.h"
#include "XmlFileUtil.h"
using std::max;
using std::string;
using std::unordered_set;
using std::vector;
static const double default_column_width= 64.0;
static const double default_column_padding= 0.0;
static const double default_hold_gray_percent= 0.0;
static const double default_anim_time= 1.0;
static const double min_anim_time= 0.01;
static const double default_quantum_time= 1.0;
static const double min_quantum_time= 0.01;
static const char* NoteSkinTapPartNames[] = {
"Tap",
"Mine",
"Lift",
};
XToString(NoteSkinTapPart);
LuaXType(NoteSkinTapPart);
static const char* NoteSkinTapOptionalPartNames[] = {
"HoldHead",
"HoldTail",
"RollHead",
"RollTail",
"CheckpointHead",
"CheckpointTail",
};
XToString(NoteSkinTapOptionalPart);
LuaXType(NoteSkinTapOptionalPart);
static const char* NoteSkinHoldPartNames[] = {
"Top",
"Body",
"Bottom",
};
XToString(NoteSkinHoldPart);
LuaXType(NoteSkinHoldPart);
static const char* TexCoordFlipModeNames[] = {
"None",
"X",
"Y",
"XY",
};
XToString(TexCoordFlipMode);
LuaXType(TexCoordFlipMode);
static const char* NotePlayerizeModeNames[]= {
"Off",
"Mask",
"Quanta"
};
XToString(NotePlayerizeMode);
LuaXType(NotePlayerizeMode);
static size_t get_table_len(lua_State* L, int index, size_t max_entries,
string const& table_name, string& insanity_diagnosis)
{
if(!lua_istable(L, index))
{
insanity_diagnosis= fmt::sprintf("%s is not a table.", table_name.c_str());
return 0;
}
size_t ret= lua_objlen(L, index);
if(ret == 0)
{
insanity_diagnosis= fmt::sprintf("The %s table is empty.",table_name.c_str());
return 0;
}
if(ret > max_entries)
{
insanity_diagnosis= fmt::sprintf("The %s table has over %zu entries.",
table_name.c_str(), max_entries);
}
return ret;
}
template<typename el_type>
static bool load_simple_table(lua_State* L, int index, size_t max_entries,
vector<el_type>& dest, el_type offset, el_type max_value,
string const& table_name, string& insanity_diagnosis)
{
size_t tab_size= get_table_len(L, index, max_entries, table_name, insanity_diagnosis);
if(tab_size == 0)
{
return false;
}
dest.resize(tab_size);
for(size_t i= 0; i < tab_size; ++i)
{
lua_rawgeti(L, index, i+1);
el_type value= static_cast<el_type>(lua_tonumber(L, -1) - offset);
lua_pop(L, 1);
if(value >= max_value)
{
insanity_diagnosis= fmt::sprintf("Entry %zu in the %s table is not valid.",
i+1, table_name.c_str());
return false;
}
dest[i]= value;
}
lua_pop(L, 1);
return true;
}
static bool load_string_table(lua_State* L, int index, size_t max_entries,
vector<string>& dest, string const& table_name, string& insanity_diagnosis)
{
size_t tab_size= get_table_len(L, index, max_entries, table_name, insanity_diagnosis);
if(tab_size == 0)
{
return false;
}
dest.resize(tab_size);
for(size_t i= 0; i < tab_size; ++i)
{
lua_rawgeti(L, index, i+1);
if(!lua_isstring(L, -1))
{
insanity_diagnosis= fmt::sprintf("Entry %zu in the %s table is not valid.",
i+1, table_name.c_str());
return false;
}
dest[i]= lua_tostring(L, -1);
lua_pop(L, 1);
}
lua_pop(L, 1);
return true;
}
template<typename el_type, typename en_type>
static void load_enum_table(lua_State* L, int index, en_type begin, en_type end,
vector<el_type>& dest, el_type offset, el_type max_value,
el_type default_value)
{
// To allow expansion later, a missing element is not an error. Instead,
// the default value is used.
dest.resize(end - begin);
for(auto&& el : dest)
{
el= default_value;
}
if(!lua_istable(L, index))
{
return;
}
for(int curr= begin; curr != end; ++curr)
{
Enum::Push(L, static_cast<en_type>(curr));
lua_gettable(L, index);
if(!lua_isnoneornil(L, -1))
{
el_type value= static_cast<el_type>(lua_tonumber(L, -1) - offset);
if(value < max_value)
{
dest[curr-begin]= value;
}
}
lua_pop(L, 1);
}
}
RageTexture* load_noteskin_tex(std::string const& path, NoteSkinLoader const* load_skin)
{
RageTexture* as_tex= nullptr;
// Check to see if a texture is registered before trying to convert it to
// a full path. This allows someone to make an AFT and name the texture
// of the AFT, then use that texture name in the part.
RageTextureID as_id(path);
if(TEXTUREMAN->IsTextureRegistered(as_id))
{
as_tex= TEXTUREMAN->LoadTexture(as_id);
}
else
{
std::string resolved= NOTESKIN->get_path(load_skin, path);
if(resolved.empty())
{
as_tex= TEXTUREMAN->LoadTexture(TEXTUREMAN->GetDefaultTextureID());
}
else
{
as_tex= TEXTUREMAN->LoadTexture(resolved);
}
}
return as_tex;
}
void unload_texture_list(vector<RageTexture*>& tex_list)
{
for(auto&& tex : tex_list)
{
TEXTUREMAN->UnloadTexture(tex);
}
}
bool QuantizedStateMap::load_from_lua(lua_State* L, int index, string& insanity_diagnosis)
{
// Loading is atomic: If a single error occurs during loading the data,
// none of it is used.
// Pop the table we're loading from off the stack when returning.
int original_top= lua_gettop(L) - 1;
#define RETURN_NOT_SANE(message) lua_settop(L, original_top); insanity_diagnosis= message; return false;
lua_getfield(L, index, "quanta");
if(!lua_istable(L, -1))
{
RETURN_NOT_SANE("No quanta found");
}
size_t num_quanta= get_table_len(L, -1, max_quanta, "quanta", insanity_diagnosis);
if(num_quanta == 0)
{
RETURN_NOT_SANE(insanity_diagnosis);
}
int quanta_index= lua_gettop(L);
vector<QuantizedStates> temp_quanta(num_quanta);
for(size_t i= 0; i < temp_quanta.size(); ++i)
{
lua_rawgeti(L, quanta_index, i+1);
if(!lua_istable(L, -1))
{
RETURN_NOT_SANE(fmt::sprintf("Invalid quantum %zu.", i+1));
}
lua_getfield(L, -1, "per_beat");
if(!lua_isnumber(L, -1))
{
RETURN_NOT_SANE(fmt::sprintf("Invalid per_beat value in quantum %zu.", i+1));
}
temp_quanta[i].per_beat= lua_tointeger(L, -1);
lua_pop(L, 1);
lua_getfield(L, -1, "states");
if(!lua_istable(L, -1))
{
RETURN_NOT_SANE(fmt::sprintf("Invalid states in quantum %zu.", i+1));
}
if(!load_simple_table(L, lua_gettop(L), max_states,
temp_quanta[i].states, static_cast<size_t>(1), max_states, "states",
insanity_diagnosis))
{
RETURN_NOT_SANE(fmt::sprintf("Invalid states in quantum %zu: %s", i+1, insanity_diagnosis.c_str()));
}
lua_pop(L, 1);
}
lua_getfield(L, index, "parts_per_beat");
if(!lua_isnumber(L, -1))
{
RETURN_NOT_SANE("Invalid parts_per_beat.");
}
m_parts_per_beat= lua_tointeger(L, -1);
#undef RETURN_NOT_SANE
lua_settop(L, original_top);
m_quanta.swap(temp_quanta);
return true;
}
bool QuantizedTextureMap::load_from_lua(lua_State* L, int index, std::string& insanity_diagnosis)
{
// Pop the table we're loading from off the stack when returning.
int original_top= lua_gettop(L) - 1;
#define RETURN_NOT_SANE(message) lua_settop(L, original_top); insanity_diagnosis= message; return false;
lua_getfield(L, index, "quanta");
if(!lua_istable(L, -1))
{
RETURN_NOT_SANE("No quanta found");
}
size_t num_quanta= get_table_len(L, -1, max_quanta, "quanta", insanity_diagnosis);
if(num_quanta == 0)
{
RETURN_NOT_SANE(insanity_diagnosis);
}
int quanta_index= lua_gettop(L);
vector<TextureQuanta> temp_quanta(num_quanta);
for(size_t i= 0; i < temp_quanta.size(); ++i)
{
lua_rawgeti(L, quanta_index, i+1);
if(!lua_istable(L, -1))
{
RETURN_NOT_SANE(fmt::sprintf("Invalid quantum %zu.", i+1));
}
int this_quanta= lua_gettop(L);
lua_getfield(L, this_quanta, "per_beat");
if(!lua_isnumber(L, -1))
{
RETURN_NOT_SANE(fmt::sprintf("Invalid per_beat value in quantum %zu.", i+1));
}
temp_quanta[i].per_beat= lua_tointeger(L, -1);
temp_quanta[i].trans_x= get_optional_double(L, this_quanta, "trans_x", .0);
temp_quanta[i].trans_y= get_optional_double(L, this_quanta, "trans_y", .0);
lua_pop(L, 1);
}
lua_getfield(L, index, "parts_per_beat");
if(!lua_isnumber(L, -1))
{
RETURN_NOT_SANE("Invalid parts_per_beat.");
}
m_parts_per_beat= lua_tointeger(L, -1);
#undef RETURN_NOT_SANE
m_quanta.swap(temp_quanta);
lua_settop(L, original_top);
return true;
}
bool QuantizedTap::load_from_lua(lua_State* L, int index, string& insanity_diagnosis)
{
// Pop the table we're loading from off the stack when returning.
int original_top= lua_gettop(L) - 1;
#define RETURN_NOT_SANE(message) lua_settop(L, original_top); insanity_diagnosis= message; return false;
bool found_state_or_texture_map= false;
lua_getfield(L, index, "state_map");
if(lua_istable(L, -1))
{
found_state_or_texture_map= true;
m_use_texture_map= false;
if(!m_state_map.load_from_lua(L, lua_gettop(L), insanity_diagnosis))
{
RETURN_NOT_SANE(insanity_diagnosis);
}
lua_getfield(L, index, "inactive_state_map");
if(lua_istable(L, -1))
{
if(!m_inactive_map.load_from_lua(L, lua_gettop(L), insanity_diagnosis))
{
RETURN_NOT_SANE(insanity_diagnosis);
}
}
else
{
m_inactive_map= m_state_map;
}
}
lua_getfield(L, index, "texture_map");
if(lua_istable(L, -1))
{
found_state_or_texture_map= true;
m_use_texture_map= true;
if(!m_texture_map.load_from_lua(L, lua_gettop(L), insanity_diagnosis))
{
RETURN_NOT_SANE(insanity_diagnosis);
}
lua_getfield(L, index, "inactive_texture_map");
if(lua_istable(L, -1))
{
if(!m_inactive_texture_map.load_from_lua(L, lua_gettop(L), insanity_diagnosis))
{
RETURN_NOT_SANE(insanity_diagnosis);
}
}
else
{
m_inactive_texture_map= m_texture_map;
}
}
if(!found_state_or_texture_map)
{
RETURN_NOT_SANE("Could not find state or texture map.");
}
lua_getfield(L, index, "actor");
if(!lua_istable(L, -1))
{
RETURN_NOT_SANE("Actor not found.");
}
std::unique_ptr<XNode> node(XmlFileUtil::XNodeFromTable(L));
if(node.get() == nullptr)
{
RETURN_NOT_SANE("Actor not valid.");
}
Actor* act= ActorUtil::LoadFromNode(node.get(), nullptr);
if(act == nullptr)
{
RETURN_NOT_SANE("Error loading actor.");
}
m_actor.Load(act);
m_frame.AddChild(m_actor);
lua_getfield(L, index, "vivid");
m_vivid= lua_toboolean(L, -1);
#undef RETURN_NOT_SANE
lua_settop(L, original_top);
return true;
}
QuantizedHold::~QuantizedHold()
{
unload_texture_list(m_parts);
}
bool QuantizedHold::load_from_lua(lua_State* L, int index, NoteSkinLoader const* load_skin, string& insanity_diagnosis)
{
// Pop the table we're loading from off the stack when returning.
int original_top= lua_gettop(L) - 1;
#define RETURN_NOT_SANE(message) lua_settop(L, original_top); insanity_diagnosis= message; return false;
lua_getfield(L, index, "state_map");
if(!lua_istable(L, -1))
{
RETURN_NOT_SANE("No state map found.");
}
QuantizedStateMap temp_map;
if(!temp_map.load_from_lua(L, lua_gettop(L), insanity_diagnosis))
{
RETURN_NOT_SANE(insanity_diagnosis);
}
lua_getfield(L, index, "textures");
if(!lua_istable(L, -1))
{
RETURN_NOT_SANE("No textures found.");
}
size_t num_tex= get_table_len(L, -1, max_hold_layers, "textures", insanity_diagnosis);
if(num_tex == 0)
{
RETURN_NOT_SANE(insanity_diagnosis);
}
int texind= lua_gettop(L);
vector<RageTexture*> temp_parts(num_tex);
for(size_t part= 0; part < num_tex; ++part)
{
lua_rawgeti(L, texind, part+1);
if(!lua_isstring(L, -1))
{
RETURN_NOT_SANE(fmt::sprintf("Texture entry for layer %zu is not a string.",
part+1));
}
string path= lua_tostring(L, -1);
if(path.empty())
{
RETURN_NOT_SANE("Empty texture path is not valid.");
}
temp_parts[part]= load_noteskin_tex(path, load_skin);
}
lua_getfield(L, index, "flip");
m_flip= TCFM_None;
if(lua_isstring(L, -1))
{
m_flip= Enum::Check<TexCoordFlipMode>(L, -1, true, true);
if(m_flip >= NUM_TexCoordFlipMode)
{
LuaHelpers::ReportScriptErrorFmt("Invalid flip mode %s", lua_tostring(L, -1));
m_flip= TCFM_None;
}
}
lua_getfield(L, index, "length_data");
if(lua_istable(L, -1))
{
int length_data_index= lua_gettop(L);
m_part_lengths.start_note_offset= get_optional_double(L, length_data_index, "start_note_offset", -.5);
m_part_lengths.end_note_offset= get_optional_double(L, length_data_index, "end_note_offset", .5);
m_part_lengths.head_pixs= get_optional_double(L, length_data_index, "head_pixs", 32.0);
m_part_lengths.body_pixs= get_optional_double(L, length_data_index, "body_pixs", 64.0);
m_part_lengths.tail_pixs= get_optional_double(L, length_data_index, "tail_pixs", 32.0);
}
else
{
m_part_lengths.start_note_offset= -.5;
m_part_lengths.end_note_offset= .5;
m_part_lengths.head_pixs= 32.0;
m_part_lengths.body_pixs= 64.0;
m_part_lengths.tail_pixs= 32.0;
}
lua_getfield(L, index, "vivid");
m_vivid= lua_toboolean(L, -1);
m_texture_filtering= !get_optional_bool(L, index, "disable_filtering");
#undef RETURN_NOT_SANE
lua_settop(L, original_top);
m_state_map.swap(temp_map);
unload_texture_list(m_parts);
m_parts.swap(temp_parts);
return true;
}
void NoteSkinColumn::set_timing_source(TimingSource* source)
{
for(auto&& tap_set : {&m_taps, &m_reverse_taps})
{
for(auto&& tap : *tap_set)
{
tap.set_timing_source(source);
}
}
for(auto&& tap_set : {&m_optional_taps, &m_reverse_optional_taps})
{
for(auto&& tap : *tap_set)
{
if(tap != nullptr)
{
tap->set_timing_source(source);
}
}
}
}
void NoteSkinColumn::update_taps()
{
for(auto&& tap_set : {&m_taps, &m_reverse_taps})
{
for(auto&& tap : *tap_set)
{
tap.update();
}
}
for(auto&& tap_set : {&m_optional_taps, &m_reverse_optional_taps})
{
for(auto&& tap : *tap_set)
{
if(tap != nullptr)
{
tap->update();
}
}
}
}
// I didn't want to use a macro to make get_tap_actor and get_player_tap be
// the same, but then the reverse logic had to be added, which made them
// complex. So GET_TAP_BODY is to make sure they don't drift apart.
#define GET_TAP_BODY(get_func, quant_param) \
ASSERT_M(type < m_taps.size(), "Invalid NoteSkinTapPart type."); \
if(reverse && !m_reverse_taps.empty()) \
{ \
m_reverse_taps[type].get_func(quant_param, beat, active); \
} \
return m_taps[type].get_func(quant_param, beat, active);
Actor* NoteSkinColumn::get_tap_actor(size_t type,
double quantization, double beat, bool active, bool reverse)
{
GET_TAP_BODY(get_quantized, quantization);
}
Actor* NoteSkinColumn::get_player_tap(size_t type, size_t pn, double beat,
bool active, bool reverse)
{
GET_TAP_BODY(get_playerized, pn);
}
#undef GET_TAP_BODY
// Heads fall back to taps. Since NoteSkinTapOptionalPart alternates between
// Head and Tail, an easy way to check whether a head is being fetched is to
// use type % 2.
#define GET_OPTIONAL_TAP_BODY(get_tap_func, get_func, quant_param) \
ASSERT_M(type < m_optional_taps.size(), "Invalid NoteSkinTapOptionalPart type."); \
auto* use_taps= &m_optional_taps; \
if(reverse && !m_reverse_optional_taps.empty()) \
{ \
use_taps= &m_reverse_optional_taps; \
} \
QuantizedTap* tap= (*use_taps)[type]; \
if(tap == nullptr) \
{ \
tap= (*use_taps)[type % 2]; \
} \
if(tap == nullptr) \
{ \
if(type % 2 == 0) \
{ \
return get_tap_func(NSTP_Tap, quant_param, beat, active, reverse); \
} \
return nullptr; \
} \
return tap->get_func(quant_param, beat, active);
Actor* NoteSkinColumn::get_optional_actor(size_t type,
double quantization, double beat, bool active, bool reverse)
{
GET_OPTIONAL_TAP_BODY(get_tap_actor, get_quantized, quantization);
}
Actor* NoteSkinColumn::get_player_optional_tap(size_t type, size_t pn,
double beat, bool active, bool reverse)
{
GET_OPTIONAL_TAP_BODY(get_player_tap, get_playerized, pn);
}
#undef GET_OPTIONAL_TAP_BODY
void NoteSkinColumn::get_hold_render_data(TapNoteSubType sub_type,
NotePlayerizeMode playerize_mode, size_t pn, bool active, bool reverse,
double quantization, double beat, QuantizedHoldRenderData& data)
{
if(sub_type >= NUM_TapNoteSubType)
{
data.clear();
return;
}
auto& hold_set= reverse ? m_reverse_holds : m_holds;
auto& mask_set= reverse ? m_hold_reverse_player_masks : m_hold_player_masks;
if(playerize_mode != NPM_Quanta)
{
hold_set[sub_type][active].get_quantized(quantization, beat, data);
}
else
{
hold_set[sub_type][active].get_playerized(pn, beat, data);
}
if(playerize_mode == NPM_Mask && !mask_set.empty())
{
data.mask= mask_set[sub_type];
}
}
bool NoteSkinColumn::load_holds_from_lua(lua_State* L, int index,
std::vector<std::vector<QuantizedHold> >& holder,
std::string const& holds_name,
NoteSkinLoader const* load_skin, std::string& insanity_diagnosis)
{
string sub_sanity;
int original_top= lua_gettop(L);
#define RETURN_NOT_SANE(message) lua_settop(L, original_top); insanity_diagnosis= message; return false;
lua_getfield(L, index, holds_name.c_str());
if(!lua_istable(L, -1))
{
RETURN_NOT_SANE("No " + holds_name + " given.");
}
int holds_index= lua_gettop(L);
holder.resize(NUM_TapNoteSubType);
for(size_t part= 0; part < NUM_TapNoteSubType; ++part)
{
Enum::Push(L, static_cast<TapNoteSubType>(part));
lua_gettable(L, holds_index);
if(!lua_istable(L, -1))
{
RETURN_NOT_SANE(fmt::sprintf("Hold subtype %s not returned.", TapNoteSubTypeToString(static_cast<TapNoteSubType>(part)).c_str()));
}
int actives_index= lua_gettop(L);
static const size_t num_active_states= 2;
holder[part].resize(num_active_states);
for(size_t a= 0; a < num_active_states; ++a)
{
lua_rawgeti(L, actives_index, a+1);
if(!lua_istable(L, -1))
{
RETURN_NOT_SANE(fmt::sprintf("Hold info not given for active state %zu of subtype %s.", a, TapNoteSubTypeToString(static_cast<TapNoteSubType>(part)).c_str()));
}
if(!holder[part][a].load_from_lua(L, lua_gettop(L), load_skin, sub_sanity))
{
RETURN_NOT_SANE(fmt::sprintf("Error loading active state %zu of subtype %s: %s", a, TapNoteSubTypeToString(static_cast<TapNoteSubType>(part)).c_str(), sub_sanity.c_str()));
}
}
}
#undef RETURN_NOT_SANE
lua_settop(L, original_top);
return true;
}
bool NoteSkinColumn::load_texs_from_lua(lua_State* L, int index,
std::vector<RageTexture*>& dest,
std::string const& texs_name,
NoteSkinLoader const* load_skin, std::string& insanity_diagnosis)
{
string sub_sanity;
int original_top= lua_gettop(L);
#define RETURN_NOT_SANE(message) lua_settop(L, original_top); insanity_diagnosis= message; return false;
lua_getfield(L, index, texs_name.c_str());
if(!lua_istable(L, -1))
{
// load_texs_from_lua is only used for optional player mask textures.
return true;
//RETURN_NOT_SANE("No " + texs_name + " textures given.");
}
int texs_index= lua_gettop(L);
dest.resize(NUM_TapNoteSubType);
for(size_t part= 0; part < NUM_TapNoteSubType; ++part)
{
Enum::Push(L, static_cast<TapNoteSubType>(part));
lua_gettable(L, texs_index);
if(!lua_isstring(L, -1))
{
RETURN_NOT_SANE(fmt::sprintf("Texture entry for layer %zu is not a string.",
part+1));
}
string path= lua_tostring(L, -1);
if(path.empty())
{
RETURN_NOT_SANE("Empty texture path is not valid.");
}
dest[part]= load_noteskin_tex(path, load_skin);
}
#undef RETURN_NOT_SANE
lua_settop(L, original_top);
return true;
}
bool load_tap_set_from_lua(lua_State* L, int taps_index, vector<QuantizedTap>& tap_set, string& insanity_diagnosis)
{
int original_top= lua_gettop(L);
#define RETURN_NOT_SANE(message) lua_settop(L, original_top); insanity_diagnosis= message; return false;
if(!lua_istable(L, taps_index))
{
RETURN_NOT_SANE("Tap set is not a table.");
}
string sub_sanity;
tap_set.resize(NUM_NoteSkinTapPart);
for(size_t part= NSTP_Tap; part < NUM_NoteSkinTapPart; ++part)
{
Enum::Push(L, static_cast<NoteSkinTapPart>(part));
lua_gettable(L, taps_index);
if(!lua_istable(L, -1))
{
RETURN_NOT_SANE(fmt::sprintf("Part %s not returned.",
NoteSkinTapPartToString(static_cast<NoteSkinTapPart>(part)).c_str()));
}
if(!tap_set[part].load_from_lua(L, lua_gettop(L), sub_sanity))
{
RETURN_NOT_SANE(fmt::sprintf("Error loading part %s: %s",
NoteSkinTapPartToString(static_cast<NoteSkinTapPart>(part)).c_str(),
sub_sanity.c_str()));
}
}
#undef RETURN_NOT_SANE
return true;
}
bool NoteSkinColumn::load_from_lua(lua_State* L, int index, NoteSkinLoader const* load_skin, string& insanity_diagnosis)
{
// Pop the table we're loading from off the stack when returning.
int original_top= lua_gettop(L) - 1;
#define RETURN_NOT_SANE(message) lua_settop(L, original_top); insanity_diagnosis= message; return false;
vector<QuantizedTap> temp_taps;
vector<vector<QuantizedTap> > temp_player_taps;
vector<QuantizedTap*> temp_optionals(NUM_NoteSkinTapOptionalPart, nullptr);
vector<QuantizedTap*> temp_rev_optionals;
vector<vector<QuantizedHold> > temp_holds;
vector<vector<QuantizedHold> > temp_reverse_holds;
vector<RageTexture*> temp_hold_masks;
vector<RageTexture*> temp_hold_reverse_masks;
lua_getfield(L, index, "taps");
if(!lua_istable(L, -1))
{
RETURN_NOT_SANE("No taps given.");
}
int taps_index= lua_gettop(L);
string sub_sanity;
if(!load_tap_set_from_lua(L, taps_index, temp_taps, sub_sanity))
{
RETURN_NOT_SANE(sub_sanity);
}
lua_settop(L, taps_index-1);
lua_getfield(L, index, "reverse_taps");
if(lua_istable(L, -1))
{
if(!load_tap_set_from_lua(L, lua_gettop(L), m_reverse_taps, sub_sanity))
{
RETURN_NOT_SANE(sub_sanity);
}
}
lua_pop(L, 1);
lua_getfield(L, index, "optional_taps");
int optional_taps_index= lua_gettop(L);
// Leaving out the optional field is not an error.
if(lua_istable(L, -1))
{
for(size_t part= NSTOP_HoldHead; part < NUM_NoteSkinTapOptionalPart; ++part)
{
Enum::Push(L, static_cast<NoteSkinTapOptionalPart>(part));
lua_gettable(L, optional_taps_index);
if(lua_istable(L, -1))
{
QuantizedTap* temp= new QuantizedTap;
if(!temp->load_from_lua(L, lua_gettop(L), sub_sanity))
{
Rage::safe_delete(temp);
temp= nullptr;
}
temp_optionals[part]= temp;
}
}
}
lua_settop(L, optional_taps_index-1);
lua_getfield(L, index, "reverse_optional_taps");
int rev_opt_taps_index= lua_gettop(L);
if(lua_istable(L, -1))
{
temp_rev_optionals.resize(NUM_NoteSkinTapOptionalPart);
for(size_t part= NSTOP_HoldHead; part < NUM_NoteSkinTapOptionalPart; ++part)
{
Enum::Push(L, static_cast<NoteSkinTapOptionalPart>(part));
lua_gettable(L, optional_taps_index);
if(lua_istable(L, -1))
{
QuantizedTap* temp= new QuantizedTap;
if(!temp->load_from_lua(L, lua_gettop(L), sub_sanity))
{
Rage::safe_delete(temp);
temp= nullptr;
}
temp_rev_optionals[part]= temp;
}
}
}
lua_settop(L, rev_opt_taps_index-1);
if(!load_holds_from_lua(L, index, temp_holds, "holds", load_skin,
insanity_diagnosis))
{
RETURN_NOT_SANE(insanity_diagnosis);
}
if(!load_holds_from_lua(L, index, temp_reverse_holds, "reverse_holds", load_skin,
insanity_diagnosis))
{
RETURN_NOT_SANE(insanity_diagnosis);
}
if(!load_texs_from_lua(L, index, temp_hold_masks, "hold_masks", load_skin, insanity_diagnosis))
{
RETURN_NOT_SANE(insanity_diagnosis);
}
if(!load_texs_from_lua(L, index, temp_hold_reverse_masks, "hold_reverse_masks", load_skin, insanity_diagnosis))
{
RETURN_NOT_SANE(insanity_diagnosis);
}
m_width= get_optional_double(L, index, "width", default_column_width);
m_padding= get_optional_double(L, index, "padding", default_column_padding);
m_use_custom_x= false;
lua_getfield(L, index, "custom_x");
if(lua_isnumber(L, -1))
{
m_use_custom_x= true;
m_custom_x= lua_tonumber(L, -1);
}
lua_pop(L, 1);
m_hold_gray_percent= get_optional_double(L, index, "hold_gray_percent", default_hold_gray_percent);
m_anim_mult= get_optional_double(L, index, "anim_time", default_anim_time);
if(m_anim_mult <= min_anim_time)
{
m_anim_mult= 1.0;
}
m_anim_mult= 1.0 / m_anim_mult;
m_quantum_mult= get_optional_double(L, index, "quantum_time", default_quantum_time);
if(m_quantum_mult <= min_quantum_time)
{
m_quantum_mult= 1.0;
}
m_quantum_mult= 1.0 / m_quantum_mult;
m_anim_uses_beats= get_optional_bool(L, index, "anim_uses_beats");
m_use_hold_heads_for_taps_on_row= get_optional_bool(L, index, "use_hold_heads_for_taps_on_row");
#undef RETURN_NOT_SANE
lua_settop(L, original_top);
m_taps.swap(temp_taps);
clear_optionals();
m_optional_taps.swap(temp_optionals);
m_reverse_optional_taps.swap(temp_rev_optionals);
m_holds.swap(temp_holds);
m_reverse_holds.swap(temp_reverse_holds);
unload_texture_list(m_hold_player_masks);
unload_texture_list(m_hold_reverse_player_masks);
m_hold_player_masks.swap(temp_hold_masks);
m_hold_reverse_player_masks.swap(temp_hold_reverse_masks);
return true;
}
bool NoteSkinLayer::load_from_lua(lua_State* L, int index, size_t columns,
std::string& insanity_diagnosis)
{
int original_top= lua_gettop(L) - 1;
#define RETURN_NOT_SANE(message) lua_settop(L, original_top); insanity_diagnosis= message; return false;
size_t num_columns= get_table_len(L, index, NoteSkinData::max_columns, "layer actors", insanity_diagnosis);
if(num_columns != columns)
{
RETURN_NOT_SANE(fmt::sprintf("Invalid number of columns: %s", insanity_diagnosis.c_str()));
}
m_actors.resize(num_columns);
for(size_t c= 0; c < num_columns; ++c)
{
lua_rawgeti(L, index, c+1);
if(!lua_istable(L, -1))
{
RETURN_NOT_SANE("Actor not found.");
}
std::unique_ptr<XNode> node(XmlFileUtil::XNodeFromTable(L));
if(node.get() == nullptr)
{
RETURN_NOT_SANE("Actor not valid.");
}
Actor* act= ActorUtil::LoadFromNode(node.get(), nullptr);
if(act == nullptr)
{
RETURN_NOT_SANE("Error loading actor.");
}
m_actors[c]= act;
}
#undef RETURN_NOT_SANE
lua_settop(L, original_top);
return true;
}
NoteSkinData::NoteSkinData()
:m_loaded(false)
{
}
void NoteSkinData::swap(NoteSkinData& other)
{
m_layers.swap(other.m_layers);
m_player_colors.swap(other.m_player_colors);
m_columns.swap(other.m_columns);
m_skin_parameters.swap(other.m_skin_parameters);
bool temp_loaded= m_loaded;
m_loaded= other.m_loaded;
other.m_loaded= temp_loaded;
}
bool NoteSkinData::load_taps_from_lua(lua_State* L, int index, size_t columns,
NoteSkinLoader const* load_skin, string& insanity_diagnosis)
{
//lua_pushvalue(L, index);
//LuaHelpers::rec_print_table(L, "newskin_data", "");
//lua_pop(L, 1);
// Loading is atomic: If a single error occurs during loading the data,
// none of it is used.
// Pop the table we're loading from off the stack when returning.
int original_top= lua_gettop(L) - 1;
#define RETURN_NOT_SANE(message) lua_settop(L, original_top); insanity_diagnosis= message; return false;
lua_getfield(L, index, "columns");
size_t num_columns= get_table_len(L, -1, max_columns, "columns", insanity_diagnosis);
if(num_columns != columns)
{
RETURN_NOT_SANE(fmt::sprintf("Invalid number of columns: %s", insanity_diagnosis.c_str()));
}
vector<NoteSkinColumn> temp_columns(num_columns);
int columns_index= lua_gettop(L);
string sub_sanity;
for(size_t c= 0; c < num_columns; ++c)
{
lua_rawgeti(L, columns_index, c+1);
if(!lua_istable(L, -1))
{
RETURN_NOT_SANE(fmt::sprintf("Nothing given for column %zu.", c+1));
}
if(!temp_columns[c].load_from_lua(L, lua_gettop(L), load_skin, sub_sanity))
{
RETURN_NOT_SANE(fmt::sprintf("Error loading column %zu: %s", c+1, sub_sanity.c_str()));
}
}
lua_settop(L, columns_index-1);
lua_getfield(L, index, "vivid_operation");
if(lua_isboolean(L, -1))
{
bool vivid= lua_toboolean(L, -1);
for(auto&& column : temp_columns)
{
column.vivid_operation(vivid);
}
}
#undef RETURN_NOT_SANE
lua_settop(L, original_top);
m_columns.swap(temp_columns);
m_loaded= true;
return true;
}
void NoteSkinLoader::swap(NoteSkinLoader& other)
{
m_skin_name.swap(other.m_skin_name);
m_fallback_skin_name.swap(other.m_fallback_skin_name);
m_load_path.swap(other.m_load_path);
m_notes_loader.swap(other.m_notes_loader);
m_layer_loaders.swap(other.m_layer_loaders);
m_player_colors.swap(other.m_player_colors);
m_supported_buttons.swap(other.m_supported_buttons);
m_skin_parameters.swap(other.m_skin_parameters);
m_skin_parameter_info.swap(other.m_skin_parameter_info);
bool temp_sup= m_supports_all_buttons;
m_supports_all_buttons= other.m_supports_all_buttons;
other.m_supports_all_buttons= temp_sup;
}
bool NoteSkinLoader::load_from_file(std::string const& path)
{
if(!FILEMAN->IsAFile(path))
{
LuaHelpers::ReportScriptError("Noteskin '" + path + "' does not exist.");
return false;
}
string temp_load_path= Rage::dir_name(path);
std::string skin_text;
if(!GetFileContents(path, skin_text))
{
LuaHelpers::ReportScriptError("Could not load noteskin '" + path + "'.");
return false;
}
std::string error= "Error loading noteskin '" + path + "': ";
Lua* L= LUA->Get();
if(!LuaHelpers::RunScript(L, skin_text, "@" + path, error, 0, 1, true))
{
lua_settop(L, 0);
LUA->Release(L);
return false;
}
auto path_parts = Rage::split(path, "/");
size_t name_index= 0;
if(path_parts.size() > 1)