aboutsummaryrefslogtreecommitdiffstats
path: root/src/entities.cpp.bak
blob: 25dd37957895cda79fdb788e27d5c3b408445abd (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
#include <entities.hpp>

#include <istream>
#include <sstream>
#include <fstream>

#include <ui.hpp>
#include <world.hpp>
#include <gametime.hpp>
#include <brice.hpp>

#include <render.hpp>
#include <engine.hpp>

///NEW
#include <components.hpp>
#include <entityx/entityx.h>
///OLD

extern std::istream *names;

extern Player *player;			// main.cpp
extern World *currentWorld;		// main.cpp
extern unsigned int loops;		// main.cpp

extern std::string xmlFolder;
extern XMLDocument currentXMLDoc;

// a dynamic array of pointers to the NPC's that are being assigned the preloads
std::vector<NPC *> aipreload;

// the size of the player's inventory
const unsigned int PLAYER_INV_SIZE = 43;
// the size of an NPC's inventory
const unsigned int NPC_INV_SIZE = 3;

static std::vector<std::string> randomDialog (readFileA("assets/dialog_en-us"));


void PlayerSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt)
{
	(void)en;
	(void)ev;
	(void)dt;

	if (!m_MoveLeft && !m_MoveRight)
		(*m_Player)->vel.x = 0;
}

void PlayerSystem::configure(entityx::EventManager &ev)
{
	ev.subscribe<KeyDownEvent>(*this);
	ev.subscribe<KeyUpEvent>(*this);
}

extern World  *currentWorldToLeft;
extern World  *currentWorldToRight;
extern bool gameRunning;
extern bool inBattle;

void PlayerSystem::receive(const KeyUpEvent &kue)
{
	auto p = *m_Player;
	auto kc = kue.keycode;

	if (kc == SDLK_ESCAPE) {
		ui::menu::toggle();
		p->save();
	} else if (kc == getControl(1)) {
		m_MoveLeft = false;
	} else if (kc == getControl(2)) {
		m_MoveRight = false;
	} else if (kc == getControl(3) || kc == getControl(4)) {
		player->speed = 1;
	} else if (kc == getControl(5)) {
		if (p->inv->invHover) {
			p->inv->invHover = false;
		} else {
			if (!p->inv->selected)
				p->inv->invOpening ^= true;
			else
				p->inv->selected = false;

			p->inv->mouseSel = false;
		}

		// disable action ui
		ui::action::disable();
	}
}

void PlayerSystem::receive(const KeyDownEvent &kde)
{
	auto p = *m_Player;
	auto kc = kde.keycode;

	auto worldSwitch = [&](const WorldSwitchInfo& wsi){
		player->canMove = false;
		ui::toggleBlackFast();
		ui::waitForCover();
		game::events.emit<BGMToggleEvent>(wsi.first->bgm, wsi.first);
		std::tie(currentWorld, player->loc) = wsi; // using p causes segfault
		game::engine.getSystem<WorldSystem>()->setWorld(currentWorld);
		ui::toggleBlackFast();
		ui::waitForUncover();
		player->canMove = true; // using p causes segfault
	};

	if ((kc == SDLK_SPACE) && (game::canJump & p->ground)) {
		p->loc.y += HLINES(2);
		p->vel.y = .4;
		p->ground = false;
	}

	if (!ui::dialogBoxExists || ui::dialogPassive) {
		if (kc == getControl(0)) {
			if (inBattle) {
				std::thread([&](void){
					auto thing = dynamic_cast<Arena *>(currentWorld)->exitArena(p);
					if (thing.first != currentWorld)
						worldSwitch(thing);
				}).detach();
			} else if (!ui::fadeIntensity) {
				std::thread([&](void){
					auto thing = currentWorld->goInsideStructure(p);
					if (thing.first != currentWorld)
						worldSwitch(thing);
				}).detach();
			}
		} else if (kc == getControl(1)) {
			if (!ui::fadeEnable) {
				p->vel.x = -PLAYER_SPEED_CONSTANT;
				if (std::stoi(game::getValue("Slow")) == 1)
					p->vel.x /= 2.0f;
				p->left = m_MoveLeft = true;
				p->right = m_MoveRight = false;
				if (currentWorldToLeft) {
					std::thread([&](void){
						auto thing = currentWorld->goWorldLeft(p);
						if (thing.first != currentWorld)
							worldSwitch(thing);
					}).detach();
				}
			}
		} else if (kc == getControl(2)) {
			if (!ui::fadeEnable) {
				p->vel.x = PLAYER_SPEED_CONSTANT;
				if (std::stoi(game::getValue("Slow")) == 1)
					p->vel.x /= 2.0f;
				p->right = m_MoveRight = true;
				p->left = m_MoveLeft = false;
				if (currentWorldToRight) {
					std::thread([&](void){
						auto thing = currentWorld->goWorldRight(p);
						if (thing.first != currentWorld)
							worldSwitch(thing);
					}).detach();
				}
			}
		} else if (kc == getControl(3)) {
			if (game::canSprint)
				p->speed = 2.0f;
		} else if (kc == getControl(4)) {
			p->speed = .5;
		} else if (kc == getControl(5)) {
			/*static int heyOhLetsGo = 0;

			//edown = true;

			// start hover counter?
			if (!heyOhLetsGo) {
				heyOhLetsGo = game::time::getTickCount();
				p->inv->mouseSel = false;
			}

			// run hover thing
			if (game::time::getTickCount() - heyOhLetsGo >= 2 && !(p->inv->invOpen) && !(p->inv->selected)) {
				p->inv->invHover = true;

				// enable action ui
				ui::action::enable();
			}*/
		}
	} else if (kc == SDLK_DELETE) {
		game::endGame();
	} else if (kc == SDLK_t) {
		game::time::tick(50);
	}
}


