kichikuou
8eaaec8e16
Add scenario address to cali parse error messages
2024-12-03 11:08:51 +09:00
kichikuou
f28612bd44
Add more Android project directories / files to .gitignore
2024-11-26 08:39:15 +09:00
kichikuou
e330a0dba6
Add warning message about game ID detection
2024-11-26 08:26:57 +09:00
kichikuou
9cc9f117ce
Version 1.1.0
v1.1.0
2024-08-17 16:46:15 +09:00
kichikuou
91159ffdeb
Add CHANGELOG.md
2024-08-17 16:46:15 +09:00
kichikuou
e526cac55f
Android/Windows: Update SDL libraries
...
- SDL2 2.30.6
- SDL2_ttf 2.22.0
- SDL2_mixer 2.8.0
2024-08-17 16:46:15 +09:00
kichikuou
7eb6641517
MSVC build: do not install RtMidi files
2024-08-17 15:35:10 +09:00
kichikuou
4174e0c1bb
Refactor DRI
2024-08-17 12:59:36 +09:00
kichikuou
58859deec1
Refactor mako_midi.cpp
2024-08-17 10:15:05 +09:00
kichikuou
480548191f
Add -mididevice option
2024-08-17 08:50:22 +09:00
kichikuou
be4aec4b02
Rename src/linux to src/generic
...
And now android uses src/generic/mako.cpp.
2024-08-16 10:38:56 +09:00
kichikuou
41e69d7610
Real-time MIDI playback using RtMidi
...
Before this, MIDI playback was done by generating an SMF data stream,
which was then played using platform-specific methods (MCI on Windows,
MediaPlayer on Android, SDL_Mixer on other platforms). However, this
approach had an issue where the Y18 command (which reads loop counts and
markers) did not work correctly.
With this change, the MAKOMidi class now uses the RtMidi library to
control MIDI devices in real-time. This approach was used in the
original "System3 for win32", but has now been made cross-platform.
The dependency on RtMidi is optional. If RtMidi is not available at
build time or a MIDI device is unavailable at runtime, FM synthesis will
be used.
2024-08-16 10:11:41 +09:00
kichikuou
3a763412c9
Remove MIDI support on Android
...
This is in preparation for supporting real-time MIDI playback on other
platforms.
2024-08-15 16:51:32 +09:00
kichikuou
f700a717d7
Do not pass negative values to isspace()
...
MSVCRT debug versions assert that.
2024-08-15 16:50:52 +09:00
kichikuou
c1273bd3e3
README: Fix link to the wiki
2024-08-10 14:37:07 +09:00
kichikuou
4b56057159
emscripten: Use EM_ASYNC_JS
2024-07-31 08:59:15 +09:00
kichikuou
c071975bb9
emscripten: Use MODULARIZE=1
2024-07-30 12:30:43 +09:00
kichikuou
d489c0b8c1
CI: Build with latest emscripten
2024-06-11 07:43:05 +09:00
kichikuou
c25227426e
Version 1.0.2
v1.0.2
2024-04-12 16:57:24 +09:00
kichikuou
a15f911ca5
Fix to_bool() in config.cpp
...
Fixes #28 .
2024-04-12 16:54:38 +09:00
kichikuou
0b008e32b3
Version 1.0.1
v1.0.1
2024-04-07 21:51:09 +09:00
kichikuou
cde49a4e5a
Android/Windows: Upgrade SDL to 2.30.2
2024-04-07 21:46:36 +09:00
kichikuou
723e5cef05
Fix crash when font not found
...
Now NACT::fatal() immediately exits the process.
2024-04-06 08:31:37 +09:00
kichikuou
2ae16c8c61
Fix crash in system3.ini parser
...
Fixes #27 .
2024-04-06 08:16:04 +09:00
kichikuou
a6538e32d7
emscripten: Simplify link options
2024-03-12 17:00:50 +09:00
kichikuou
60d4c7de2c
CI: Enable COMPILE_WARNING_AS_ERROR on Windows and Emscripten
2024-02-16 13:43:50 +09:00
kichikuou
618631c642
CI: Update GitHub actions
2024-02-16 13:26:49 +09:00
kichikuou
15b7236230
emscripten: Don't let SDL change document.title
2024-02-16 13:07:09 +09:00
kichikuou
cffdfdcd94
Require CMake 3.14 or later
...
To use FetchContent_MakeAvailable.
2024-01-13 15:40:51 +09:00
kichikuou
31de10ae3b
MSVC build: Use CMake scripts included in SDL2(_ttf) development package
2024-01-13 14:31:20 +09:00
kichikuou
6996482362
Move CMakeLists.txt to project root
2024-01-11 13:28:18 +09:00
kichikuou
2e4d452aa8
Android/Windows: Upgrade SDL to 2.28.5
2023-11-17 13:36:38 +09:00
kichikuou
73a7380a69
Switch Windows 64-bit MSYS2 build from mingw64 to ucrt64
...
This only affects CI, because our release binaries are MSVC builds.
2023-11-17 09:24:08 +09:00
kichikuou
16b9abe64f
Emscripten: Introduce xsystem35.shell.onExit()
...
It notifies the shell of the exit event and allows it to change the exit
code.
2023-10-02 20:45:47 +09:00
kichikuou
bcb653ca14
Emscripten: Stop audio on reset
2023-09-27 20:24:31 +09:00
kichikuou
ad23d428cc
Y 255,0 should return the value of RND to the system
2023-09-27 16:50:25 +09:00
kichikuou
759a5eab5d
Emscripten: Restart game instead of exiting
...
The same behavior as xsystem35.
2023-09-27 16:48:16 +09:00
kichikuou
30ca8b714b
Reorganize flags for exit and restart
...
Pure refactoring, no user-visible changes.
2023-09-27 16:41:05 +09:00
kichikuou
093f4cf507
Improve documentations
...
With the help of ChatGPT.
2023-08-29 12:03:34 +09:00
kichikuou
6e03140a5c
Android: Sign apk only when keystore file exists
2023-08-28 11:04:01 +09:00
kichikuou
fc80af62e0
Android: Update command line build instructions
2023-08-28 10:26:00 +09:00
kichikuou
3e11ba1b44
Update emscripten to 3.1.44
2023-08-06 21:54:42 +09:00
kichikuou
f1e4c2501f
Android/Windows: Upgrade SDL to 2.28.2
2023-08-06 21:33:43 +09:00
kichikuou
04873d875a
emscripten: Add simulate_right_button()
2023-05-04 11:25:09 +09:00
kichikuou
6f0f410d98
Android: Use Kotlin coroutine for background installation
2023-04-15 15:44:10 +09:00
kichikuou
c719bb1ec6
Android: Stop using deprecated ProgressDialog
2023-04-15 11:42:57 +09:00
kichikuou
7b7394e5fe
Fix use-of-uninitialized-value for text_font_maxsize
...
This fixes https://github.com/kichikuou/system3-sdl2/issues/25 .
2023-04-15 09:29:18 +09:00
kichikuou
c3556c5213
Replace sprintf_s with snprintf
2023-04-15 09:16:14 +09:00
kichikuou
f1455c2c8a
Bump version to 1.0.0
v1.0.0
2023-04-09 18:38:26 +09:00
kichikuou
0171433618
Update emscripten to 3.1.34
2023-04-09 18:32:33 +09:00