TheoryOfNekomata
bfc290567b
Fix list and pool errors
Change the pool list initializations.
2 年之前
TheoryOfNekomata
bc4593d806
Add memory-related code
Add memory and data-related implementations for handling game data.
2 年之前
TheoryOfNekomata
1095a92c61
Update mock int types
Use consistent integer types for mocks.
2 年之前
TheoryOfNekomata
5caae74ebc
Update video tests
Properly mock video function dependencies.
2 年之前
TheoryOfNekomata
259780cdb2
Fix multi player support
Correctly dereference pointers.
2 年之前
TheoryOfNekomata
e4d4441b07
Update tests
Update input tests.
2 年之前
TheoryOfNekomata
effcd08fcb
Optimize MIDI events handling
Declare memory before processing.
2 年之前
TheoryOfNekomata
464e013a46
Update loops
Declare variables early on.
2 年之前
TheoryOfNekomata
d1999f7667
Add convenience typedefs
Use short names for int types.
2 年之前
TheoryOfNekomata
9417a20d9a
Improve initialization logic
Provide default states for input and output.
2 年之前
TheoryOfNekomata
7454c41463
Add channel config
Allow MIDI input to be filtered through MIDI channels.
2 年之前
TheoryOfNekomata
1f7f00e39b
Adapt messages to receive from any channel
Use higher bits of first message byte to get notes from all channels.
2 年之前
TheoryOfNekomata
f6e8f3e7db
Update default controls
Restrict Yes/No actions in same 2-octave span.
2 年之前
TheoryOfNekomata
6f3950a598
Update reference config
The file has been updated upon introducing MIDI controller input
support.
2 年之前
TheoryOfNekomata
9012772322
Add experimental MIDI controller input support
The game now uses MIDI support for alternative input methods.
2 年之前
TheoryOfNekomata
81549f3616
Encapsulate I/O
Put I/O values to their respective structs.
2 年之前
TheoryOfNekomata
ca36ea018d
Refactor structure
Isolate input items into their own directory.
2 年之前
TheoryOfNekomata
e53b96adb3
Rename joystick directions
Ensure joystick direction enum names are consistent.
2 年之前
TheoryOfNekomata
0cee207138
Implement abstractions
Ensure each initialization method is in its own source.
2 年之前
TheoryOfNekomata
627e2a8f28
Update tests
Ensure correct arguments are passed.
2 年之前
TheoryOfNekomata
3c3c971726
Optimize config loading
Determine config path only once.
2 年之前
TheoryOfNekomata
33cc6e5edb
Add Spine dependency
Add spine-runtimes to dependencies
2 年之前
TheoryOfNekomata
b8f5131fb9
Implement geometry methods
Add geometry methods for point, vector, and rectangle.
2 年之前
TheoryOfNekomata
0ae822976a
Organize tests
Ensure one type of test can only be handled at a time.
2 年之前
TheoryOfNekomata
881b415d60
Implement joystick tests
Implement tests for joystick axis, hat, and button events.
2 年之前
TheoryOfNekomata
13bc81c018
Organize CMakeLists
Order files from order of includes.
2 年之前
TheoryOfNekomata
d9cb1483d0
Organize test fixtures
Add third-party mocks, specify mock files.
/? Do we need first-party mocks in their own files, or can we provide a
mock flag in the implementation files already?
2 年之前
TheoryOfNekomata
656bcf0260
Isolate input/output handling
Make device handling opt-in.
2 年之前
TheoryOfNekomata
6a0e71faef
Update mocks
Use types from header file.
2 年之前
TheoryOfNekomata
093653d1e6
Define call count type
Use call count type to contextualize call counts.
2 年之前
TheoryOfNekomata
6d6c35d557
Define mock macros
Use macros for syntactic sugar.
2 年之前
TheoryOfNekomata
498051b454
Add mocks and stubs
Include mocks and stubs implementation in config unit tests.
2 年之前
TheoryOfNekomata
123ccffa2b
Define constants
Use #define instead of const for constants.
2 年之前
TheoryOfNekomata
d320b66402
Add unit tests
Use bdd-for-c for unit tests.
2 年之前
TheoryOfNekomata
3f1757574a
Reorganize game loop
Honor the FPS cap with updating video. Now the update occurs after
processing all the input actions.
2 年之前
TheoryOfNekomata
cc63e9e338
Add gamepad/joystick support
Implement event handling for gamepads and joysticks.
In addition, the events are ordered according to SDL compatibility.
2 年之前
TheoryOfNekomata
e5b0e5129d
Refactor structure
Extract config-related code to their own source files.
2 年之前
TheoryOfNekomata
f3d50bcd99
Save config upon loading
Ensure that initial loading of the config saves the values back to the
config file, in order to account for fallback values.
2 年之前
TheoryOfNekomata
aa41c57db6
Add ini parser, setup custom config
We use minIni to parse ini files instead of implementing our own. This
is useful for config modifiable by the user, such as controls.
However, we haven't implemented a fault-tolerant config that writes to
the config when the existing file is corrupted or non-existent. We will
have to define a "save" as soon as we have all values defined for our
in-memory config, regardless if we have retrieved the values
successfully or provided default hardcoded values.
Since we use an external dependency to manage our configs, the CMake
config must be modified and the source files included in the build. How
do we organize the dependencies from other Git repositories moving forward?
2 年之前
TheoryOfNekomata
d5bdd3c101
Update CMake config, add events demo
Make CMake load dependencies relative to project directory.
2 年之前