void getRandomName(Entity *e)
{
	auto names = readFileA("assets/names_en-us");
	auto name = names[randGet() % names.size()];

	// gender is a binary construct
	e->gender = (name[0] == 'm') ? MALE : FEMALE;

	e->name = &name[1];
}

Entity::Entity(void)
{
	vel = 0;
	width = 0;
	height = 0;
	health = 0;
	maxHealth = 0;
	outnabout = 0;
	targetx = 0.9112001f;

	type = UNKNOWNT;

	// set flags
	alive      = true;
	right      = true;
	left       = false;
	near       = false;
	canMove    = true;
	ground     = false;
	forcedMove = false;
	z = 0.0f;

	// clear counters
	ticksToUse = 0;
	hitCooldown = 0;

	hitDuration = maxHitDuration = 0;

	inv = nullptr;
}

// spawns the entity you pass to it based off of coords and global entity settings
void Entity::spawn(float x, float y)
{
	loc.x = x;
	loc.y = y;

	if (health == 0 && maxHealth == 0)
		health = maxHealth = 1;

	// generate a name
	if (type == MOBT)
		name = "mob";
	else
		getRandomName(this);

	setCooldown(0);
}

void Entity::takeHit(unsigned int _health, unsigned int cooldown)
{
	if (hitCooldown <= 1) {
		// modify variables
		health = fmax(health - _health, 0);
		forcedMove = true;
		hitCooldown = cooldown;

		hitDuration = maxHitDuration = 350.0f;

		// pushback
		vel.x = player->left ? -0.5f : 0.5f;
		vel.y = 0.2f;
	}
}

unsigned int Entity::coolDown()
{
	return hitCooldown;
}

void Entity::setCooldown(unsigned int c)
{
	hitCooldown = c;
}

void Entity::handleHits(void)
{
	hitCooldown = fmax(static_cast<int>(hitCooldown - game::time::getDeltaTime()), 0);
	hitDuration = fmax(hitDuration - game::time::getDeltaTime(), 0);

	if (!forcedMove)
		return;

	// reduce knockback
	if ((vel.x > 0.0005f) || (vel.x < -0.0005f))
		vel.x *= 0.6f;
	else
		forcedMove = false;
}

void Entity::die(void)
{
	alive = false;
	health = 0;

	/*if (xmle) {
		xmle->SetAttribute("alive", false);
		currentXMLDoc.SaveFile(currentXML.c_str(), false);
	}*/
}

bool Entity::isAlive(void) const
{
	return alive;
}

bool Entity::isHit(void) const
{
	return forcedMove;
}

void Entity::moveTo(float dest_x)
{
	targetx = dest_x;
}

Player::Player() : Entity()
{
	width = HLINES(10);
	height = HLINES(16);

	type = PLAYERT; //set type to player
	subtype = 0;
	health = maxHealth = 100;
	speed = 1;
	canMove = true;

	tex = TextureIterator({"assets/player/playerk.png",
						   "assets/player/playerk1.png",
						   "assets/player/playerk2.png",
						   "assets/player/playerk3.png",
						   "assets/player/playerk4.png",
						   "assets/player/playerk5.png",
						   "assets/player/playerk6.png",
						   "assets/player/playerk7.png",
						   "assets/player/playerk8.png"
					       });

	inv = new Inventory(PLAYER_INV_SIZE);
	dim2 tmpDim = Texture::imageDim(tex.getTexturePath(0));
	width = HLINES(tmpDim.x/2);
	height = HLINES(tmpDim.y/2);

	z = -2.0;
}

Player::~Player()
{
	delete inv;
	delete &tex;
}

void Player::createFromXML(XMLElement *e, World *w=nullptr)
{
	(void)e;
	(void)w;
}

void Player::saveToXML(void)
{}

