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
|
#include <ui.hpp>
#include <ft2build.h>
#include FT_FREETYPE_H
#include <bmpimage.hpp>
#include <debug.hpp>
#include <error.hpp>
#include <font.hpp>
#include <ui_menu.hpp>
#include <vector3.hpp>
#include <ui_quest.hpp>
#include <brice.hpp>
#include <world.hpp>
#include <gametime.hpp>
#include <render.hpp>
#include <engine.hpp>
#include <events.hpp>
#include <window.hpp>
#include <player.hpp>
#include <chrono>
using namespace std::literals::chrono_literals;
extern Menu *currentMenu;
std::array<SDL_Keycode, 6> controlMap = {
SDLK_w, SDLK_a, SDLK_d, SDLK_LSHIFT, SDLK_LCTRL, SDLK_e
};
void setControl(int index, SDL_Keycode key)
{
controlMap[index] = key;
}
SDL_Keycode getControl(int index)
{
if (index >= static_cast<int>(controlMap.size()))
return 0;
return controlMap[index];
}
/*
* Variables for dialog boxes / options.
*/
static bool typeOutDone = true;
static bool typeOutSustain = false;
static Mix_Chunk *dialogClick;
bool inBattle = false;
Mix_Chunk *battleStart;
Mix_Chunk *sanic;
static GLuint pageTex = 0;
static bool pageTexReady = false;
namespace ui {
/*
* Mouse coordinates.
*/
vec2 mouse;
vec2 premouse={0,0};
/*
* Debugging flags.
*/
bool debug=false;
bool posFlag=false;
void takeScreenshot(GLubyte* pixels);
void initSounds(void) {
dialogClick = Mix_LoadWAV("assets/sounds/click.wav");
battleStart = Mix_LoadWAV("assets/sounds/frig.wav");
sanic = Mix_LoadWAV("assets/sounds/sanic.wav");
}
void destroyFonts(void) {
Mix_FreeChunk(dialogClick);
Mix_FreeChunk(battleStart);
Mix_FreeChunk(sanic);
}
/**
* Prevents typeOut from typing the next string it's given.
*/
void dontTypeOut(void) {
typeOutSustain = true;
}
/*
* Draw a string in a typewriter-esque fashion. Each letter is rendered as calls are made
* to this function. Passing a different string to the function will reset the counters.
*/
std::string ret;
std::string typeOut(std::string str) {
static unsigned int tadv = 1;
static unsigned int tickk,
linc=0, // Contains the number of letters that should be drawn.
size=0; // Contains the full size of the current string.
auto tickCount = game::time::getTickCount();
// reset values if a new string is being passed.
if (!linc || ret.substr(0, linc) != str.substr(0, linc)) {
tickk = tickCount + tadv;
ret = str.substr(0, 1);
size = str.size(); // Set the new target string size
linc = 1; // Reset the incrementers
if ((typeOutDone = typeOutSustain))
typeOutSustain = false;
}
if (typeOutDone)
return str;
// Draw the next letter if necessary.
else if (tickk <= tickCount) {
tickk = tickCount + tadv;
ret += str[linc];
if (!isspace(str[linc]))
Mix_PlayChannel(0, dialogClick, 0);
if (linc < size) {
switch (str[++linc]) {
case '!':
case '?':
case '.':
case ':':
tadv = 10;
break;
case ',':
case ';':
tadv = 5;
break;
default:
tadv = 1;
break;
}
} else {
typeOutDone = true;
}
}
return ret; // The buffered string.
}
/*
* Draw a formatted string to the specified coordinates.
*/
std::string uisprintf(const char *s, va_list args) {
std::unique_ptr<char[]> buf (new char[512]);
vsnprintf(buf.get(), 512, s, args);
std::string ret (buf.get());
return ret;
}
/*void importantText(const char *text, ...) {
va_list args;
dialogBoxText.clear();
va_start(args, text);
auto s = uisprintf(text, args);
va_end(args);
dialogBoxText = s;
dialogBoxExists = true;
dialogImportant = true;
dialogPassive = false;
dialogPassiveTime = 0;
}
void passiveImportantText(int duration, const char *text, ...) {
va_list args;
dialogBoxText.clear();
va_start(args, text);
auto s = uisprintf(text, args);
va_end(args);
dialogBoxText = s;
dialogBoxExists = true;
dialogImportant = true;
dialogPassive = true;
dialogPassiveTime = duration;
}*/
void drawPage(const GLuint& tex) {
pageTex = tex;
pageTexReady = true;
}
void drawNiceBox(vec2 c1, vec2 c2, float z) {
drawNiceBoxColor(c1, c2, z, Color(1.0f, 1.0f, 1.0f));
}
void drawNiceBoxColor(vec2 c1, vec2 c2, float z, Color c) {
// the textures for the box corners
static Texture boxCorner ("assets/ui/button_corners.png");
static Texture boxSideTop ("assets/ui/button_top_bot_borders.png");
static Texture boxSide ("assets/ui/button_side_borders.png");
// the dimensions of the corner textures
static const auto& boxCornerDim = boxCorner.getDim();
static const auto& boxCornerDim2 = boxCornerDim / 2;
// the amount of bytes to skip in the OpenGL arrays (see below)
auto stride = 5 * sizeof(GLfloat);
// we always want to make sure c1 is lower left and c2 is upper right
if (c1.x > c2.x) std::swap(c1.x, c2.x);
if (c1.y > c2.y) std::swap(c1.y, c2.y);
// if the box is too small, we will not be able to draw it
if (c2.x - c1.x < (boxCornerDim.x) || c2.y - c1.y < (boxCornerDim.y))
return;
GLfloat box_ul[] = {c1.x, c2.y - boxCornerDim2.y, z, 0.0f, 0.5f,
c1.x + boxCornerDim2.x, c2.y - boxCornerDim2.y, z, 0.5f, 0.5f,
c1.x + boxCornerDim2.x, c2.y, z, 0.5f, 1.0f,
c1.x + boxCornerDim2.x, c2.y, z, 0.5f, 1.0f,
c1.x, c2.y, z, 0.0f, 1.0f,
c1.x, c2.y - boxCornerDim2.y, z, 0.0f, 0.5f};
GLfloat box_ll[] = {c1.x, c1.y, z, 0.0f, 0.0f,
c1.x + boxCornerDim2.x, c1.y, z, 0.5f, 0.0f,
c1.x + boxCornerDim2.x, c1.y + boxCornerDim2.y, z, 0.5f, 0.5f,
c1.x + boxCornerDim2.x, c1.y + boxCornerDim2.y, z, 0.5f, 0.5f,
c1.x, c1.y + boxCornerDim2.y, z, 0.0f, 0.5f,
c1.x, c1.y, z, 0.0f, 0.0f};
GLfloat box_ur[] = {c2.x - boxCornerDim2.x, c2.y - boxCornerDim2.y, z, 0.5f, 0.5f,
c2.x, c2.y - boxCornerDim2.y, z, 1.0f, 0.5f,
c2.x, c2.y, z, 1.0f, 1.0f,
c2.x, c2.y, z, 1.0f, 1.0f,
c2.x - boxCornerDim2.x, c2.y, z, 0.5f, 1.0f,
c2.x - boxCornerDim2.x, c2.y - boxCornerDim2.y, z, 0.5f, 0.5f};
GLfloat box_lr[] = {c2.x - boxCornerDim2.x, c1.y, z, 0.5f, 0.0f,
c2.x, c1.y, z, 1.0f, 0.0f,
c2.x, c1.y + boxCornerDim2.y, z, 1.0f, 0.5f,
c2.x, c1.y + boxCornerDim2.y, z, 1.0f, 0.5f,
c2.x - boxCornerDim2.x, c1.y + boxCornerDim2.y, z, 0.5f, 0.5f,
c2.x - boxCornerDim2.x, c1.y, z, 0.5f, 0.0f};
GLfloat box_l[] = {c1.x, c1.y + boxCornerDim2.y, z, 0.0f, 0.0f,
c1.x + boxCornerDim2.x, c1.y + boxCornerDim2.y, z, 0.5f, 0.0f,
c1.x + boxCornerDim2.x, c2.y - boxCornerDim2.y, z, 0.5f, 1.0f,
c1.x + boxCornerDim2.x, c2.y - boxCornerDim2.y, z, 0.5f, 1.0f,
c1.x, c2.y - boxCornerDim2.y, z, 0.0f, 1.0f,
c1.x, c1.y + boxCornerDim2.y, z, 0.0f, 0.0f};
GLfloat box_r[] = {c2.x - boxCornerDim2.x, c1.y + boxCornerDim2.y, z, 0.5f, 0.0f,
c2.x, c1.y + boxCornerDim2.y, z, 1.0f, 0.0f,
c2.x, c2.y - boxCornerDim2.y, z, 1.0f, 1.0f,
c2.x, c2.y - boxCornerDim2.y, z, 1.0f, 1.0f,
c2.x - boxCornerDim2.x, c2.y - boxCornerDim2.y, z, 0.5f, 1.0f,
c2.x - boxCornerDim2.x, c1.y + boxCornerDim2.y, z, 0.5f, 0.0f};
GLfloat box_b[] = {c1.x + boxCornerDim2.x, c1.y, z, 0.0f, 0.0f,
c2.x - boxCornerDim2.x, c1.y, z, 1.0f, 0.0f,
c2.x - boxCornerDim2.x, c1.y + boxCornerDim2.y, z, 1.0f, 0.5f,
c2.x - boxCornerDim2.x, c1.y + boxCornerDim2.y, z, 1.0f, 0.5f,
c1.x + boxCornerDim2.x, c1.y + boxCornerDim2.y, z, 0.0f, 0.5f,
c1.x + boxCornerDim2.x, c1.y, z, 0.0f, 0.0f};
GLfloat box_t[] = {c1.x + boxCornerDim2.x, c2.y - boxCornerDim2.y, z, 0.0f, 0.5f,
c2.x - boxCornerDim2.x, c2.y - boxCornerDim2.y, z, 1.0f, 0.5f,
c2.x - boxCornerDim2.x, c2.y, z, 1.0f, 1.0f,
c2.x - boxCornerDim2.x, c2.y, z, 1.0f, 1.0f,
c1.x + boxCornerDim2.x, c2.y, z, 0.0f, 1.0f,
c1.x + boxCornerDim2.x, c2.y - boxCornerDim2.y, z, 0.0f, 0.5f};
GLfloat box_f[] = {c1.x + boxCornerDim2.x, c1.y + boxCornerDim2.y, z, 0.5f, 0.5f,
c2.x - boxCornerDim2.x, c1.y + boxCornerDim2.y, z, 0.5f, 0.5f,
c2.x - boxCornerDim2.x, c2.y - boxCornerDim2.y, z, 0.5f, 0.5f,
c2.x - boxCornerDim2.x, c2.y - boxCornerDim2.y, z, 0.5f, 0.5f,
c1.x + boxCornerDim2.x, c2.y - boxCornerDim2.y, z, 0.5f, 0.5f,
c1.x + boxCornerDim2.x, c1.y + boxCornerDim2.y, z, 0.5f, 0.5f};
glActiveTexture(GL_TEXTURE0);
glUniform1f(Render::textShader.uniform[WU_texture], 0);
Render::textShader.use();
Render::textShader.enable();
glUniform4f(Render::textShader.uniform[WU_tex_color], c.red, c.green, c.blue, c.alpha);
boxCorner.use();
// draw upper left corner
glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, stride, &box_ul[0]);
glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, stride, &box_ul[3]);
glDrawArrays(GL_TRIANGLES, 0, 6);
// lower left corner
glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, stride, &box_ll[0]);
glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, stride, &box_ll[3]);
glDrawArrays(GL_TRIANGLES, 0, 6);
// upper right corner
glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, stride, &box_ur[0]);
glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, stride, &box_ur[3]);
glDrawArrays(GL_TRIANGLES, 0, 6);
// lower right corner
glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, stride, &box_lr[0]);
glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, stride, &box_lr[3]);
glDrawArrays(GL_TRIANGLES, 0, 6);
// draw the middle of the box
glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, stride, &box_f[0]);
glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, stride, &box_f[3]);
glDrawArrays(GL_TRIANGLES, 0, 6);
boxSide.use();
// draw the left edge of the box
glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, stride, &box_l[0]);
glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, stride, &box_l[3]);
glDrawArrays(GL_TRIANGLES, 0, 6);
// draw right edge of the box
glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, stride, &box_r[0]);
glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, stride, &box_r[3]);
glDrawArrays(GL_TRIANGLES, 0, 6);
boxSideTop.use();
// draw bottom of the box
glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, stride, &box_b[0]);
glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, stride, &box_b[3]);
glDrawArrays(GL_TRIANGLES, 0, 6);
// draw top of the box
glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, stride, &box_t[0]);
glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, stride, &box_t[3]);
glDrawArrays(GL_TRIANGLES, 0, 6);
Render::textShader.disable();
Render::textShader.unuse();
}
void draw(void){
std::string rtext;
auto SCREEN_HEIGHT = static_cast<float>(game::SCREEN_HEIGHT);
// will return if not toggled
quest::draw();
if (pageTexReady) {
GLfloat page_verts[] = {
offset.x - 300, SCREEN_HEIGHT - 100, -6.0, 0, 0,
offset.x + 300, SCREEN_HEIGHT - 100, -6.0, 1, 0,
offset.x + 300, SCREEN_HEIGHT - 600, -6.0, 1, 1,
offset.x + 300, SCREEN_HEIGHT - 600, -6.0, 1, 1,
offset.x - 300, SCREEN_HEIGHT - 600, -6.0, 0, 1,
offset.x - 300, SCREEN_HEIGHT - 100, -6.0, 0, 0,
};
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, pageTex);
glUniform1i(Render::textShader.uniform[WU_texture], 0);
Render::textShader.use();
Render::textShader.enable();
glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, 5 * sizeof(GLfloat), page_verts);
glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, 5 * sizeof(GLfloat), page_verts + 3);
glDrawArrays(GL_TRIANGLES, 0 ,6);
Render::textShader.disable();
Render::textShader.unuse();
} /* else if (dialogBoxExists) {
rtext = typeOut(dialogBoxText);
if (dialogImportant) {
setFontColor(255, 255, 255);
if (dialogPassive) {
dialogPassiveTime -= game::time::getDeltaTime() * 12;
if (dialogPassiveTime < 0) {
dialogPassive = false;
dialogImportant = false;
dialogBoxExists = false;
}
}
*if (fadeIntensity == 255 || dialogPassive) {
setFontSize(24);
putStringCentered(offset.x,offset.y,rtext);
setFontSize(16);
}*
} else { //normal dialog box
float y = offset.y + SCREEN_HEIGHT / 2 - HLINES(8);
float x = offset.x - 300;
drawNiceBox(vec2 {x, y}, vec2 {x + 600, y - SCREEN_HEIGHT / 4}, -7.0);
setFontZ(-7.2f);
rtext = typeOut(dialogBoxText);
UISystem::putString(vec2(x + HLINES(2), y - fontSize - game::HLINE), rtext);
for (i = 0; i < dialogOptText.size(); i++) {
auto& sec = dialogOptText[i].second;
setFontColor(255, 255, 255);
auto tmp = putStringCentered(offset.x, sec.y,dialogOptText[i].first);
sec.z = offset.x + tmp;
sec.x = offset.x - tmp;
sec.y = y - SCREEN_HEIGHT / 4 + (fontSize + game::HLINE) * (i + 1);
if (mouse.x > sec.x && mouse.x < sec.z &&
mouse.y > sec.y && mouse.y < sec.y + 16) { // fontSize
setFontColor(255, 255, 0);
putStringCentered(offset.x, sec.y, dialogOptText[i].first);
}
}
setFontColor(255, 255, 255);
}
static unsigned int rtext_oldsize = 0;
if (rtext_oldsize != rtext.size()) {
if (!isspace(rtext[(rtext_oldsize = rtext.size()) - 1]))
Mix_PlayChannel(0, dialogClick, 0);
}
} else {
for (const auto &s : textToDraw)
putString(s.first.x, s.first.y, s.second);
}*/
//if (!fadeIntensity) {
/*vec2 hub = {
(SCREEN_WIDTH/2+offset.x)-fontSize*10,
(offset.y+SCREEN_HEIGHT/2)-fontSize
};*/
/*putText(hub.x,hub.y,"Health: %u/%u",player->health>0?(unsigned)player->health:0,
(unsigned)player->maxHealth
);*/
/*static GLuint frontHealth = Texture::genColor(Color(255,0,0));
static GLuint backHealth = Texture::genColor(Color(150,0,0));
if (player->isAlive()) {
hub.y-=fontSize*1.15;
GLfloat tex[] = {0.0, 0.0,
1.0, 0.0,
0.0, 1.0,
1.0, 1.0};
GLfloat back[] = {hub.x, hub.y, -7.0,
hub.x + 150, hub.y, -7.0,
hub.x, hub.y + 12, -7.0,
hub.x + 150, hub.y + 12, -7.0};
GLfloat front[] = {hub.x, hub.y, -7.1,
hub.x + 150, hub.y, -7.1,
hub.x, hub.y + 12, -7.1,
hub.x + 150, hub.y + 12, -7.1};
glUniform1i(Render::textShader.uniform[WU_texture], 0);
Render::textShader.use();
Render::textShader.enable();
glBindTexture(GL_TEXTURE_2D, frontHealth);
glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, 0, front);
glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, 0, tex);
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
glBindTexture(GL_TEXTURE_2D, backHealth);
glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, 0, back);
glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, 0, tex);
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
Render::textShader.disable();
Render::textShader.unuse();
}*/
/*
* Lists all of the quests the player is currently taking.
*/
/*setFontColor(255,255,255,fontTransInv);
if (player->inv->invOpen) {
hub.y = player->loc.y + fontSize * 8;
hub.x = player->loc.x;// + player->width / 2;
putStringCentered(hub.x,hub.y,"Current Quests:");
for(auto &c : player->qh.current) {
hub.y -= fontSize * 1.15;
putStringCentered(hub.x,hub.y,c.title);
}
hub.y = offset.y + 40*1.2;
hub.x = offset.x + SCREEN_WIDTH/2 - 40*1.5;
putStringCentered(hub.x,hub.y,"Equipment:");
hub.y = offset.y + SCREEN_HEIGHT/2 - 20;
hub.x = offset.x - SCREEN_WIDTH/2 + 45*4*1.5;
putStringCentered(hub.x,hub.y,"Inventory:");
}*/
// setFontColor(255,255,255,255);
//}
menu::draw();
// draw the mouse
static const Texture mouseTex ("assets/goodmouse.png");
Render::textShader.use();
glActiveTexture(GL_TEXTURE0);
mouseTex.use();
Render::useShader(&Render::textShader);
Render::drawRect(vec2(ui::mouse.x, ui::mouse.y - 64), vec2(ui::mouse.x + 64, ui::mouse.y), -9.9);
Render::textShader.unuse();
}
void takeScreenshot(GLubyte* pixels) {
auto SCREEN_WIDTH = game::SCREEN_WIDTH;
auto SCREEN_HEIGHT = game::SCREEN_HEIGHT;
time_t epoch = time(nullptr);
struct tm* timen = localtime(&epoch);
std::string name = "screenshots/";
name += std::to_string(1900 + timen->tm_year) += "-";
name += std::to_string(timen->tm_mon + 1) += "-";
name += std::to_string(timen->tm_mday) += "_";
name += std::to_string(timen->tm_hour) += "-";
name += std::to_string(timen->tm_min) += "-";
name += std::to_string(timen->tm_sec);
name += ".bmp";
FILE* bmp = fopen(name.c_str(), "w+");
// unsigned long header_size = sizeof(BITMAPFILEHEADER) +
// sizeof(BITMAPINFOHEADER);
BITMAPFILEHEADER bmfh;
BITMAPINFOHEADER bmih;
memset(&bmfh, 0, sizeof(BITMAPFILEHEADER));
memset(&bmih, 0, sizeof(BITMAPINFOHEADER));
bmfh.bfType = 0x4d42;
bmfh.bfOffBits = 54;
bmfh.bfSize = sizeof(BITMAPFILEHEADER) +
sizeof(BITMAPINFOHEADER);
bmfh.bfReserved1 = 0;
bmfh.bfReserved2 = 0;
bmih.biSize = sizeof(BITMAPINFOHEADER);
bmih.biBitCount = 24;
bmih.biClrImportant = 0;
bmih.biClrUsed = 0;
bmih.biCompression = 0;
bmih.biWidth = SCREEN_WIDTH;
bmih.biHeight = SCREEN_HEIGHT;
bmih.biPlanes = 1;
bmih.biSizeImage = 0;
bmih.biXPelsPerMeter = 0x0ec4;
bmih.biYPelsPerMeter = 0x0ec4;
fwrite(&bmfh, 1,sizeof(BITMAPFILEHEADER),bmp);
fwrite(&bmih, 1,sizeof(BITMAPINFOHEADER),bmp);
fwrite(pixels, 1,3*SCREEN_WIDTH*SCREEN_HEIGHT*sizeof(GLubyte),bmp);
delete[] pixels;
fclose(bmp);
}
bool handleGLEvent(SDL_Event& e) {
switch (e.type) {
case SDL_MOUSEBUTTONDOWN:
if ((UISystem::isDialog() | pageTexReady) && (e.button.button & SDL_BUTTON_RIGHT))
UISystem::advanceDialog();
return true;
break;
default:
break;
}
return false;
}
}
using namespace ui;
void InputSystem::receive(const MainSDLEvent& event)
{
const auto& e = event.event;
auto& ev = game::events;
switch (e.type) {
// escape - quit game
case SDL_QUIT:
game::endGame();
break;
// window events - used for resizing and stuff
case SDL_WINDOWEVENT:
switch (e.window.event) {
case SDL_WINDOWEVENT_RESIZED:
std::cout << "Window " << e.window.windowID << " resized to: " << e.window.data1 << ", " << e.window.data2 << std::endl;
auto w = e.window.data1;
auto h = e.window.data2;
ev.emit<WindowResizeEvent>(w,h);
break;
}
break;
// mouse movement - update mouse vector
case SDL_MOUSEMOTION:
premouse.x=e.motion.x;
premouse.y=e.motion.y;
break;
case SDL_MOUSEBUTTONUP:
ev.emit<MouseReleaseEvent>(mouse, e.button.button);
break;
case SDL_MOUSEBUTTONDOWN:
ev.emit<MouseClickEvent>(mouse, e.button.button);
if (UISystem::isDialog() || pageTexReady) {
if ((e.button.button & SDL_BUTTON_RIGHT))
UISystem::advanceDialog();
}
break;
case SDL_MOUSEWHEEL:
ev.emit<MouseScrollEvent>(e.wheel.y);
break;
// key presses
case SDL_KEYDOWN:
ev.emit<KeyDownEvent>(SDL_KEY);
switch(SDL_KEY){
case SDLK_t:
game::time::tick(100);
break;
}
break;
// key release
case SDL_KEYUP:
ev.emit<KeyUpEvent>(SDL_KEY);
if (SDL_KEY == SDLK_ESCAPE)
ui::menu::toggle();
if (SDL_KEY == SDLK_h) {
quest::toggle();
} else switch (SDL_KEY) {
case SDLK_F3:
debug ^= true;
break;
case SDLK_b:
if (debug)
posFlag ^= true;
break;
case SDLK_F12:
// Make the BYTE array, factor of 3 because it's RBG.
/*static GLubyte* pixels;
pixels = new GLubyte[ 3 * SCREEN_WIDTH * SCREEN_HEIGHT];
glReadPixels(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, GL_RGB, GL_UNSIGNED_BYTE, pixels);
takeScreenshot(pixels);*/
ev.emit<ScreenshotEvent>(game::SCREEN_WIDTH, game::SCREEN_HEIGHT);
std::cout << "Took screenshot" << std::endl;
break;
case SDLK_UP:
//player->inv->setSelectionUp();
break;
case SDLK_DOWN:
//player->inv->setSelectionDown();
break;
default:
break;
}
break;
default:
break;
}
}
void InputSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt)
{
(void)en;
(void)ev;
(void)dt;
// update mouse coords
mouse.x = premouse.x + offset.x - (game::SCREEN_WIDTH / 2);
mouse.y = (offset.y + game::SCREEN_HEIGHT / 2) - premouse.y;
}
bool UISystem::fadeEnable = false;
bool UISystem::fadeFast = false;
int UISystem::fadeIntensity = 0;
std::string UISystem::dialogText;
std::string UISystem::importantText;
std::vector<DialogOption> UISystem::dialogOptions;
int UISystem::dialogOptionResult;
void UISystem::fadeToggle(void)
{
fadeEnable ^= true;
fadeFast = false;
fadeIntensity = fadeEnable ? 0 : 255;
}
void UISystem::fadeToggleFast(void)
{
fadeEnable ^= true;
fadeFast = true;
}
void UISystem::waitForCover(void)
{
fadeIntensity = 0;
while (fadeIntensity < 255)
std::this_thread::sleep_for(1ms);
}
void UISystem::waitForUncover(void)
{
fadeIntensity = 255;
while (fadeIntensity > 0)
std::this_thread::sleep_for(1ms);
}
void UISystem::putText(const vec2& p, const std::string& s, ...)
{
va_list args;
va_start(args, s);
putString(p, uisprintf(s.c_str(), args));
va_end(args);
}
void UISystem::putString(const vec2& p, const std::string& s, float wrap)
{
vec2 offset = p, add;
for (auto c : s) {
switch (c) {
case '\n':
offset.y -= FontSystem::getSize() * 1.05f;
offset.x = p.x;
break;
case '\b':
offset.x -= add.x;
break;
case '\r':
case '\t':
break;
case ' ':
offset.x += FontSystem::getSize() / 2.0f;
break;
default:
add = FontSystem::putChar(floor(offset.x), floor(offset.y), c);
offset += add;
break;
}
if (wrap != 0.12345f && offset.x >= (wrap - 10)) {
offset.y -= FontSystem::getSize() * 1.05f;
offset.x = p.x;
}
}
//return offset.x;
}
float UISystem::putStringCentered(const vec2& p, const std::string& s, bool print)
{
int i = 0, lastnl = 0;
float width = 0, yy = p.y;
auto& font = FontSystem::getFont();
do {
switch (s[i]) {
case '\n':
putString(vec2(floor(p.x - width / 2), yy), s.substr(0, i));
lastnl = 1 + i;
width = 0;
yy -= FontSystem::getSize() * 1.15f;
break;
case '\b':
break;
case ' ':
width += FontSystem::getSize() / 2;
break;
default:
width += font[i].wh.x + FontSystem::getSize() * 0.1f;
break;
}
} while(s[++i]);
if (print)
putString(vec2(floor(p.x - width / 2), yy), s.substr(lastnl));
return width;
}
void UISystem::dialogBox(const std::string& n, const std::string& s, ...)
{
va_list args;
dialogText = n + ": ";
va_start(args, s);
dialogText += ui::uisprintf(s.c_str(), args);
va_end(args);
ui::ret.clear();
}
void UISystem::dialogAddOption(const std::string& o)
{
dialogOptions.emplace_back(OptionDim(), o);
}
void UISystem::dialogImportant(const std::string& s)
{
importantText = s;
ui::ret.clear();
}
void UISystem::waitForDialog(void)
{
while (isDialog())
std::this_thread::sleep_for(1ms);
}
int UISystem::getDialogResult(void)
{
return dialogOptionResult;
}
void UISystem::advanceDialog(void)
{
dialogText.clear();
importantText.clear();
if (!dialogOptions.empty()) {
int r = 1;
dialogOptionResult = 0;
for (auto& o : dialogOptions) {
if (ui::mouse.x > o.first.x - o.first.width / 2 && ui::mouse.x < o.first.x + o.first.width / 2 &&
ui::mouse.y > o.first.y && ui::mouse.y < o.first.y + 20) {
dialogOptionResult = r;
break;
}
r++;
}
dialogOptions.clear();
}
}
void UISystem::update(entityx::EntityManager& en, entityx::EventManager& ev, entityx::TimeDelta dt)
{
(void)en;
(void)ev;
(void)dt;
}
void UISystem::render(void)
{
if ((fadeEnable & (fadeIntensity < 255)))
fadeIntensity += fadeFast ? 15 : 5;
else if ((!fadeEnable & (fadeIntensity > 0)))
fadeIntensity -= fadeFast ? 15 : 5;
if (fadeIntensity < 0)
fadeIntensity = 0;
if (fadeIntensity > 255)
fadeIntensity = 255;
if (fadeIntensity != 0) {
vec2 p1 (offset.x - game::SCREEN_WIDTH / 2, offset.y - game::SCREEN_HEIGHT / 2);
vec2 p2 (p1.x + game::SCREEN_WIDTH, p1.y + game::SCREEN_HEIGHT);
GLfloat backdrop[] = {
p1.x, p1.y, -7.9, 0, 0,
p2.x, p1.y, -7.9, 0, 0,
p2.x, p2.y, -7.9, 0, 0,
p2.x, p2.y, -7.9, 0, 0,
p1.x, p2.y, -7.9, 0, 0,
p1.x, p1.y, -7.9, 0, 0,
};
Render::textShader.use();
Render::textShader.enable();
Colors::black.use();
glUniform4f(Render::textShader.uniform[WU_tex_color], 1.0f, 1.0f, 1.0f, fadeIntensity / 255.0f);
glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, 5 * sizeof(GLfloat), backdrop);
glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, 5 * sizeof(GLfloat), backdrop + 3);
glDrawArrays(GL_TRIANGLES, 0, 6);
Render::textShader.disable();
Render::textShader.unuse();
//setFontZ(-8.0);
}
if (!dialogText.empty()) {
vec2 where (offset.x - 300, game::SCREEN_HEIGHT - 60);
ui::drawNiceBox(vec2(where.x - 10, where.y - 200), vec2(where.x + 620, where.y + 20), -5.5f);
FontSystem::setFontZ(-6.0f);
putString(where, ui::typeOut(dialogText), where.x + 600);
if (!dialogOptions.empty()) {
float y = where.y - 180;
for (auto& o : dialogOptions) {
o.first.x = offset.x;
o.first.y = y;
o.first.width = putStringCentered(vec2(o.first.x, o.first.y), o.second, false);
y += 20;
if (ui::mouse.x > o.first.x - o.first.width / 2 && ui::mouse.x < o.first.x + o.first.width / 2 &&
ui::mouse.y > o.first.y && ui::mouse.y < y)
FontSystem::setFontColor(255, 255, 0);
putStringCentered(vec2(o.first.x, o.first.y), o.second);
FontSystem::setFontColor(255, 255, 255);
}
}
}
if (!importantText.empty()) {
FontSystem::setFontSize(24);
FontSystem::setFontZ(-9.0f);
putStringCentered(vec2(offset.x, 400), ui::typeOut(importantText));
FontSystem::setFontZ(-6.0f);
FontSystem::setFontSize(16);
}
}
|