Commit Graph

205 Commits

Author SHA1 Message Date
Doyle Thai 523fe0f2b1 Introduce notion of attack spec for battles
An attack spec will be used to hold the stats of both the attacker and
defender, grouping the data necessary to determine how much damage the
defender takes and other statuses caused by the attack.
2016-08-04 00:48:43 +10:00
Doyle Thai b5db6e0e2b Add one-shot audio playback (i.e. buffer all data) 2016-08-04 00:32:13 +10:00
Doyle Thai 1900de6a92 Create event queue and start sorting entity list
Use event queue to decouple audio playback from the battle system. Switch
back to using begin and end attack within the entity update loop for
conciseness.
2016-08-03 23:20:03 +10:00
Doyle Thai 190822c1f6 Add entity attack audio cue 2016-07-28 22:17:32 +10:00
Doyle Thai 9ec87fc8be Remove old tutorial file 2016-07-28 15:58:49 +10:00
Doyle Thai 85becdfd6c Merge the game to dengine, reduce header coupling
Until engine architecture can clearly be separated from the game, i.e.
notion of entity storage belonging to game and concept of entity belonging
to engine, worlds/scenes belonging to game or engine- the project will
only refer to Dengine.
2016-07-28 15:19:23 +10:00
Doyle Thai 8a3886a60e Separate entity functions to own file 2016-07-28 14:33:58 +10:00
Doyle Thai 1427ee3fde Add draft audio change concept on mob proximity 2016-07-28 13:36:16 +10:00
Doyle Thai ac775b39c2 Add error checking to Audio API 2016-07-28 13:11:30 +10:00
Doyle Thai 09972ced6e Add start/stop audio api, fix delete buffer bug
On intermittent stop of OpenAL playback deleting the buffers without
unqueuing the current buffers is an invalid operation, causing invalid
audio states on alGetSource().
2016-07-28 01:55:21 +10:00
Doyle Thai 630f2eaa5d Add audio looping, simplify audio API
Audio can be played with 1 call, audio_beginVorbisStream which
encapsulates the initialisation of the renderer and release on finish.
OpenAL is quoted to have a limitation of around 32 sources. Audio
renderers hence acquire a source slot on playback and immediately release
on finish. This ensures that sources are held optimally and minimises the
possibility of saturating the available sources.

Renderers hold an index to the source list, which the index reveals the
source ID for their use.
2016-07-27 22:50:14 +10:00
Doyle Thai 824d8fd8a0 Initial integration of audio to entity structure 2016-07-27 18:39:51 +10:00
Doyle Thai 54dd5c84fa Enumerate audio devices, add multi-audio rendering 2016-07-27 16:52:10 +10:00
Doyle Thai 9c3df0c488 Fix console rendering old strings, refactor audio
Removed duplication of audio buffering code in audio update and streaming
vorbis.
2016-07-27 01:40:22 +10:00
Doyle Thai 84a0f755ea Abstract audio playback into own file 2016-07-27 01:34:26 +10:00
Doyle Thai 99a700ca13 Add audio-streaming and loop support 2016-07-26 18:47:55 +10:00
Doyle Thai 6b2e759257 Basic audio with stb_vorbis decoding and openal 2016-07-25 22:10:50 +10:00
Doyle Thai 002d6524f1 Remove extraneous files, separate assets 2016-07-24 23:12:29 +10:00
Doyle Thai 71faaa78c4 Add openal-soft dependency, update opengl macro 2016-07-24 22:19:25 +10:00
Doyle Thai 8fc895e584 Unify entity update to only use state switches
Remove the use of beginAttack and endAttack in the entity update loop and
delegate all changes to entity through state switching. This
consolidates the flow of data in the loop more consistently by going
through one master function. This also minimises the number of
entry-points to functions that will update an entity states- for ease of
comprehension.
2016-07-24 01:22:59 +10:00
Doyle Thai a43102ee26 Rotate targetting reticule to mob. Add pivot point
Notion of pivot point now for rotating, i.e. the anchor point at which
rotations are applied. Rotating the reticule is done by using inverse
trigonometry, namely atan2f.
2016-07-23 21:26:15 +10:00
Doyle Thai 358f850a2c Fixed wrong cross referencing attack to anim data 2016-07-22 19:29:12 +10:00
Doyle Thai 7b13615614 More corner case checks for battle interaction 2016-07-21 02:04:17 +10:00
Doyle Thai 2707c46df1 Add better support for multi-entity battles 2016-07-20 21:42:45 +10:00
Doyle Thai 906d66a12a Inline entityUpdateAndRender, clean up if branches 2016-07-20 20:13:44 +10:00
Doyle Thai 4f5270881f Add utility scripts for finding todos and statics 2016-07-20 17:15:31 +10:00
Doyle Thai 3aaad2fba3 Add basic entity death code for singular entity 2016-07-20 02:23:11 +10:00
Doyle Thai 3e2287e13a Link avatar UI health display to hero health 2016-07-20 01:06:29 +10:00
Doyle Thai fd94eb5afd Mobs battle with hero, engine architect. changes
Mobs battle in real-time with the hero when in range. Start encapsulating
logic into entityStateSwitch() to organise entity properties changing
between different states.