NPC::NPC() : Entity()
{
	width = HLINES(10);
	height = HLINES(16);

	type	= NPCT; //sets type to npc
	subtype = 0;

	health = maxHealth = 100;

	maxHealth = health = 100;
	canMove = true;

	tex = TextureIterator({"assets/NPC.png"});
	inv = new Inventory(NPC_INV_SIZE);

	randDialog = randGet() % randomDialog.size();
	dialogIndex = 0;
	dialogCount = 0;

	dim2 tmpDim = Texture::imageDim(tex.getTexturePath(0));
	width = HLINES(tmpDim.x/2);
	height = HLINES(tmpDim.y/2);
}

NPC::~NPC()
{
	delete inv;
}

void NPC::createFromXML(XMLElement *e, World *w=nullptr)
{
	std::string npcname;
	bool dialog;
	unsigned int flooor;

	xmle = e;
	(void)w;

    // spawn at coordinates if desired
	E_LOAD_COORDS(100);

    // name override
	if (!(npcname = e->StrAttribute("name")).empty())
		name = npcname;

    // dialog enabling
	dialog = false;
	if (e->QueryBoolAttribute("hasDialog", &dialog) == XML_NO_ERROR && dialog)
		addAIFunc(false);
	else
        dialogIndex = 9999;

    // custom health value
	E_LOAD_HEALTH;

	// movemenet
	if (e->QueryBoolAttribute("canMove", &dialog) == XML_NO_ERROR)
		canMove = dialog;

	// dialog index
	if (e->QueryUnsignedAttribute("dindex", &flooor) == XML_NO_ERROR)
		dialogIndex = flooor;
}

void NPC::saveToXML(void)
{
	E_SAVE_HEALTH;
	E_SAVE_COORDS;
	xmle->SetAttribute("dindex", dialogIndex);
}

Merchant::Merchant() : NPC()
{
	width = HLINES(10);
	height = HLINES(16);

	type	= MERCHT; //sets type to merchant
	subtype = 0;

	health = maxHealth = 100;

	canMove = true;

	trade.reserve(100);
	currTrade = 0;

	inside = nullptr;

	//tex = new Texturec(1,"assets/NPC.png");
	//inv = new Inventory(NPC_INV_SIZE);
	//inv = new Inventory(1);

	//randDialog = rand() % RAND_DIALOG_COUNT - 1;
	dialogIndex = 0;

	dim2 tmpDim = Texture::imageDim(tex.getTexturePath(0));
	width = HLINES(tmpDim.x/2);
	height = HLINES(tmpDim.y/2);
}

Merchant::~Merchant()
{
}

void Merchant::saveToXML(void){}

Structures::Structures() : Entity()
{
	type = STRUCTURET;
	canMove = false;
	health = maxHealth = 1;
}

Structures::~Structures()
{
}

extern std::string currentXMLRaw;

void Structures::createFromXML(XMLElement *e, World *w)
{
	float spawnx;

	if (e->QueryBoolAttribute("alive", &alive) == XML_NO_ERROR && !alive) {
		//die();
		return;
	}

	inWorld = w;
	inside = e->StrAttribute("inside");

	// edge
	if (!inside.empty()) {
		insideWorld = loadWorldFromXMLNoTakeover(inside);
	}

	textureLoc = e->StrAttribute("texture");

	insideTex = Texture::loadTexture(e->StrAttribute("insideTexture"));

	spawn(static_cast<BUILD_SUB>(e->UnsignedAttribute("type")),
	      e->QueryFloatAttribute("spawnx", &spawnx) == XML_NO_ERROR ? spawnx : (randGet() % w->getTheWidth() / 2.0f),
	      100);

	xmle = e;
}

void Structures::saveToXML(void)
{
	xmle->SetAttribute("alive", alive);
}

Object::Object()
{
	type = OBJECTT;
}

Object::Object(std::string in, std::string pd)
{
	iname = in;

	pickupDialog = pd;
	questObject = !pd.empty();

	type = OBJECTT;
	width  = getItemWidth(in);
	height = getItemHeight(in);

	tex = TextureIterator({getItemTexturePath(in)});
}

Object::~Object()
{
}

void Object::createFromXML(XMLElement *e, World *w=nullptr)
{
	(void)e;
	(void)w;
}

void Object::saveToXML(void)
{}

void Object::reloadTexture(void)
{
	tex = TextureIterator({getItemTexturePath(iname)});
	width  = getItemWidth(iname);
	height = getItemHeight(iname);
}

bool Entity::isNear(const Entity *e) {
	return (e != nullptr) ? (pow(e->loc.x - loc.x, 2) + pow(e->loc.y - loc.y, 2) <= pow(HLINES(40), 2)) : false;
}

