aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog
blob: f21582b473a959a6848cc919099c810ee0b01db5 (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
9/22/2015:
==========

	- created Changelog
	- fully documented world.h, world.cpp, entities.h and entities.cpp
	- fixed interpolation
	- made entities dynamically allocatable

9/23/2015:
==========

	- fully documented ui.h and ui.cpp
	- converted most world functions to only needing a Player pointer
	- added entity-world binding, so that only a single world draw()/detect() needs to be called per loop in main.cpp
	- added dialog boxes and a key binding to acknoledge them (make them disappear)
	- added a togglable debug overlay thing (F3)
	- added villages

9/24/2015:
==========

	- improved entity binding
	- added structures, villagers, and a basic villager AI

9/26/2015:
==========

	- added a base for indoor areas

9/28/2015:
==========

	- added dropping from platforms
	- added structure entering/exiting
	- improved world/entity handling
	- fixed NPC generation
	- added enumerators for entity types
	- improved NPC wandering

9/29/2015:
==========

	- made world handling work with interpolation
	- successfully ran game 200 entities
	- improved debug screen
	- added mouse interaction w/ NPCs
	
9/30/2015:
==========

	- improved left/right movement
	- added framework work NPC dialog n' stuff
	- added quest stuff between NPCs and player
	- began work on giving names to NPCs
	- began working on config file
	- created a bug file
	
	- added displaying of entity names on mouse hover
	- found more fonts
	
10/1/2015:
==========

	- player can now complete assigned requests
	- player's name is displayed
	- improved gravity so entities don't shake on the ground

10/2/2015:
==========

	- added a basic inventory
	- quests can reward one type of item (but any quantity of that item)
	- added texture loading, began working on player textures

10/5/2015:
==========

	- added NPC/player/structure textures
	- textures flip with direction
	- made a beautiful Makefile
	- moved main game loop into separate function

10/6/2015:
==========

	- Makefile only builds edited files now
	- improved sprites
	- improved world drawing

10/8/2015:
==========

	- added background image
	- added grass
	- added running textures to player
	- added crouching
	- improved world draw, world now draws player as well

10/9/2015:
==========

	- improved player inventory
	- improved quests
	- added mobs
	- added DEBUG flags and functions to inventory.cpp and ui.cpp

10/13/2015:
===========

	- cleaned up main.cpp
	- added DEBUG flags to common.cpp and Quest.cpp
	- added player health
	- made textures for rabbit

10/15/2015:
===========

	- fixed quest assignment/completion
	- entities can't move when interacting now
	- added GLEW libraries
	- worked on delaying quest assignments until dialog is closed

10/16/2015:
===========

	- fixed delaying quest assignments until dialog is closed
	- checked and secured errors in malloc/calloc calls
	
10/19/2015:
===========

	- fixed malloc/strlen bug that crashes the game on some linux systems
	- broke andy's linux system on his laptop, allowing for test game build on Windows
	- began extensive documentation in main.cpp
	
10/20/2015:
===========

	- andy's laptop 'can' boot
	- added 200+ lines of documentation to main.cpp
	
10/21/2015:
===========

	- andy's laptop works :)
	- finished documenting main.cpp, bringing it to 759 lines
	- began documenting entities.h/.cpp and world.h/.cpp
	- fixed structure physics
	- improved include locations