Introduce basic concept of memory management in MemoryArena. Begin passing
around a memory object to track memory usage and eventually delegate
memory allocations through. Remove the old memory tracker in the debug
object and incorporate into engine primarily.

Add a debug console for logging information and events to the screen in
a console-like fashion. Debug is now initialised after the game, this is
so that you can pass the game's memory arena and font file to the debug
services. Debug services now properly initialise debug element positions
from this information and not through the update routine.
2016-07-19 21:19:26 +10:00
Doyle Thai 5fc58ca643 Create notion of state switching for entities
Encapsulate the process required to switch an entity from state to state
using a state switching function. Add extra minor debug markers.
2016-07-19 15:19:08 +10:00
Doyle Thai 403999b566 Change Animation names, stop input parse on attack 2016-07-19 13:32:31 +10:00
Doyle Thai b8b76cecd3 Switch entity anims to use references to assets 2016-07-19 03:47:32 +10:00
Doyle Thai fff9e6e5b2 Implement battle time bar attacking within range
The main debug drawing elements have been moved to debug.c to avoid
cluttering up the main game file. The downside is that thus far the debug
values only track values post-update.

We have a notion of begin attack and end attack to allow code to drive the
animation system and apply effects after an attack animation has
completed.
2016-07-18 22:02:47 +10:00
Doyle Thai e00ef52f8a Add hitbox size/render size notion 2016-07-18 20:37:14 +10:00
Doyle Thai c52d872058 Basic attack queue implemented for hero 2016-07-18 20:16:29 +10:00
Doyle Thai 129234fbeb Merge update with render section in update loop 2016-07-18 00:54:21 +10:00
Doyle Thai 4541023396 Basic tackle animation added 2016-07-18 00:45:39 +10:00
Doyle Thai 7971b10b74 Remove int v2 type, change V2i to cast i32 to f32
Mixing and matching V2 int and float types in the code creates too much
necessary work when an integer implementation has to interact with float
implementation. Let V2i create the cast for us and use floats for all
vector operations since they are mostly mathematic.
2016-07-17 23:45:59 +10:00
Doyle Thai 2745a8e25a Add simple animation scheduling infrastructure 2016-07-17 20:24:51 +10:00
Doyle Thai 88108bce19 Delete old assets, remove anim update in renderer
Begin to add notion of a hitbox entity size and the rendering size.
Dynamic entities such as players will have animations that should exceed
the size of the actual player, we should be able to render it at the
desired size even if larger than the actual size.

Collision still occurs on the entity size (i.e. hitbox). Remove the notion
of updating animation in the renderer, we update in WorldTraveller,
removing any concept of passing a "deltatime" to the renderer. The
renderer's purpose is to draw not parse animation logic.
2016-07-17 19:24:19 +10:00
Doyle Thai 62c5fe0629 Switch animation indexing to enum, toggle anim on spacebar 2016-07-17 17:16:09 +10:00
Doyle Thai ca6790cb1c Add entity action timer to schedule commands 2016-07-17 15:27:37 +10:00
Doyle Thai a426461dad Fix up include headers, try to reduce dependencies
Ensure that all headers are self-sufficient instead of relying on included
headers to include headers for execution.
2016-07-16 23:27:52 +10:00
Doyle Thai 6da8eff9b1 Fix hero avatar moving with camera 2016-07-16 21:08:30 +10:00
Doyle Thai 2d9fded235 Group texture & texture rect together in renderer 2016-07-16 20:21:49 +10:00
Doyle Thai 0d5725eb97 Entities now have health values associated 2016-07-16 20:06:52 +10:00
Doyle Thai 6c3ef63a65 Draw hero status on side with profile
Make hero texture rects start using the atlas data structure. Reduce the
number of slots for assets for now to minimise room for error.
2016-07-16 18:51:26 +10:00
Doyle Thai d74cabf5c6 Fix rendering of rects, draw debug target reticule 2016-07-16 17:41:17 +10:00
Doyle Thai d0b4c99787 Create empty texture idea, change function scopes
Some functions which should not be exposed in the API have been switched
to INTERNAL scope. We have a notion of an empty texture in World Traveller
that we can pass in situations where we just want to render a solid
colour with no associated texture.

The alternative to this was creating a separate shader for rendering
primitives but would require at some point to expose the AssetManager to
the renderer or the user on behalf has to manually switch shaders before
rendering (non-intuitive).
2016-07-16 17:15:03 +10:00
Doyle Thai 86b4d1e206 Add distance to battle range metric in pixels 2016-07-16 02:34:44 +10:00