void NPC::drawThingy(void) const
{
	if (dialogCount) {
		const auto w = width / 3;
		GLfloat tex_coord[] = {
			0, 0, 1, 0, 1, 1,
			1, 1, 0, 1, 0, 0
		};
		const GLfloat c[4] = {
			loc.x + w, loc.y + height, loc.x + w * 2, loc.y + height + w
		};
		GLfloat coords[] = {
			c[0], c[1], z, c[2], c[1], z, c[2], c[3], z,
			c[2], c[3], z, c[0], c[3], z, c[0], c[1], z
		};

		// TODO use texture made for this
		static GLuint thingyColor = Texture::genColor(Color(236, 238, 15));

		Render::worldShader.use();
		Render::worldShader.enable();

		glBindTexture(GL_TEXTURE_2D, thingyColor);

		glVertexAttribPointer(Render::worldShader.coord, 3, GL_FLOAT, GL_FALSE, 0, coords);
		glVertexAttribPointer(Render::worldShader.tex, 2, GL_FLOAT, GL_FALSE, 0, tex_coord);
		glDrawArrays(GL_TRIANGLES, 0, 6);

		Render::worldShader.disable();
		Render::worldShader.unuse();
	}
}

void Entity::draw(void)
{
	GLfloat tex_coord[] = {0.0, 0.0,
						   1.0, 0.0,
						   1.0, 1.0,

						   1.0, 1.0,
						   0.0, 1.0,
						   0.0, 0.0};

	GLfloat tex_coordL[] = {1.0, 0.0,
						   	0.0, 0.0,
						   	0.0, 1.0,

						   	0.0, 1.0,
						   	1.0, 1.0,
						   	1.0, 0.0};

	GLfloat coords[] = {loc.x, loc.y, z,
						loc.x + width, loc.y, z,
						loc.x + width, loc.y + height, z,

						loc.x + width, loc.y + height, z,
						loc.x, loc.y + height, z,
						loc.x, loc.y, z};


	glActiveTexture(GL_TEXTURE0);

	if (!alive)
		return;

	if (type == NPCT) {
		NPCp(this)->drawThingy();

		if (gender == MALE)
			glColor3ub(255, 255, 255);
		else if (gender == FEMALE)
			glColor3ub(255, 105, 180);
	} else if (type == MOBT) {
		if (Mobp(this)->rider != nullptr) {
			Mobp(this)->rider->loc.x = loc.x + width * 0.25f;
	        Mobp(this)->rider->loc.y = loc.y + height - HLINES(5);
	        Mobp(this)->rider->vel.y = .12;
			Mobp(this)->rider->z     = z + 0.01;
	    }
	}
	switch(type) {
	case PLAYERT:
		static int texState = 0;
		if (speed && !(game::time::getTickCount() % ((2.0f/speed) < 1 ? 1 : (int)((float)2.0f/(float)speed)))) {
			if (++texState == 9)
				texState = 1;
			glActiveTexture(GL_TEXTURE0);
			tex(texState);
		}
		if (!ground) {
			glActiveTexture(GL_TEXTURE0);
			tex(0);
		} else if (vel.x) {
			glActiveTexture(GL_TEXTURE0);
			tex(texState);
		} else {
			glActiveTexture(GL_TEXTURE0);
			tex(0);
		}
		break;
	case MOBT:
		if (!Mobp(this)->bindTex())
			goto NOPE;
		break;
	case STRUCTURET:
		/* fall through */
	default:
		glActiveTexture(GL_TEXTURE0);
		tex(0);
		break;
	}

	Render::worldShader.use();
	// make the entity hit flash red
	if (maxHitDuration-hitDuration) {
		float flashAmt = 1-(hitDuration/maxHitDuration);
		glUniform4f(Render::worldShader.uniform[WU_tex_color], 1.0, flashAmt, flashAmt, 1.0);
	}

	glUniform1i(Render::worldShader.uniform[WU_texture], 0);
	Render::worldShader.enable();

	glVertexAttribPointer(Render::worldShader.coord, 3, GL_FLOAT, GL_FALSE, 0, coords);
	if (left)
		glVertexAttribPointer(Render::worldShader.tex, 2, GL_FLOAT, GL_FALSE, 0 ,tex_coordL);
	else
		glVertexAttribPointer(Render::worldShader.tex, 2, GL_FLOAT, GL_FALSE, 0 ,tex_coord);
	glDrawArrays(GL_TRIANGLES, 0, 6);

	glUniform4f(Render::worldShader.uniform[WU_tex_color], 1.0, 1.0, 1.0, 1.0);
NOPE:
if (near && type != MOBT)
	ui::putStringCentered(loc.x+width/2,loc.y-ui::fontSize-game::HLINE/2,name);
if (health != maxHealth) {

	static GLuint frontH = Texture::genColor(Color(255,0,0));
	static GLuint backH =  Texture::genColor(Color(150,0,0));
	glUniform1i(Render::worldShader.uniform[WU_texture], 0);

	GLfloat coord_back[] = {
		loc.x, 			loc.y + height, 			      z + 0.1f,
		loc.x + width,	loc.y + height, 			      z + 0.1f,
		loc.x + width, 	loc.y + height + game::HLINE * 2, z + 0.1f,

		loc.x + width, 	loc.y + height + game::HLINE * 2, z + 0.1f,
		loc.x, 			loc.y + height + game::HLINE * 2, z + 0.1f,
		loc.x, 			loc.y + height, 			      z + 0.1f,
	};

	GLfloat coord_front[] = {
		loc.x, 			                    loc.y + height,                   z,
		loc.x + health / maxHealth * width, loc.y + height,                   z,
		loc.x + health / maxHealth * width, loc.y + height + game::HLINE * 2, z,

		loc.x + health / maxHealth * width, loc.y + height + game::HLINE * 2, z,
		loc.x,                              loc.y + height + game::HLINE * 2, z,
		loc.x,                              loc.y + height,                   z,
	};

	glBindTexture(GL_TEXTURE_2D, backH);
	GLfloat tex[] = { 0.0, 0.0,
					  1.0, 0.0,
					  1.0, 1.0,

					  1.0, 1.0,
					  0.0, 1.0,
					  0.0, 0.0,
	};
	glVertexAttribPointer(Render::worldShader.coord, 3, GL_FLOAT, GL_FALSE, 0, coord_back);
	glVertexAttribPointer(Render::worldShader.tex, 2, GL_FLOAT, GL_FALSE, 0, tex);
	glDrawArrays(GL_TRIANGLES, 0, 6);

	glBindTexture(GL_TEXTURE_2D, frontH);
	glVertexAttribPointer(Render::worldShader.coord, 3, GL_FLOAT, GL_FALSE, 0, coord_front);
	glVertexAttribPointer(Render::worldShader.tex, 2, GL_FLOAT, GL_FALSE, 0, tex);
	glDrawArrays(GL_TRIANGLES, 0, 6);
}

Render::worldShader.disable();
Render::worldShader.unuse();
}

/**
 * Handles NPC movement, usually just random walking.
 */

void NPC::
wander(int timeRun)
{
	static int direction;

	if (forcedMove)
		return;

	if (hitCooldown)
		hitCooldown--;

	if (targetx != 0.9112001f) {
		if (loc.x > targetx + HLINES(5))
			vel.x = HLINES(-0.018);
		else if (loc.x < targetx - HLINES(5))
			vel.x = HLINES(0.018);
		else {
			targetx = 0.9112001f;
			vel.x = 0;
		}
	} else if (ticksToUse == 0) {
		ticksToUse = timeRun;

		vel.x = HLINES(0.008);
		direction = (randGet() % 3 - 1);

		if (direction == 0)
			ticksToUse *= 2;

		vel.x *= direction;
	}

	if (vel.x < 0)
		currentWorld->goWorldLeft(this);

	ticksToUse--;
}

void NPC::addAIFunc(bool preload)
{
	if (preload)
		aipreload.push_back(this);
	else
		++dialogCount;
}

extern int commonAIFunc(NPC *speaker);

void NPC::interact() { //have the npc's interact back to the player
	std::thread([this]{
		std::vector<XMLElement *> dopt;
		XMLDocument *xml;
		XMLElement *exml,*oxml;

		static unsigned int oldidx = 9999;
		const char *ptr;
		std::string nname;
		unsigned int idx;
		bool stop;
		float tgt = 0.12345678f;
		bool pmove = true, advance = false;

		loc.y += 5;

		// freeze the npc, face the player
		canMove = false;
		left    = (player->loc.x < loc.x);
		right   = !left;

		// if there's actual scripted stuff to do, do it
		if (dialogCount && dialogIndex != 9999) {
			// load the XML file and find the dialog tags
			if (outnabout == 0) {
				xml = &currentXMLDoc;
			} else if (outnabout < 0) {
				xml = new XMLDocument();
				xml->LoadFile((xmlFolder + currentWorld->getToLeft()).c_str());
			} else {
				xml = new XMLDocument();
				xml->LoadFile((xmlFolder + currentWorld->getToRight()).c_str());
			}

COMMONAIFUNC:
			idx = 0;
			stop = false;
			exml = xml->FirstChildElement("Dialog");

			// search for the dialog block associated with this npc
			while (exml->StrAttribute("name") != name)
				exml = exml->NextSiblingElement();

			// search for the desired text block
			exml = exml->FirstChildElement();
			do {
				if (std::string("text") == exml->Name() && exml->UnsignedAttribute("id") == (unsigned)dialogIndex)
					break;
			} while ((exml = exml->NextSiblingElement()));

			// handle quest tags
			if ((oxml = exml->FirstChildElement("quest"))) {
				std::string qname;

				// iterate through all quest tags
				do {
					// assign quest
					if (!(qname = oxml->StrAttribute("assign")).empty())
						player->qh.assign(qname, oxml->StrAttribute("desc"), (oxml->GetText() == nullptr) ? "" : oxml->GetText());

					// check / finish quest
					else if (!(qname = oxml->StrAttribute("check")).empty()) {
						if (player->qh.hasQuest(qname) && player->qh.finish(qname)) {
							// QuestHandler::finish() did all the work..
							break;
						} else {
							// run error dialog
							oldidx = dialogIndex;
							dialogIndex = oxml->UnsignedAttribute("fail");
							goto COMMONAIFUNC;
						}
					}
				} while((oxml = oxml->NextSiblingElement("quest")));
			}

			// handle give tags
			if ((oxml = exml->FirstChildElement("give"))) {
				do player->inv->addItem(oxml->Attribute("id"), oxml->UnsignedAttribute("count"));
				while ((oxml = oxml->NextSiblingElement("give")));
			}

			// handle take tags
			if ((oxml = exml->FirstChildElement("take"))) {
				do player->inv->takeItem(oxml->Attribute("id"), oxml->UnsignedAttribute("count"));
				while ((oxml = oxml->NextSiblingElement()));
			}

			// handle movement directs
			if ((oxml = exml->FirstChildElement("gotox"))) {
				moveTo((tgt = std::stoi(oxml->GetText())));
				if (oxml->QueryBoolAttribute("playerMove", &pmove) != XML_NO_ERROR)
					pmove = true;
				if (oxml->QueryBoolAttribute("advance", &advance) != XML_NO_ERROR)
					advance = false;
			}

			// handle attribute setting
			if ((oxml = exml->FirstChildElement("set"))) {
				do game::setValue(oxml->StrAttribute("id"), oxml->StrAttribute("value"));
				while ((oxml = oxml->NextSiblingElement()));
				game::briceUpdate();
			}

			// asdlfkj

			auto txml = exml->FirstChildElement("content");
			if (txml == nullptr)
				goto OTHERSTUFF;

			ptr = txml->GetText() - 1;
			while (*++ptr && isspace(*ptr));

			// handle dialog options
			if ((oxml = exml->FirstChildElement("option"))) {
				std::string optstr;

				// convert option strings to a colon-separated format
				do {
					// append the next option
					optstr.append(std::string(":") + oxml->Attribute("text"));

					// save the associated XMLElement
					dopt.push_back(oxml);
				} while ((oxml = oxml->NextSiblingElement()));

				// run the dialog stuff
				ui::dialogBox(name, optstr, false, ptr);
				ui::waitForDialog();

				if (ui::dialogOptChosen)
					exml = dopt[ui::dialogOptChosen - 1];

				dopt.clear();
			}

			// optionless dialog
			else {
				ui::dialogBox(name, "", false, ptr);
				ui::waitForDialog();
			}

OTHERSTUFF:

			// trigger other npcs if desired
			if (!(nname = exml->StrAttribute("call")).empty()) {
				NPC *n = dynamic_cast<NPC *>(*std::find_if(std::begin(currentWorld->entity), std::end(currentWorld->entity), [nname](Entity *e) {
					return (e->type == NPCT && e->name == nname);
				}));

				if (exml->QueryUnsignedAttribute("callid", &idx) == XML_NO_ERROR) {
					n->dialogIndex = idx;
					n->addAIFunc(false);
				}
			}

			if (tgt != 0.12345678f) {
				stop = canMove;
				canMove = true;
				while (targetx != 0.9112001f) {
					if (!pmove)
						player->speed = 0;
				}
				if (!pmove) {
					pmove = true;
					player->speed = 1;
				}
				canMove = stop;
			}

			// handle potential following dialogs
			if ((idx = exml->UnsignedAttribute("nextid"))) {
				dialogIndex = idx;

				// stop talking
				if (exml->QueryBoolAttribute("stop", &stop) == XML_NO_ERROR && stop) {
					dialogIndex = 9999;
					dialogCount--;
				}

				// pause, allow player to click npc to continue
				else if (exml->QueryBoolAttribute("pause", &stop) == XML_NO_ERROR && stop) {
					//return 1;
				}

				// instantly continue
				else {
					goto COMMONAIFUNC;
				}
			}

			// advance if desired
			else if (advance) {
				goto COMMONAIFUNC;
			}

			// stop talking
			else {
				// error text?
				if (oldidx != 9999) {
					dialogIndex = oldidx;
					oldidx = 9999;
				} else {
					dialogIndex = 9999;
					dialogCount--;
				}
			}
		} else {
			ui::dialogBox(name, "", false, randomDialog[randDialog]);
		}

		ui::waitForDialog();
		canMove = true;
	}).detach();
}

void Merchant::wander(int timeRun) {
	static int direction;

	if (forcedMove)
		return;

	if (ticksToUse == 0) {
		ticksToUse = timeRun;

		vel.x = HLINES(0.008);
		direction = (randGet() % 3 - 1);

		if (direction == 0)
			ticksToUse *= 2;

		vel.x *= direction;
	}

	if (vel.x < 0)
		currentWorld->goWorldLeft(this);
	if (inside != nullptr) {
		loc.y = inside->loc.y + HLINES(2);
		vel.y = GRAVITY_CONSTANT * 5;
		if (loc.x <= inside->loc.x + HLINES(5))
			loc.x = inside->loc.x + HLINES(5);
		else if (loc.x + width >= inside->loc.x + inside->width - HLINES(5))
			loc.x = inside->loc.x + inside->width - width - HLINES(5);
	}
	ticksToUse--;
}

void Merchant::interact() {
	std::thread([this]{
		ui::merchantBox(name.c_str(), trade[currTrade], ":Accept:Good-Bye", false, toSay->c_str());
		ui::waitForDialog();

		// handle normal dialog options
		switch (ui::dialogOptChosen) {
		// Accept
		case 1:
			if (!(player->inv->takeItem(trade[currTrade].item[1], trade[currTrade].quantity[1]))) {
				player->inv->addItem(trade[currTrade].item[0],trade[currTrade].quantity[0]);
				toSay = &text[1];
				interact();
			} else {
				toSay = &text[2];
				interact();
			}
			break;

		// Good-bye
		case 2:
			break;

		default:
			break;
		}

		// handle merchant-specific dialog options
		switch (ui::merchOptChosen) {
		// left arrow
		case 1:
			if (currTrade)
				currTrade--;
			ui::dontTypeOut();
			interact(); // TODO should we nest like this?
			break;

		// right arrow
		case 2:
			if (currTrade < trade.size() - 1)
				currTrade++;
			ui::dontTypeOut();
			interact();
			break;

		default:
			break;
		toSay = &text[0];
		}
	}).detach();
}

void Object::interact(void) {
	std::thread([this]{
		if(questObject && alive){
			ui::dialogBox(player->name, ":Yes:No", false, pickupDialog);
			ui::waitForDialog();
			if (ui::dialogOptChosen == 1) {
				player->inv->addItem(iname, 1);
				alive = false;
			}
		}else{
			alive = false;
			player->inv->addItem(iname, 1);
		}
	}).detach();
}

bool Entity::isInside(vec2 coord) const {
	return coord.x >= loc.x &&
	   	   coord.x <= loc.x + width &&
	   	   coord.y >= loc.y	&&
	       coord.y <= loc.y + height;
}

/*
 *	This spawns the structures
 *
 * Structures::spawn		This allows us to spawn buildings and large amounts of entities with it.
 *							Passed are the type and x and y coordinates. These set the x and y coords
 *							of the structure being spawned, the type pass just determines what rules to follow
 *							when spawing the structure and entities. In theory this function can also spawn
 *							void spawn points for large amounts of entities. This would allow for the spawn
 *							point to have non-normal traits so it could be invisible or invincible...
*/

unsigned int Structures::spawn(BUILD_SUB sub, float x, float y) {
	loc.x = x;
	loc.y = y;
	type = STRUCTURET;

	alive = true;
	canMove = false;

	bsubtype = sub;
	dim2 dim;

	z = 1.0;
	/*
	 *	tempN is the amount of entities that will be spawned in the village. Currently the village
	 *	will spawn bewteen 2 and 7 villagers for the starting hut.
	*/

	//unsigned int tempN = (randGet() % 5 + 2);

	if (textureLoc.empty())
		textureLoc = inWorld->getSTextureLocation(sub);

	switch(sub) {
		case STALL_MARKET:
			tex = TextureIterator({ textureLoc });
			dim = Texture::imageDim(textureLoc);
			width = HLINES(dim.x/2);
			height = HLINES(dim.y/2);
			break;
		default:
			tex = TextureIterator({ textureLoc });
			dim = Texture::imageDim(textureLoc);
			width = HLINES(dim.x/2);
			height = HLINES(dim.y/2);
			inv = NULL;
			break;
	}

	return 0;
}

/*Particles::Particles(const Structures *&s, vec2 vell, Color c, float d, )
{

}*/

Particles::Particles(float x, float y, float w, float h, float vx, float vy, Color c, float d)
{
	loc = vec2 {x, y};
	vel = vec2 {vx, vy};
	width = w;
	height = h;
	color = c;
	duration = d;
	gravity = true;
	fountain = false;
	behind = false;
	bounce = false;
	index = Texture::getIndex(c);
	zOffset = ((rand()%20)-10)/1000.0f;
	stu = nullptr;
}

void Particles::draw(GLfloat*& p) const
{
	vec2 tc = vec2(0.25f * index.x, 0.125f * (8.0f - index.y));

	float z = (behind ? 2.0f : 0.9f) + zOffset;

	// lower left
    *(p++) = loc.x;
    *(p++) = loc.y;
    *(p++) = z;

	*(p++) = tc.x;
	*(p++) = tc.y;

	// lower right
    *(p++) = loc.x + width;
    *(p++) = loc.y;
    *(p++) = z;

	*(p++) = tc.x;
	*(p++) = tc.y;

	// upper right
    *(p++) = loc.x + width;
    *(p++) = loc.y + height;
    *(p++) = z;

	*(p++) = tc.x;
	*(p++) = tc.y;

	// upper right
    *(p++) = loc.x + width;
    *(p++) = loc.y + height;
    *(p++) = z;

	*(p++) = tc.x;
	*(p++) = tc.y;

	// upper left
    *(p++) = loc.x;
    *(p++) = loc.y + height;
    *(p++) = z;

	*(p++) = tc.x;
    *(p++) = tc.y;

	// lower left
    *(p++) = loc.x;
    *(p++) = loc.y;
    *(p++) = z;

    *(p++) = tc.x;
    *(p++) = tc.y;
}

void Particles::update(float _gravity, float ground_y)
{
	auto delta = game::time::getDeltaTime();

	// handle ground collision
	if (loc.y < ground_y) {
		loc.y = ground_y;

		// handle bounce
		if (bounce) {
			vel.y *= -0.2f;
			vel.x /= 4.0f;
		} else {
			vel = 0.0f;
			canMove = false;
		}
	}

	// handle gravity
	else if (gravity && vel.y > -1.0f) {
		vel.y -= _gravity * delta;
	}

	// handle lifetime
	duration -= delta;
}

bool Particles::timeUp(void)
{
	return !(duration > 0);
}

void Player::save(void) {
	std::string data;
	std::ofstream out (xmlFolder + ".main.dat", std::ios::out | std::ios::binary);
	std::cout<<"Saving player data..."<<std::endl;
	data.append(std::to_string((int)loc.x) + "\n");
	data.append(std::to_string((int)loc.y) + "\n");
	data.append(std::to_string((int)health) + "\n");
	data.append(std::to_string((int)maxHealth) + "\n");
	data.append(std::to_string((int)game::time::getTickCount()) + "\n");

	data.append("qwer\n");
	data.append(std::to_string((int)inv->Items.size()) + "\n");
	for(auto &i : inv->Items) {
		if(i.second)
			data.append(std::to_string(uint(i.second)) + "\n" + i.first->name + "\n");
	}
	data.append("qwer\n");

	data.append(std::string(currentXML.data() + 4) + "\n");

	data.append("dOnE\0");
	out.write(data.data(),data.size());
	out.close();
}

void Player::sspawn(float x,float y) {
	unsigned int i;
	int count;
	std::ifstream in (xmlFolder + ".main.dat", std::ios::in | std::ios::binary);
	spawn(x,y);

	if (in.good()) {
		std::istringstream data;
		std::string ddata;
		std::streampos len;

		in.seekg(0,std::ios::end);
		len = in.tellg();
		in.seekg(0,std::ios::beg);

		std::vector<char> buf (len,'\0');
		in.read(buf.data(),buf.size());

		data.rdbuf()->pubsetbuf(buf.data(),buf.size());

		std::getline(data,ddata);
		loc.x = std::stoi(ddata);
		std::getline(data,ddata);
		loc.y = std::stoi(ddata);
		std::getline(data,ddata);
		health = std::stoi(ddata);
		std::getline(data,ddata);
		maxHealth = std::stoi(ddata);
		std::getline(data,ddata);
		game::time::tick(std::stoi(ddata));

		std::getline(data,ddata);
		std::getline(data,ddata);

		for (i = std::stoi(ddata);i;i--) {
			std::getline(data,ddata);
			if (ddata == "qwer")
				break;
			count = std::stoi(ddata);

			std::getline(data,ddata);
			if (ddata == "qwer")
				break;
			inv->addItem(ddata, (uint)count);
		}

		std::getline(data,ddata);
		currentWorld = loadWorldFromXMLNoSave(ddata);

		in.close();
	}
}


//NEW
void entityxTest(void)
{
	entityx::Entity e = game::entities.create();
	e.assign<Position>(100.0f, 100.0f);
	e.assign<Direction>(0.0f, 0.0f);
	
	e = game::entities.create();
	e.assign<Position>(0.0f, 100.0f);
	e.assign<Direction>(-0.01f, 0.0f);
	e.assign<Visible>(-.2f);
	auto sprite_h = e.assign<Sprite>();
	sprite_h->addSpriteSegment(SpriteData(game::sprite_l.loadSprite("assets/cat.png"),
							  			  vec2(0, 0),
										  vec2(19, 15)),
										  vec2(0, 0));
}