784 Commits
Author SHA1 Message Date
Nunuhara Cabbage 04333ad689 Merge pull request #378 from kichikuou/bb-misc
Miscellaneous changes for Busou Shoujotai Blade Briders
2026-09-21 20:42:53 -07:00
kichikuou 960c97ecc9 Update game_compatibility.md
- Mark Busou Shoujotai Blade Briders as supported.
- Extend the table through Rance X.
2026-09-22 11:19:26 +09:00
kichikuou e61f4b3c42 Math: Add Asin() and Acos() 2026-09-22 11:18:54 +09:00
kichikuou 03f9e7e87e Implement SystemService.GetSystemBufferName 2026-09-22 11:18:54 +09:00
Nunuhara Cabbage 87e4bebb12 Merge pull request #377 from kichikuou/SengokuRanceFont
SengokuRanceFont: Fall back to Gothic TTF for missing FNL glyphs
2026-09-21 19:09:55 -07:00
Nunuhara Cabbage 3a0dc49340 Merge pull request #376 from kichikuou/bb-parts
PartsEngine fixes for Busou Shoujotai Blade Briders
2026-09-21 19:09:37 -07:00
kichikuou e93cddad76 SengokuRanceFont: Fall back to Gothic TTF for missing FNL glyphs
SengokuRanceFont.DLL falls back to MS Gothic for characters whose glyphs
are absent from the FNL font. Reproduce this behavior to enable Japanese
translations of mods based on the MangaGamer release of Sengoku Rance.

Add an HLL-local composite font that wraps each selected FNL font_size
together with a FreeType Gothic font_size. The composite font checks for
each glyph in the FNL font and delegates rendering and size to Gothic
when the glyph is missing.

Scale fallback glyphs down and adjust their vertical position so that
they align with the FNL text line.
2026-09-22 10:24:48 +09:00
kichikuou 461eca1a85 parts: Inherit alpha clipper from parent parts
Move alpha_clipper_parts_no into inherited part parameters so child
parts use their parent's clipper unless they explicitly override it.

Bump the save version to 7.
2026-09-16 12:47:59 +09:00
kichikuou 6ea8af95ba parts: Fix global params after releasing a parent
parts_release detached children without marking them dirty, leaving
them with global parameters inherited from the released parent.
Furthermore, parts_update_component skipped global parameter updates
for parentless parts.

Mark orphaned children dirty and combine parentless parts against the
root parameters.
2026-09-16 12:46:07 +09:00
kichikuou 167d75d092 parts: Implement PartsFunc 112 (GetText) 2026-09-16 10:14:38 +09:00
kichikuou 275d71712e parts: Honor FLAT graphic key alignment
Offset the sprite so that the origin matches the anchor selected by the
graphic key's align field. Use the source rectangle dimensions when an
area is specified, and the full texture dimensions otherwise.
2026-09-16 10:14:37 +09:00
kichikuou d68baa74a0 parts: Save and load 3DLayer components
Serialize the SealEngine plugin bound to the component. Instances now
remember the name so referenced assets can be reloaded.

Bump the parts save format version to 6.
2026-09-16 10:14:26 +09:00
kichikuou 267f7bb762 parts: Support PartsFunc func_id assignments in Blade Briders
Blade Briders inserts three layer functions at func_id 3-5 into the
assignment used by Rance9, shifting all subsequent func_ids up by three.
Evenicle uses the same assignment as Blade Briders.

Use this assignment internally and add three to Rance9 func_ids before
dispatch. Also implement the functions 3-5.
2026-09-15 08:36:47 +09:00
kichikuou addc26ca45 parts: Implement PartsEngine.GetComponentSpeedupRateByMessageSkip 2026-09-15 08:36:39 +09:00
Nunuhara Cabbage bc745035e1 Merge pull request #375 from kichikuou/bb-3d
3D fixes for Busou Shoujotai Blade Briders
2026-09-13 08:05:01 -07:00
kichikuou 11ad7a583a 3d: Implement UV tiling
Read ColorMap UV tiling parameters from POL materials and apply separate
tiling factors to base and blend texture coordinates.
2026-09-13 11:20:54 +09:00
kichikuou 9654950ab4 3d: Implement SealEngine.SetDrawOption 1 (lighting)
When set to zero, render all meshes, including billboards and particle
meshes, as if they had the (nolighting) attribute.
2026-09-13 09:40:42 +09:00
kichikuou 021187752b 3d: Implement SealEngine.{Set,Get}InstanceGrayscaleRate
Add a per-instance grayscale rate that desaturates the final fragment
color after tone mapping.
2026-09-13 09:40:42 +09:00
kichikuou 5cc163ab16 3d: Load billboard frame images by name
In SealEngine, the frame images of a billboard instance are PNG files in
the archive, named "<name>\<basename>.png", "<name>\<basename>[1].png"
and so on, and the motion frame number is the index into them.

This also changes the lifetime management for billboard motions. A
billboard's motion holds the frame animation state of the instance,
which the game sets up before calling Load, so keep it across loads
and free it in free_instance.
2026-09-13 09:40:37 +09:00
kichikuou e14b4bca79 3d: Implement per-instance billboard vertices and UVs
Store the four billboard vertex positions and UVs in each RE_instance
and use them for regular billboard rendering. The static billboard mesh
is kept for billboard particles.
2026-09-12 11:00:57 +09:00
kichikuou 02f29b6c6d 3d: Implement SealEngine.{Set,Get}EdgeReductionRate 2026-09-12 11:00:49 +09:00
Nunuhara Cabbage fa09b0059f Implement PartsEngine.SetSpeedupRateByMessageSkip
Speeds up animations while message skipping.
2026-08-25 18:48:58 -07:00
Nunuhara Cabbage 4233c7d294 Fix EFFECT_CROSSFADE_MOSAIC
Long overdue fix for this effect, which is heavily used in Sengoku
Rance. The origin for the grid is now properly at the center of the
screen, as in the original engine.
2026-08-24 17:44:44 -07:00
Nunuhara Cabbage b30a107fda Implement EFFECT_VWAVE_SCROLL_CROSSFADE
This is the same as EFFECT_VWAVE_CROSSFADE, except with a different
maximum amplitude and the screen scrolls vertically.

(Used in Rance 9 when transitioning to a flashback scene.)
2026-08-23 10:39:03 -07:00
Nunuhara Cabbage bf3430dbad Improve EFFECT_VWAVE_CROSSFADE
Improve the math in this effect so that it matches Alicesoft's
implementation. This is almost a pixel-perfect recreation of the effect.
The only difference is that our waves are rendered with a smoother edge.
2026-08-23 10:11:29 -07:00
Nunuhara Cabbage 135cae216f Mitigate UI performance issue in Rance 9
Add a game-specific hack to mitigate poor performance when performing
certain UI operations in Rance 9.

Without this hack, the game creates an array of 990000 entries and then
calls Array.Find on it whenever it acquires or releases a parts number.
This was especially painful in debug builds, where the game would freeze
for 1-2 seconds when switching to the items screen for example.

The hack replaces the Array.Find calls with arithmetic.
2026-08-20 19:23:35 -07:00
Nunuhara Cabbage 05820dc536 parts: RemoveController returns delegate indices
The returned integer array contains p->delegate_index, not p->no.

I don't think this caused any bugs, because the game code rejects
returned indices that are > the delegate array length, and the delegate
index appears to always be -1 when this function is called.
2026-08-16 11:05:43 -07:00
Nunuhara Cabbage e76762d11d Implement EFFECT_DOWN_UP_CROSSFADE
Used in Rance 9 (when Hunty disappears).
2026-08-14 21:51:11 -07:00
Nunuhara Cabbage 5fb3c49f75 parts: clear cached font when rerendering text
Fixes an issue in Rance 9 (English version) where name plate text would
display at the wrong size.
2026-08-14 17:26:25 -07:00
Nunuhara Cabbage 5d032d739e Fix various memory leaks 2026-08-14 15:17:31 -07:00
Nunuhara Cabbage e3bf653165 Fix crash in Shaman's Sanctuary
Shaman's Sanctuary uses GoatGUIEngine.AddMotionCG with a CG index of 0
to clear the CG.
2026-08-14 12:40:00 -07:00
Nunuhara Cabbage a19c200870 parts: clean up text layout logic 2026-08-14 11:30:52 -07:00
Nunuhara Cabbage 5cbc697f23 parts: use bold width for text layout
Fixes the remaining issues with item descriptions in Rance 9.
2026-08-14 10:48:07 -07:00
Nunuhara Cabbage 4e20a499d4 parts: use ceilf(ch->advance) for text layout
Fixes an issue in English version of Rance 9 where item description text
was overly compressed. Now ChipmunkSpriteEngine.SP_GetFontWidth returns
the same values as the official engine.

There are still text layout bugs with item descriptions in Rance 9
(affecting both JP and EN versions), but this at least makes the text
readable.
2026-08-13 20:14:54 -07:00
Nunuhara Cabbage 0d4eb2a2a7 Merge pull request #373 from kichikuou/math-rand
Math: Replace rand() with mt19937
2026-08-13 18:28:18 -07:00
kichikuou d800e12f59 Math: Replace rand() with mt19937
On Windows RAND_MAX is 0x7fff, which makes Rand() and RandF() far too
coarse. Use mt19937 instead so that seeded sequences reproduce the
original engine's behavior.
2026-08-14 09:31:32 +09:00
Nunuhara Cabbage b1f8948b74 Merge pull request #372 from kichikuou/parts-load-text
parts: Fix loss of line breaks in saved multi-line text
2026-08-11 19:14:35 -07:00
Nunuhara Cabbage ebc319994e Merge pull request #371 from kichikuou/rance9-v2
parts: Reference construction process CGs by name
2026-08-11 19:13:18 -07:00
kichikuou 9bb871d9fd parts: Fix loss of line breaks in saved multi-line text
Text lines are saved individually without newlines. Insert an explicit
newline between lines on load so the original line structure is
restored. Also free the strings read from the save data.
2026-08-11 13:46:18 +09:00
kichikuou 62d38aaf59 parts: Reference construction process CGs by name
Rance 9's AFA archives have no ID field, so asset IDs are sequential
indices local to each archive. When the game loads an additional CG
archive, the ID spaces overlap: a name resolved to an ID against the
base archive later fetches a different CG from the additional archive.
Keep the CG name instead.

Bumps the save version to 5; version 4 and earlier saves still store IDs
and are converted on load.
2026-08-11 13:05:32 +09:00
Nunuhara Cabbage 5bb36c7524 Update libsys4
Fixes #370 via nunuhara/libsys4@cbc57ce
2026-08-09 19:00:36 -07:00
Nunuhara Cabbage 4dc9792632 Merge branch 'master' of github.com:nunuhara/xsystem4 2026-08-09 08:32:53 -07:00
Nunuhara Cabbage a7e973c0a9 Merge pull request #369 from kichikuou/rance9-v2
Resolve archive paths in asset_manager_load_archive
2026-08-08 20:09:26 -07:00
kichikuou 33f1295237 Resolve archive paths in asset_manager_load_archive
AFAFactory.LoadArchive passed the SJIS archive name straight through, so
the extra assets loaded by the Rance 9 v2.00 patch were never found.
Move the path resolution out of CGManager.LoadArchive so that both
callers share it.
2026-08-09 10:36:00 +09:00
Nunuhara Cabbage e699fb0aa2 DAP: ensure messages are null-terminated 2026-08-08 10:10:28 -07:00
Nunuhara Cabbage 4e0dd82776 Merge pull request #368 from kichikuou/libsys4
Update libsys4
2026-08-05 18:42:52 -07:00
kichikuou 77d9e77053 Update libsys4 2026-08-06 09:22:23 +09:00
Nunuhara Cabbage d65a1e6d9b Merge pull request #367 from kichikuou/rance9
game_compatibility.md: Add Rance 9 (JA) as supported
2026-08-04 18:50:56 -07:00
kichikuou 68e8257c27 game_compatibility.md: Add Rance 9 (JA) as supported 2026-08-04 20:52:41 +09:00
Nunuhara Cabbage 8e339d1537 Merge pull request #366 from kichikuou/save
PartsEngine: Stabilize save format for Rance 9
2026-08-02 11:12:12 -07:00
kichikuou a2524bafd5 PartsEngine: Stabilize save format for Rance 9
Bump the save version and always serialize controller state and the
Rance 9 parts fields. Load these fields based on the save version while
retaining compatibility with existing multi-controller saves.
2026-08-02 08:49:06 +09:00
Nunuhara Cabbage f146320e36 Merge pull request #365 from kichikuou/3d
Two 3D fixes for Rance 9
2026-08-01 06:25:54 -07:00
kichikuou 09a0e3329a 3d: Disable specular with zero power
Treat zero SpecularPower as disabling specular lighting instead of
producing a constant white highlight (pow(..., 0) = 1).
2026-07-29 08:50:18 +09:00
kichikuou b68e1622fd 3d: Implement DrawShadow mesh attribute
Also parse some other .opr attributes for features not implemented in
xsystem4.
2026-07-28 14:29:50 +09:00
Nunuhara Cabbage 433e3be3e6 Merge pull request #364 from kichikuou/rance9-bgi
KiwiSoundEngine: Fix BGM loop for Rance 9
2026-07-26 09:13:40 -07:00
kichikuou d5b27a0a47 KiwiSoundEngine: Fix BGM loop for Rance 9
Commit 03062d5 fixed audio lookup for Rance 9, but the new archive-data
preparation path bypassed BGI and WAI metadata. Pass the asset number
through that path so loop points are applied correctly.
2026-07-26 07:53:03 +09:00
Nunuhara Cabbage a38c55602d Merge pull request #363 from kichikuou/ffmpeg
movie_ffmpeg: Use nb_samples for audio frame length
2026-07-25 08:50:35 -07:00
Nunuhara Cabbage b3bcd79bae Merge pull request #362 from kichikuou/pl_mpeg
pl_mpeg: Support MPEG-2 program stream headers
2026-07-25 08:50:00 -07:00
kichikuou f0c4db718d movie_ffmpeg: Use nb_samples for audio frame length
Audio linesize may include unused buffer space. Using it as the sample
count caused short Vorbis frames to replay stale samples and slowed down
audio playback.
2026-07-22 09:07:30 +09:00
kichikuou d17fc30731 pl_mpeg: Support MPEG-2 program stream headers
Fortress.alm from Rance IX uses an MPEG-2 Program Stream containing
MPEG-1 video and MPEG-1 Layer II audio. As far as I checked, it is the
only .alm movie released in Japan that does not use an MPEG-1 Program
Stream.

The existing pl_mpeg decoders support its elementary streams, but the
demuxer rejects its MPEG-2 pack and PES headers. Extend the demuxer to
parse those headers and the PTS/DTS combinations used by Fortress.alm.
2026-07-22 07:31:44 +09:00
Nunuhara Cabbage ca2254360c Merge pull request #361 from kichikuou/libdeflate
Use libsys4 zlib wrappers
2026-07-19 21:21:54 -07:00
kichikuou 81f9113906 Use libsys4 wrappers for zlib operations
Replace direct one-shot zlib compression and decompression calls with
the libsys4 wrappers. Use exact-size decompression where file formats
provide the uncompressed size.

File2.c continues to depend directly on zlib because it uses streaming
inflate.
2026-07-20 12:53:19 +09:00
Nunuhara Cabbage d63e71e85d Merge pull request #360 from kichikuou/numpad
input: Handle numpad keys with NumLock disabled
2026-07-16 21:03:56 -07:00
kichikuou 6d05546c2c input: Handle numpad keys with NumLock disabled
When NumLock is disabled, Windows reports numpad keys as navigation
virtual-key codes in the WM_KEYDOWN message. SACT2 games rely on this
behavior.

Translate SDL keypad scancodes to the corresponding SACT key codes in
that state, and map keypad Enter to VK_RETURN.

Fixes #359.
2026-07-15 08:36:08 +09:00
Nunuhara Cabbage e260b82828 Merge pull request #358 from kichikuou/3d-debug
debugger: Add "3d" debugger commands
2026-07-13 17:55:14 -07:00
kichikuou c0cdf4f070 debugger: Add "3d" debugger commands
Add the following commands to the debugger:

  3d list [all]                      List plugins and instances
  3d plugin [<plugin>]               Show or select the current plugin
  3d show [<instance>]               Dump plugin or instance state
  3d set <instance> draw <0|1>       Enable or disable drawing
  3d set <instance> pos <x> <y> <z>  Set the instance position
  3d help                            Show command help

The show and set commands operate on the current plugin. If only one
plugin exists, it is selected automatically. Changes made with set are
rendered immediately.
2026-07-12 13:37:44 +09:00
Nunuhara Cabbage 74461f5b9c Merge pull request #357 from kichikuou/issue-356
parts: Fail construction build without target texture
2026-07-06 18:24:53 -07:00
kichikuou d8479ad80a parts: Fail construction build without target texture
If AddCreateCGToProcess fails for a missing CG, no create op is added to
the construction process. Game scripts still add drawing operations and
then build the process, leaving those operations with no destination
texture and causing an incomplete framebuffer error.

This makes construction build operations return false as soon as an
operation cannot be executed.

Fixes #356.
2026-07-07 08:52:17 +09:00
Nunuhara Cabbage e8bd5ab036 Merge pull request #355 from kichikuou/relative-user-config-paths
Resolve game config paths relative to game dir
2026-07-05 11:23:53 -07:00
kichikuou 05fee4ba83 Resolve game config paths relative to game dir
Game-specific .xsys4rc files are loaded from the game directory, so
relative paths in that file are most useful when interpreted from the
same directory. This allows patches that ship external fonts to
reference them with relative paths.
2026-07-05 08:03:29 +09:00
Nunuhara Cabbage bf3b3416fe Merge pull request #354 from kichikuou/edge
SealEngine: Implement outline rendering options
2026-06-27 08:12:00 -07:00
kichikuou fb3d0bbd3e 3d: Gate edge drawing on per-instance flag
In both TapirEngine and SealEngine an instance is outlined only when the
global edge draw option and its per-instance edge flag are both on. The
per-instance flag is exposed via Set/GetInstanceDrawParam, whose edge
index differs by engine (Tapir 0, Seal 2).

For the global option the engine only distinguishes on/off, so drop the
RE_draw_edge_mode enum.
2026-06-26 09:19:15 +09:00
kichikuou 507b65fc9c SealEngine: Implement SetEdgeLength/SetEdgeColor
In SealEngine the outline length and color are plugin-wide values set
via SetEdgeLength/SetEdgeColor, not the per-mesh .opr parameters used by
TapirEngine.
2026-06-25 16:32:54 +09:00
Nunuhara Cabbage 24df15b9e9 Merge pull request #353 from kichikuou/delegate
VM: Check function signature in DG_STR_TO_METHOD
2026-06-20 17:55:08 -07:00
kichikuou fab789df65 VM: Check function signature in DG_STR_TO_METHOD
Only resolve the method when the function's signature matches the
delegate type, returning 0 otherwise.

Also, DG_SET / DG_NEW_FROM_METHOD / DG_ADD should not add function 0.
2026-06-21 06:56:24 +09:00
Nunuhara Cabbage 3012faa6ff Merge pull request #352 from kichikuou/lighting
SealEngine: Add lighting support
2026-06-20 06:22:14 -07:00
kichikuou 6dbb5baf19 SealEngine: Implement filmic tone mapping
Apply the Uncharted 2 tone curve [1] from light_params[0..7] as the
final fragment operation.

[1] https://filmicworlds.com/blog/filmic-tonemapping-operators/
2026-06-20 11:41:56 +09:00
kichikuou db8279ebc3 SealEngine: Implement hemisphere lighting
This implements the sky/middle/ground hemisphere ambient driven by
light_params[8..19].

SealEngine has no separate specular-light instance; its specular instead
shares the hemisphere light vector.
2026-06-20 11:41:56 +09:00
kichikuou 250bc82818 SealEngine: Enable light scattering
Reuse ReignEngine's existing scattering shader code. The ls_* uniforms
are sourced from .lit parameters.
2026-06-20 11:41:56 +09:00
kichikuou 4843e4e87a SealEngine: add light parameter storage and HLL bindings
SealEngine manages a 41-float light parameter set (serialized as .lit
file) for tone mapping, hemisphere lighting, and light scattering. This
adds the storage and HLL plumbing, without wiring values into shaders.

- A DIRECTIONAL_LIGHT instance owns a parameter set, filled by loading a
  .lit file (RE_instance_load).
- SealEngine.StoreInstanceLightParam() reflects that presets into the
  plugin's master buffer, which is used by the renderer.
- SealEngine.LoadInstanceLightParam() copies the master back into an
  instance, and Reset()/Set()/Get() operate directly on the master.
2026-06-20 11:41:56 +09:00
kichikuou 1051294247 SealEngine: Implement SpecularColor and SpecularPower .opr attributes
Parse per-mesh SpecularColor and SpecularPower attributes from .opr
files, and apply them to specular lighting.
2026-06-20 11:41:56 +09:00
Nunuhara Cabbage fa98a76c42 Merge pull request #351 from kichikuou/msgskip
MsgSkip: Initialize in _PreLink when Init() is absent
2026-06-19 17:30:35 -07:00
kichikuou d073875d94 MsgSkip: Initialize in _PreLink when Init() is absent
Some games (e.g. Rance 01, Rance 9) only export GetFlag and SetFlag, so
Init() is never called. Initialize from _PreLink with a default save
file name in that case.
2026-06-18 08:10:49 +09:00
Nunuhara Cabbage 2b67a9e000 Merge pull request #350 from kichikuou/3d
3d: Various improvements for Rance 9
2026-06-14 13:28:48 -07:00
kichikuou b62edb7188 SealEngine: Support HeightDetection=true .opr attribute
In TapirEngine, CalcIntersectEyeVec() only worked on models with a
"collision" mesh. In SealEngine, a raycast collider is built from the
union of meshes flagged HeightDetection=true in .opr.

Also return the nearest intersection instead of the first.
2026-06-13 20:30:45 +09:00
kichikuou 85547ef4f4 3d: Remove color_add uniform
Since the ambient term is now added unconditionally, the s3de per-object
additive color can be folded into instance_ambient.
2026-06-12 15:00:40 +09:00
kichikuou f108b7f436 3d: Apply ambient and vertex color across all diffuse modes
The EMISSIVE and ENV_MAP diffuse modes did not apply the ambient term or
vertex color (color_mod) to the fragment. In the original TapirEngine /
SealEngine, all diffuse modes contribute ambient and vertex color.

This fixes a bug where the movement/attack range indicator color did
not change in battle scenes.
2026-06-12 15:00:40 +09:00
kichikuou 90c3ab5008 3d: Apply per-instance diffuse to mesh color
SetInstanceDiffuse has two roles depending on the instance type: for
directional lights it is the light color, and for meshes it is a
multiplier on the mesh color. xsystem4 honored only the former.

Treat inst->diffuse as color multiplier, via the diffuse_mod uniform.
2026-06-12 15:00:40 +09:00
kichikuou 7b9565fe25 3d: Add reset_draw_uniforms() to prevent per-draw state leaks
This adds a helper that resets every per-draw uniform to a neutral
default and call it at the start of the billboard, .pae and .3de paths.

This fixes uv_scroll and use_blend_texture leaks from a previously
rendered model.
2026-06-12 15:00:40 +09:00
kichikuou 4dcc50d6ca 3d: Build models from MarmotModelEngine.Update()
In TapirEngine and SealEngine, model updates are drived by
MarmotModelEngine.Update(). RE_render() now only renders.
2026-06-12 15:00:40 +09:00
kichikuou 5c47ad5aae SealEngine: Implement ZWrite .opr attribute 2026-06-12 15:00:39 +09:00
Nunuhara Cabbage 062713f70e Merge pull request #349 from kichikuou/parts
Implement two PartsFuncs, and minor fixes
2026-06-11 17:22:02 -07:00
kichikuou 0e8bd36407 SACT2: Update draw plugins during TRANS_Update()
This fixes the issue where the 3D plugin freezes during transitions.
2026-06-10 17:21:04 +09:00
kichikuou 28554137cc Stoat/Chipmunk: Silence KeepPreviousView_Set/GetMode warnings
KeepPreviousView and its mode are purely a rendering performance knob
(incremental rendering optimization). Toggling the mode never affects
rendering correctness, so leaving these unimplemented is harmless and
warning about them is just noise.
2026-06-10 17:17:08 +09:00
kichikuou 32024bc805 PartsEngine: Fix "Invalid controller number" error after vm_reset
PE_Reset() zeroed the controller stack, leaving it with no default
controller. Since PE_Reset() does not clear parts_engine_initialized,
the subsequent PE_Init() returns early so the stack stays empty.

Reset the stack with ctrl_stack_init() instead, which re-creates the
default controller. ctrl_stack_fini() is now unused and removed.
2026-06-10 17:17:08 +09:00
kichikuou ec9bd95dc9 PartsEngine: Implement PartsFunc 3 (motion Pause/Resume)
Wire up PartsFunc 3 (PauseMotion) to a new PE_PauseMotion(). While
paused, PE_UpdateMotionTime stops advancing the motion clock.
2026-06-10 17:17:05 +09:00
kichikuou 8dee7d8658 PartsEngine: Implement PartsFunc 6 (SaveThumbnail)
Save a reduced copy of the main surface to a file. The image is written
as QNT under the save directory.

To avoid aliasing at large reductions, the surface is downscaled by
repeatedly halving before the final stretch.
2026-06-10 17:17:01 +09:00
Nunuhara Cabbage 0f73ded483 Merge pull request #348 from kichikuou/3de
3de: Add support for billboard and polygon objects
2026-06-07 07:09:42 -07:00
kichikuou 847987ec1b 3de: Add support for billboard and polygon objects
At spawn, init_particle() samples its fixed properties from a
deterministic PRNG into s3de_particle, so playback is reproducible.

Each frame, update_object_states() interpolates the emitter's animated
properties into s3de_object_state.

To draw, render_s3de_effect() combines the two: for each live particle
s3de_billboard_world_transform() or s3de_mesh_world_transform() derives
a world matrix from the lifetime state computed by eval_particle(),
together with a posture basis that orients the quad or mesh. Objects are
drawn sorted by distance from the camera.
2026-06-04 09:41:49 +09:00
Nunuhara Cabbage ec4b608877 Merge pull request #347 from brombrom-hani/parts-sprite-deform
parts: impl sprite_deform for SetPartsCG
2026-06-01 17:55:27 -07:00
BromBrom-Hani 12735d5c8c parts: sprite_deform for SetPartsCG string index
Keeps the PE_SetPartsCG_by_string_index consistent with the rest of the SetPartsCG variants
2026-06-01 08:43:24 +02:00
Nunuhara Cabbage 22d58d977a Merge pull request #346 from kichikuou/3de-parser
SealEngine: Add .3de parser, effect framework, camera, and sound
2026-05-31 18:11:38 -07:00
Nunuhara Cabbage 20e0d00661 Merge pull request #345 from kichikuou/bone
3d: Match MOT bones to POL bones by array index
2026-05-31 18:10:21 -07:00
BromBrom-Hani a706a41dcb parts: impl sprite_deform for SetPartsCG 2026-05-31 12:22:36 +02:00
kichikuou bf0b2bb44f SealEngine: Add .3de parser, effect framework, camera, and sound
.3de is the particle/effect format used by SealEngine. Like the
ReignEngine's .pae, it is a text format describing an effect as a set of
emitters, but the two differ enough in design that .3de lives in its own
file (s3de.c) rather than being folded into particle.c.

This commit lays the groundwork:

- Parse .3de text.
- Integrate effect loading, playback, and caching into the existing
  infrastructure.
- Apply the camera object's per-frame override to RE_camera.
- Play the companion sound asset.

Billboard and polygon-object rendering will be added separately.
2026-05-31 08:22:01 +09:00
kichikuou 916daec6b2 3d: Match MOT bones to POL bones by array index
The original {Reign,Tapir,Seal}Engine apply motion bones to model bones
purely by array position, never consulting bone name or bone_id.

This fixes bone animation of "Shizuka & Nagi" model in Rance 9.
2026-05-29 07:17:41 +09:00
Nunuhara Cabbage 1fcccb766c Merge pull request #344 from kichikuou/passed_time
PartsEngine: clamp passed_time to 0 in PE_UpdateComponent
2026-05-27 21:00:56 -07:00
kichikuou aa112849de Remove passed_time parameter from parts_render_update 2026-05-28 07:39:15 +09:00
kichikuou 8ca1a31ccc PartsEngine: clamp passed_time to 0 in PE_UpdateComponent
After loading a save, the game script may give a negative passed_time
because it computes the delta time using an absolute system.GetTime()
value stored in the save data.

This fixes hang on load in Rance 9.

This also removes the equivalent workaround in parts_render_update for
Rance 01, since the new clamp covers that case as well.
2026-05-27 12:42:50 +09:00
Nunuhara Cabbage 2c622bb331 Merge pull request #343 from kichikuou/mpr
SealEngine: Add .mpr (motion material keyframes) support
2026-05-25 19:07:24 -07:00
kichikuou c01a27583c SealEngine: Add .mpr (motion material keyframes) support
.mpr is an optional sidecar to .mot used by SealEngine, replacing .txa
used in ReignEngine / TapirEngine. While .mot drives bone poses, .mpr
drives material properties on a per-frame timeline.

Supported keys, all keyed by frame number:

  Object{MulAlpha,MulDiffuse,AddAmbient} : applied to the whole model
  Mesh{MulAlpha,MulDiffuse,AddAmbient}   : applied per named mesh
  MeshTextureAnime                       : swap diffuse texture index

Colors and alpha use linear interpolation between keys. Out-of-range
frames hold the nearest endpoint.

Mesh* tracks act as per-mesh tints and do not leak to other meshes
that happen to share a material. MeshTextureAnime is the exception:
it rewrites the shared material's diffuse slot, so all meshes using
that material animate in sync (e.g. in Rance 9, hanny_black_move.mpr
lists only hibana_R but hibana_L animates together).
2026-05-22 13:57:02 +09:00
Nunuhara Cabbage ced4daa331 Merge pull request #342 from kichikuou/camera
3d: Fix camera yaw direction and rotation order
2026-05-19 20:41:33 -07:00
kichikuou 9eee82c13b 3d: Fix camera yaw direction and rotation order
The camera view direction was computed incorrectly in two ways:

1. glm_euler (XYZ order) applies pitch around world X. The original
   engine uses YXZ where pitch is around the camera's local X after yaw.

2. SetCameraAngle negated the input yaw.
2026-05-20 07:10:41 +09:00
Nunuhara Cabbage f53ec98d53 Merge pull request #340 from kichikuou/emitter
Flat: Add particle emitter support
2026-05-18 22:19:56 -07:00
kichikuou 32f4253948 Flat: Guard against division by zero in particle time calculation 2026-05-19 11:38:36 +09:00
kichikuou cb0b969492 Flat: Add particle emitter support
This implements rendering of FLAT_LIB_EMITTER libraries: timed spawning,
per-particle motion, fade, and 3-axis rotation.

For each visible emitter, render_flat_emitter() builds an emitter base
matrix from the ancestor key stack so particles follow their parent
timelines. parent_key_mode chooses between filtering ancestor properties
via the emitter's inherit_* flags (SELECTIVE) and using ancestor poses
wholesale (ANCESTOR_CURRENT / ANCESTOR_AT_BIRTH). For each birth frame
in the lifetime window, parts_flat_foreach_emitter_particle() reseeds
the RNG from (rand_seed, birth_frame), making particles deterministic
across re-renders, and yields each particle's pose, which is composed
with the emitter transform and submitted as a quad through the standard
parts texture pipeline.
2026-05-19 07:12:11 +09:00
Nunuhara Cabbage 0030e28471 Merge pull request #339 from kichikuou/parts-3dlayer-z
Parts: Fix Z-order of 3DLayer and Movie parts
2026-05-16 07:46:35 -07:00
kichikuou 224db2f9cc Parts: Fix Z-order of 3DLayer and Movie parts
3DLayer and Movie parts use a SACT sprite as their render target (for
SealEngine output or movie frames). That sprite was registered into
the scene at z=0, so the content was drawn at z=0 instead of (or in
addition to) the parts engine's render path at the parts' configured Z.

Hide the bound SACT sprite from the scene so the parts engine is the
sole renderer of its texture, and add a parts_render case for 3DLayer
that composites the bound sprite's texture through parts_render_cg.
2026-05-16 12:44:17 +09:00
Nunuhara Cabbage 33d07c190e Merge pull request #338 from kichikuou/color-propagation
Flat: Fix color propagation for nested flat TIMELINE libraries
2026-05-12 17:11:52 -07:00
kichikuou a4dd6a42df Flat: Fix color propagation for nested flat TIMELINE libraries
Propagate parent keys' mul/add color parameters to child TIMELINE
library rendering.
2026-05-12 10:25:03 +09:00
Nunuhara Cabbage da268288c3 Merge pull request #337 from kichikuou/flat
Parts: Stop motion support and rendering fixes
2026-05-10 09:58:02 -07:00
kichikuou f535223988 Flat: Support angle_x/angle_y rotation and reverse_lr/reverse_tb
The original engine implements proper perspective projection, but we
use simpler orthographic foreshortening. In Rance 9, the visual
difference is barely noticeable.
2026-05-09 12:12:38 +09:00
kichikuou f9087eb7ac Flat: Fix area_x/area_y leaking into screen position
area_x/area_y select a sub-rectangle of the texture, but should not
shift the on-screen position. Translate the quad by (-area_x, -area_y)
to cancel the offset the sub-rect's top-left would otherwise introduce.
2026-05-07 12:42:08 +09:00
kichikuou 636743478c Flat: Propagate parent TIMELINE's draw_filter
A parent key's draw_filter had no effect on CG/STOP_MOTION leaves
inside descendant TIMELINE libraries. Resolve the effective filter
at each key (own if non-NORMAL, otherwise inherited) and thread it
through the render chain.
2026-05-07 12:18:35 +09:00
kichikuou a2f087b7f9 Flat: Add support for FLAT_LIB_STOP_MOTION
FLAT_LIB_STOP_MOTION represents a sprite animation as a sequence of CG
frames. A stop_motion library specifies a base CG file (e.g. "foo.png");
at load time, parts_flat_load() discovers numbered frame variants
("foo_01.png", "foo_02.png", ...) and builds a frame list.

At render time, the active frame is resolved from the local timeline
clock using three parameters:
  - span: number of timeline ticks each frame is displayed
  - loop_type: 0 = play once and stop at last frame,
               1 = loop forward,
               2 = ping-pong (forward then backward)
  - local: the timeline's current local time
2026-05-07 11:23:53 +09:00
Nunuhara Cabbage 07bd9c7438 Merge pull request #336 from kichikuou/draw_filter
Parts: support and fix multiply/screen draw_filter
2026-05-03 07:54:48 -07:00
Nunuhara Cabbage 028c907a12 Merge pull request #335 from kichikuou/InputString
Fix save comment editing in Rance 02
2026-05-03 07:54:29 -07:00
kichikuou c45bb3a736 Parts: support multiply/screen draw_filter for parts_render_cg 2026-05-03 12:39:43 +09:00
kichikuou 484f383826 Parts: fix multiply/screen draw_filter to respect alpha
The multiply and screen blend functions used in render_flat_item
ignored the source alpha, so transparent pixels still modulated the
destination color instead of leaving it untouched.

Add a draw_filter uniform to the parts fragment shader and have it
output an alpha-baked source color, so that the framebuffer result
after the GL blend equation interpolates correctly in alpha:

- multiply: shader outputs src = mix(vec3(1.0), mod_color, alpha)
  blend (GL_DST_COLOR, GL_ZERO) gives src*dst,
  i.e. mix(dst, mod_color*dst, alpha)
- screen: shader outputs src = mod_color * alpha
  blend (GL_ONE, GL_ONE_MINUS_SRC_COLOR) gives src + (1-src)*dst,
  i.e. mod_color*alpha + (1 - mod_color*alpha)*dst

In both cases alpha=0 leaves the destination untouched, alpha=1
gives the full multiply/screen result.

Also switch the surface-area mask from multiplication to discard,
so pixels outside the rect leave the destination intact under
multiply blending (where multiplying src by 0 would otherwise
zero out dst).
2026-05-03 12:39:41 +09:00
kichikuou af12e19859 Fix missing src/parts/message.c in CMakeLists.txt 2026-05-03 07:37:02 +09:00
kichikuou e83cb1c91e InputString: Handle Backspace key to delete last character
This adds a key handler facility to input.c so that the InputString
can intercept the Backspace key while the IME is open, and remove the
last character from the result string. Backspace is ignored while the
IME has composing text, so it does not interfere with IME editing.
2026-05-03 07:13:47 +09:00
kichikuou 4c4a62e1ed Fix InputString.GetResultString() in Rance 02
The newer version (from Boku Dake no Hokenshitsu onwards) of
InputString.GetResultString() does not clear its internal string.

This fixes the issue in Rance 02 where the text always remained empty
when editing save comments.
2026-05-03 07:12:33 +09:00
kichikuou f01e41be12 Implement InputString.SetResultString
Used in Rance 02.
2026-05-03 07:12:33 +09:00
Nunuhara Cabbage 6bb00a268c Merge pull request #334 from kichikuou/vm
Fix heap use-after-free during method calls in Rance 9 and later
2026-05-01 20:22:42 -07:00
kichikuou 9ed1f52627 VM: Keep struct page alive during method calls for AIN v6.1+
This fixes heap use-after-free in the music mode in Rance 9.

Hold a reference to the struct page (`this` pointer) for the duration
of a method call. Without this, if the sole external reference to an
object is dropped during one of its method calls (e.g. an event handler
that destroys its own parent), the object and its members are freed
immediately, causing use-after-free when the VM tries to access them
afterward.

This matches the behavior of the original VM, which was introduced in
Rance9.exe and later titles.

The fix is gated on AIN v6.1+ (AIN v6 with a MSG1 section) to match
the original. Applying it unconditionally would change the heap refcount
state visible to resume saves, potentially breaking existing saves for
older games.
2026-05-02 07:56:47 +09:00
Nunuhara Cabbage 59789c0a8a Merge pull request #333 from kichikuou/text
PartsEngine: Fix text issues in Rance 9
2026-04-28 17:54:53 -07:00
kichikuou 13d0c51351 PartsEngine: Fix text line layout
line_space was stored but never used during rendering or size
calculation. Apply it as inter-line spacing in both the size calculation
and the render path. Also initialize empty lines with the current text
style height so that newline-only lines occupy the correct space.

Change line_space from unsigned to int because negative values can be
set.
2026-04-28 11:18:58 +09:00
kichikuou 46bdbb05ef PartsEngine: Re-render text when font properties change
This fixes the rendering of the sample message in the "Message Color"
configuration of Rance 9.

PE_SetPartsFont* and PE_SetText*Space functions only modified the text
style struct without re-rendering existing character textures. Since
character glyphs are baked into textures at append time, subsequent
style changes had no visible effect.
2026-04-28 11:15:00 +09:00
Nunuhara Cabbage 234b04b460 Merge pull request #332 from kichikuou/SealEngine
SealEngine: Implement and stub various functions
2026-04-25 20:37:52 -07:00
Nunuhara Cabbage ae9544a1ac Merge pull request #331 from kichikuou/POLv4
SealEngine: Support POL v4 format
2026-04-25 20:37:33 -07:00
kichikuou 6509dca693 Add stub for SystemService_GetAntiAliasingMode 2026-04-26 11:26:20 +09:00
kichikuou bf455de35d SealEngine: Implement MagSpeed functions
mag_speed is a per-plugin integer (default 1) set by SetMagSpeed on
all existing plugins. use_mag_speed is a per-instance flag (default
true) set by SetInstanceUseMagSpeed. When use_mag_speed is true,
motion delta_frame is multiplied by mag_speed.
2026-04-26 11:26:20 +09:00
kichikuou 511f6a4bfa SealEngine: Implement and stub various functions 2026-04-26 11:26:17 +09:00
kichikuou 4239345289 SealEngine: Support POL v4 format
POL v4 introduces material groups with texture blending. A material's
sub-material can be a "blend group" containing exactly two leaf
materials, whose textures are blended using per-vertex weights for
smooth terrain transitions.
2026-04-26 10:03:09 +09:00
Nunuhara Cabbage 955950198e Merge pull request #330 from kichikuou/3dlayer
PartsEngine: Implement 3DLayer parts type
2026-04-25 09:35:14 -07:00
kichikuou 63ab438391 PartsEngine: Implement 3DLayer parts type
This adds PARTS_3DLAYER type that creates a SealEngine plugin bound to a
SACT sprite.
2026-04-25 12:06:01 +09:00
Nunuhara Cabbage 1dd37559bb Merge pull request #329 from kichikuou/drag
PartsEngine: Implement drag-and-drop processing
2026-04-24 18:42:52 -07:00
kichikuou f52f4bd1f0 PartsEngine: Simplify parts_msg_push() calls 2026-04-25 07:49:08 +09:00
kichikuou 1b87d3f9a5 PartsEngine: Implement drag-and-drop processing
This implements Parts_SetDrag and drag/drop event handling. When a part
has drag enabled, clicking and moving the mouse will move the part and
emit DRAG_BEGIN/DRAGGING/DRAG_END messages. Drop target detection emits
DROP_ENTER/DROP_ON/DROPPED/DROP_LEAVE messages on parts under the cursor
during drag.
2026-04-25 07:38:46 +09:00
Nunuhara Cabbage 15f70f29a0 Merge pull request #328 from kichikuou/layoutbox
PartsEngine: Implement LayoutBox
2026-04-23 19:53:37 -07:00
kichikuou df6998c0f9 PartsEngine: Implement LayoutBox
This adds PARTS_LAYOUT_BOX parts type with support for automatic
horizontal/vertical child positioning. Layout calculation runs during
the component update cycle, repositioning children before their global
parameters are combined.
2026-04-22 11:25:28 +09:00
Nunuhara Cabbage 2f436ce5bf Merge pull request #327 from kichikuou/partsfunc
PartsEngine: Implement some PartsFuncs
2026-04-20 19:10:24 -07:00
kichikuou c4f89d040a PartsEngine: Implement PartsFunc 4 (SetWantSave)
This adds want_save parts flag which defaults to true. Parts with
want_save set to false are excluded from save data.
2026-04-20 09:03:43 +09:00
kichikuou 93c790dcc6 PartsEngine: Implement PartsFunc 159 (AddConstructProcess)
This function has a large number of parameters, which are serialized
fields from CASConstructionProcess. Dispatch on the command number to
the appropriate PE_Add*ToPartsConstructionProcess function.
2026-04-20 08:36:39 +09:00
kichikuou 88f199a8f2 PartsEngine: Implement PartsFunc 45 (PARTS_SetLockInputState)
This adds lock_input_state parts flag which prevents state transition.
2026-04-20 08:10:27 +09:00
kichikuou 28c8c277c9 PartsEngine: Implement PartsFunc 40-42 (PARTS_GetAbsolute[XYZ]) 2026-04-20 07:59:03 +09:00
kichikuou e5087f0757 PartsEngine: Implement PartsFunc 103 (GetPartsCGSurfaceArea) 2026-04-20 07:24:16 +09:00
Nunuhara Cabbage 6dc62bffc8 Merge pull request #326 from kichikuou/rect_detection
PartsEngine: Implement PE_SetPartsRectangleDetectionSize
2026-04-19 07:01:25 -07:00
Nunuhara Cabbage 0ea5d90797 Merge pull request #325 from kichikuou/parts_input
PartsEngine: Implement pass_cursor flag, MOUSE_ON and MOUSE_MOVE message dispatch
2026-04-19 07:01:05 -07:00
kichikuou d20f52cf79 PartsEngine: Implement PE_SetPartsRectangleDetectionSize
This sets the hitbox size for rectangle-based hit detection, as a new
parts type PARTS_RECT_DETECTION. This is a detection-only type with no
drawing.
2026-04-19 11:16:00 +09:00
kichikuou dcbd149409 PartsEngine: Implement MOUSE_ON and MOUSE_MOVE message dispatch
MOUSE_ON is sent every frame while hovering, with cursor position and
accumulated hover time. MOUSE_MOVE is sent when the cursor position
changes during hover.
2026-04-19 09:55:19 +09:00
kichikuou 1655c8a8e0 PartsEngine: Implement pass_cursor flag
This implements SetPassCursor/GetPartsPassCursor HLL functions. The
pass_cursor flag controls whether the cursor "passes through" a
component to reach parts behind it.

Key changes to input processing:
- Iteration order changed from back-to-front to front-to-back for proper
  cursor consumption
- MOUSE_ENTER / MOUSE_LEAVE now fire for all parts regardless of
  clickable
- Click hit test uses clickable || !pass_cursor pre-filter
- pass_cursor=false parts consume the cursor, preventing hover and
  click events from reaching parts behind them
2026-04-19 09:42:20 +09:00
Nunuhara Cabbage 2a99c75e4d Merge pull request #324 from kichikuou/setstate
PartsEngine: Fix state stuck at CLICKED when target state is uninitialized
2026-04-18 08:23:32 -07:00
Nunuhara Cabbage 70336546ed Merge pull request #323 from kichikuou/message
PartsEngine: Add message dispatch system
2026-04-18 08:23:09 -07:00
kichikuou cb24db29c2 PartsEngine: Fix state stuck at CLICKED when target state is uninitialized
parts_set_state silently ignored transitions to uninitialized states,
causing parts without a HOVERED state to remain in CLICKED after mouse
release. Fall back through CLICKED -> HOVERED -> DEFAULT so the first
initialized state is always selected. DEFAULT is accepted unconditionally
as the terminal fallback, matching the original engine's behavior.
2026-04-18 07:58:59 +09:00
kichikuou 03ef51e76a PartsEngine: Send mouse event messages
This introduces a per-parts is_hovered flag (replacing the global
parts_prev_pos) and fire MOUSE_ENTER, MOUSE_LEAVE, KEY_TRIGGER,
KEY_DOWN, MOUSE_CLICK, and KEY_UP events on the corresponding mouse
state transitions.

This also fixes the hittest in parts_update_mouse() to account for the
parent's global position, and to use the DEFAULT state hitbox (matching
the original engine's behavior).
2026-04-15 08:59:06 +09:00
kichikuou a0d78a024c PartsEngine: Implement message dispatch system
This adds a message queue that captures GUI events and exposes them
through HLL accessor functions.
2026-04-15 08:56:52 +09:00
Nunuhara Cabbage dc105aeb16 Fixes for Rance 9 English version
Add stubs for Discord HLL, and implement AFAFactory.LoadArchive.
2026-04-12 21:01:00 -07:00
Nunuhara Cabbage c877e261c5 Merge pull request #322 from kichikuou/ComponentType
PartsEngine: Implement SetComponentType and GetComponentType
2026-04-12 16:42:32 -07:00
Nunuhara Cabbage 39c0094ce8 Merge pull request #321 from kichikuou/controller
PartsEngine: Implement controller (layer) system
2026-04-12 16:42:06 -07:00
kichikuou 93ca13a50b PartsEngine: Implement SetComponentType and GetComponentType 2026-04-12 16:53:34 +09:00
kichikuou c540eb9796 PartsEngine: Implement controller (layer) system
PartsEngine in Rance 9 manages multiple "controllers" (called "layers"
in game scripts) that provide part grouping, draw-order control, and
bulk release. This implements the core controller API:

  - AddController / RemoveController: push/pop a controller on the
    stack. RemoveController releases all parts belonging to the removed
    controller and returns their IDs in erase_number_list.
  - SetActiveLayer / GetActiveLayer / GetSystemOverlayLayer: control
    which controller newly created parts are assigned to. The system
    overlay controller is a special controller that always renders on
    top and survives ReleaseAllWithoutSystem.
  - ReleaseAllWithoutSystem: releases all parts except those in the
    system overlay controller and re-initializes the controller stack.

Controllers are identified by their position in the stack (0 = bottom).
Draw ordering uses the scene's two-level sprite sorting: sp.z is set to
the controller's stack index and sp.z2 to the part's Z value, so parts
in higher controllers always render above lower ones regardless of
individual Z values. When the parts_multi_controller flag (see below) is
false, the original Z ordering is preserved (allowing Z-interleaving
with non-parts scene sprites -- see #180) for compatibility with games
that do not use controllers.

Save/load of the controller stack and per-part controller_no is gated on
a parts_multi_controller flag (set at PreLink time when the game's HLL
exports AddController) rather than a save version bump. This keeps the
save format stable for games that do not use controllers, while allowing
the save format to evolve freely during development.
2026-04-12 12:09:17 +09:00
Nunuhara Cabbage 753e202cea Merge pull request #320 from kichikuou/MainEXFile
MainEXFile fixes for Rance 9
2026-04-11 08:03:39 -07:00
Nunuhara Cabbage f884a58a77 Merge pull request #319 from kichikuou/movie
PartsEngine: Implement movie parts
2026-04-11 08:03:19 -07:00
kichikuou 2bc9a3d2cb MainEXFile: Fix Col() to accept EX_LIST
MainEXFile.Col() returns the number of items for EX_LIST handles.

Also removed the FIXME comments from Row and Col since the semantics
appear correct.
2026-04-10 14:29:20 +09:00
kichikuou 1e29930f4c MainEXFile: Fix set_indices/map_handles for EX_LIST
items->value was always indexing the first item; use items[i].value
to properly assign IDs and map handles for all list items.
2026-04-10 14:22:20 +09:00
kichikuou 887eebf31d MainEXFile: Add stub for ReloadDebugEXFile 2026-04-10 14:16:02 +09:00
kichikuou 96d46069ce PartsEngine: Implement movie parts
This adds PARTS_MOVIE type which creates a SACT sprite as a render
target for DrawMovie.

The GL texture is shared between the SACT sprite and parts_common, so
movie frames rendered to the sprite are directly visible through the
parts engine's rendering path.
2026-04-09 13:06:07 +09:00
kichikuou 9192bc80c5 Update libsys4 2026-04-09 12:59:52 +09:00
Nunuhara Cabbage 003ab16c72 Merge pull request #318 from kichikuou/kiwi
KiwiSoundEngine: Fix asset lookup for Rance 9
2026-04-08 17:27:24 -07:00
kichikuou 03062d5d61 KiwiSoundEngine: Fix asset lookup for Rance 9
In Rance 9 (and Blade Briders), KiwiSoundEngine looks up BGM and sound
files in archives by name formatted as "%05d" rather than by archive
index. Since the Sound_Seek function only exists in these games' HLL
definitions, its presence is used to switch Music_IsExist, Music_Prepare,
Sound_IsExist and Sound_Prepare to name-based lookups at PreLink time.
2026-04-08 08:52:51 +09:00
Nunuhara Cabbage 0bf5aaa8c8 Merge pull request #317 from kichikuou/flat
PartsEngine: Add initial support for Flat animation
2026-04-06 21:03:02 -07:00
kichikuou fe952354c5 PartsEngine: Add initial support for Flat animation
Only nested timelines and CG rendering are implemented. Stop motion and
particle emitters are not yet implemented.
2026-04-05 13:52:27 +09:00
Nunuhara Cabbage f43ca3a31a Merge pull request #316 from kichikuou/PartsEngine
Link PartsEngine.UpdateComponent to PartsEngine_Update()
2026-04-03 22:17:13 -07:00
Nunuhara Cabbage 52f2948e19 Merge pull request #315 from kichikuou/SealEngine
Add SealEngine HLL stub
2026-04-03 22:16:41 -07:00
kichikuou 92b2dd1990 Link PartsEngine.UpdateComponent to PartsEngine_Update()
PartsEngine.UpdateComponent() is a three-argument function that
corresponds to the older PartsEngine's Update() function.

PE_UpdateComponent is a one-argument function for
GUIEngine.UpdateComponent().
2026-04-04 09:51:11 +09:00
kichikuou f8ce39a324 Add SealEngine HLL stub
SealEngine is a successor to TapirEngine, the 3D engine used in Rance 9,
Evenicle, etc.
2026-04-04 07:50:58 +09:00
Nunuhara Cabbage 9562e0d1c3 Merge pull request #314 from kichikuou/PartsEngine
Initial PartsEngine work for Rance 9
2026-04-03 15:28:20 -07:00
kichikuou 623b3d3407 PartsEngine: Implement AddFillWithAlphaToPartsConstructionProcess 2026-04-02 13:21:34 +09:00
kichikuou 39886c30bd PartsEngine: Add stubs for some functions 2026-04-02 13:05:15 +09:00
kichikuou 1ad496c28d PartsEngine: Add HLL_(TODO_)EXPORTs for functions added in Rance 9
As noted in notes/parts-engine.md, many functions have been renamed.
They link to existing PE_ functions.

Some functions have had their arguments or return values changed from
int to float. For now, they just use the existing int functions.
2026-04-01 16:15:38 +09:00
Nunuhara Cabbage 039f1c9a2e Merge pull request #313 from kichikuou/CGManager
Implement CGManager functions for Rance 9
2026-03-31 21:36:04 -07:00
Nunuhara Cabbage caa593d00b Merge pull request #312 from kichikuou/dtor-order
Destruct struct members in reverse order of declaration
2026-03-31 21:35:38 -07:00
kichikuou 38610d93bb Implement CGManager functions for Rance 9 2026-03-30 16:54:36 +09:00
kichikuou 65fa898d9f Destruct struct members in reverse order of declaration
Class members are destroyed in the reverse order of their declaration
(like C++). The previous code destroyed members in declaration order,
which caused a use-after-free in Rance 9's T_Map class.

Added a test to verify the reverse destruction order.
2026-03-29 16:13:46 +09:00
Nunuhara Cabbage 547e8158a2 Merge pull request #311 from kichikuou/r9-delegate
Delegate fixes for Rance 9
2026-03-28 22:42:34 -07:00
kichikuou 197b89620c Fix extra heap_unref for ref arguments in delegate calls
When a delegate finishes calling all registered functions,
variable_fini() was called on the original stack arguments. For ref
types, this results in an unbalanced heap_unref() because the caller
pushes raw ref-values without incrementing the reference count. Non-ref
string/struct/array arguments are not affected because their push
instructions allocate new heap slots with ownership.

This fixes use-after-free in T_Loop@checkSelect in Rance 9.
2026-03-28 08:18:41 +09:00
kichikuou ecc04bc9bb Implement DG_NEW and DG_STR_TO_METHOD instructions
Used in Rance 9.
2026-03-28 08:18:41 +09:00
Nunuhara Cabbage 65ff73ca06 Merge pull request #310 from kichikuou/DrawMethod
ChipmunkSpriteEngine: Add draw method 2 (multiply) support
2026-03-21 08:19:44 -07:00
kichikuou 2ad0de6663 ChipmunkSpriteEngine: Add draw method 2 (multiply) support
This fixes a bug in Rance Quest where certain maps were not rendering.
2026-03-20 07:25:24 +09:00
Nunuhara Cabbage 5f318e859e Merge pull request #309 from kichikuou/pascha3-plus
Add support for Pascha3 Plus Contents
2026-03-14 08:19:12 -07:00
kichikuou efddc4f128 Update libsys4 2026-03-10 16:43:05 +09:00
kichikuou d93bb91d72 Add support for Pascha3 Plus Contents
Two changes from Pastel Chime 3 (likely to make the executables
incompatible):

- SystemService.XXX function
- PartsEngine.Update() has two dummy string parameters
2026-03-10 16:41:55 +09:00
Nunuhara Cabbage 49ee259d2c Merge pull request #307 from kichikuou/pascha3
Miscellaneous changes for Pastel Chime 3
2026-03-07 07:46:04 -08:00
kichikuou 3c362e9db6 game_compatibility.md: Mark Pastel Chime 3 as supported 2026-03-07 11:31:43 +09:00
kichikuou 1ad7cbb2c5 Fix array.Alloc(negative number)
array.Alloc(negative number) should create an empty array.

This fixes crash in C_HOSPITAL_ABILITY_SWITCH_PADDING::Create() in
Pastel Chime 3.
2026-03-07 11:31:43 +09:00
kichikuou a476b1d892 Implement KiwiSoundEngine.Sound_GetDataLength
Used in Pastel Chime 3.
2026-03-07 11:31:43 +09:00
kichikuou d4121032db system.ExistFile() should return false if path ends with a backslash
The system.ExistsFile() system call returns 1 if a file or directory
exists, but returns 0 when the provided path ends with a directory
separator, regardless of whether a directory exists at that location.

This subtle difference in behavior caused problems in Pastel Chime 3.
2026-03-07 11:31:43 +09:00
kichikuou 9474e321e1 Fix ChipmunkSpriteEngine.SP_SetDrawMethod
The meaning of the method parameter is the same as that of
StoatSpriteEngine.SP_SetDrawMethod.

This fixes a visual issue in Pastel Chime 3's battle scene.
2026-03-07 11:31:43 +09:00
Nunuhara Cabbage d130f38e74 Merge pull request #306 from kichikuou/dap
debugger_dap: Add null check to add_page_to_array()
2026-03-05 18:39:38 -08:00
kichikuou e66fe928e5 debugger_dap: Add null check to add_page_to_array()
This fixes a crash when inspecting an empty array with the `variables`
command.
2026-03-03 08:13:55 +09:00
Nunuhara Cabbage 134168d864 Merge pull request #305 from kichikuou/pascha3-parts
PartsEngine changes for Pastel Chime 3
2026-03-01 18:47:06 -08:00
kichikuou 6e755b21ef Update ChipmunkSpriteEngine to use the parts vertex shader
And set the `use_clipper` uniform to false.
2026-03-01 10:59:07 +09:00
kichikuou a5d488564a Implement PartsEngine.SetPartsAlphaClipperPartsNumber
This allows a specified part to be used as an alpha map (clipper) during
rendering. A dedicated vertex shader (parts.v.glsl) is introduced to
calculate clipping coordinates using an inverse transformation matrix.

Refactored parts_render_text() to use parts_render_texture() so that
alpha clipping is applied to text. This also enables color modifications
for text, while rotation and scaling remain unsupported, matching the
original PartsEngine behavior.

Incremented the parts save version since alpha_clipper_parts_no is now
persisted.
2026-03-01 07:47:40 +09:00
kichikuou 205e0a3ed0 Implement PartsEngine.ExistsFlashFile
Used in Pastel Chime 3.
2026-03-01 07:31:50 +09:00
kichikuou b758a04760 PartsEngine.SetPartsCG: Accept <save> path
This fixes an issue where thumbnails do not display on the save screen
in Pastel Chime 3.

If `cg_name` starting with "<save>" is passed, the function loads the CG
from the save directory.

Note that unlike GoatGUIEngine.SetPartsCG() in Rance Quest, `cg_name`
does not include "SaveData\\".
2026-03-01 07:31:50 +09:00
kichikuou 9c962e3467 Implement PartsEngine.AddGrayFilterToPartsConstructionProcess
It applies a grayscale filter to a specified area of the parts.
2026-03-01 07:31:36 +09:00
Nunuhara Cabbage 02129edc10 Merge pull request #304 from kichikuou/pascha3-hll
Implement HLLs for Pastel Chime 3
2026-02-28 08:17:58 -08:00
kichikuou 5ac79311b9 Implement P3SquareSprite HLL
This library is used to visualize unit movement area in the isometric
map.
2026-02-24 08:38:45 +09:00
kichikuou 75cfc9f18d Implement P3MapSprite HLL
This library is for rendering the isometric map grid in Pastel Chime 3.
It manages a background texture and an isometric grid texture. The grid
is generated from a sprite tile and an array representing tile
visibility. It provides functions to create, delete, and copy/blend
these textures onto destination sprites.
2026-02-24 08:38:45 +09:00
kichikuou eaa7f3d8d0 Implement MADLoader HLL
This HLL provides functionality for loading, managing, and rendering
animations stored in the MAD file format. A MAD file consists of a
header followed by a series of QNT image frames.
2026-02-24 08:38:45 +09:00
Nunuhara Cabbage 0d7ef9b577 Merge pull request #303 from brombrom-hani/system-service-rance-9
SystemService: Function in rance 9
2026-02-23 06:16:22 -08:00
Nunuhara Cabbage 4a7fc4d12a Merge pull request #302 from kichikuou/group-save
Treat invalid global group name as empty group
2026-02-23 06:16:06 -08:00
BromBrom-Hani e662955a1d SystemService: Function in rance 9 2026-02-21 18:37:34 +01:00
kichikuou a3c23387f4 Treat invalid global group name as empty group
Pastel Chime 3 executes system.GroupSave() with a group name of
"共有データ", but that group name does not exist in the OBJG section of
AIN.

Pascha3.exe does not treat such system.GroupSave() calls as failures,
instead behaving as if saving an empty variable group.
2026-02-21 11:02:39 +09:00
Nunuhara Cabbage f23125cb77 Merge pull request #301 from kichikuou/sort-strarray
Fix use-after-free in custom string array sort
2026-02-16 20:35:02 -08:00
kichikuou 30ac11e74b Fix use-after-free in custom string array sort
Custom comparison functions for string arrays receive their arguments by
value. Create a copy of the strings before pushing them to the stack to
prevent them from being prematurely freed after the function call.
2026-02-16 08:49:33 +09:00
Nunuhara Cabbage f40132497c Merge pull request #300 from kichikuou/pascha3
Initial HLL work for Pastel Chime 3
2026-02-14 17:47:16 -08:00
kichikuou 7540712de1 Add stub for PartsEngine.SetPartsAlphaClipperPartsNumber
For Pastel Chime 3.
2026-02-15 09:35:24 +09:00
kichikuou 6a75bc5a6b flash: reset playback state in PE_BackPartsFlashBeginFrame
This fixes a bug in Pastel Chime 3 where message progression would hang
because the Flash animation failed to resume playback after being reset.
2026-02-15 09:12:03 +09:00
kichikuou a1a809faef VSFile: Support relative paths from the game directory
Relative paths are used in Pastel Chime 3.
2026-02-14 12:41:04 +09:00
kichikuou 3929de81f1 Add stubs for AFAFactory hll 2026-02-14 12:41:01 +09:00
kichikuou 65ccb29423 Add ValueEncryption HLL
This appears to be an anti-cheat mechanism. To make save files
compatible, it should do the same calculation as the original,
but for now we just return the values as they are.
2026-02-14 12:36:58 +09:00
Nunuhara Cabbage 9f3af7b256 Merge pull request #299 from kichikuou/fnl
fnl: Fix glyph width handling
2026-02-07 08:23:45 -08:00
Nunuhara Cabbage 249bc06f53 Merge pull request #298 from kichikuou/xfree_aligned
Fix crash on Windows introduced in commit ed2239f
2026-02-07 08:22:18 -08:00
kichikuou 621eb49be8 fnl: Fix glyph width handling
This fixes the row stride calcuration for the second font of Pastel
Chime 3.
2026-02-06 16:47:15 +09:00
kichikuou 5f13b3e9d0 Fix crash on Windows introduced in commit ed2239f
Memory allocated with xcalloc_aligned (which uses _aligned_malloc on
Windows) must be freed with _aligned_free. Using standard free() caused
heap corruption and crashes.
2026-02-06 16:29:14 +09:00
Nunuhara Cabbage 15cfc5463b Merge pull request #296 from kichikuou/alignment-fix
Use xcalloc_aligned for allocating structures containing mat4
2026-01-12 17:08:34 -08:00
kichikuou ed2239fb1b Use xcalloc_aligned for allocating structures containing mat4
This fixes #294.

cglm's mat4 requires 32-byte alignment when __AVX__ is defined.
2026-01-13 08:17:31 +09:00
kichikuou 5980e49a96 Update libsys4
There is no need to call initialize_instructions() in system4.c, because
ain_open() initializes the instruction set internally when it reads the
VERS tag.
2026-01-13 08:11:33 +09:00
Nunuhara Cabbage a6871623f2 flatpak: include metadata file 2025-11-15 15:14:15 -08:00
Nunuhara Cabbage 477bbdb949 ci: cache FFmpeg build 2025-11-15 14:03:13 -08:00
Nunuhara Cabbage 0baa493f79 flatpak: enable --device=input permission
For gamepad access.
2025-11-15 13:02:40 -08:00
Nunuhara Cabbage 2c51bec001 Merge pull request #293 from brombrom-hani/fullscreen-toggle
SystemService: fullscreen control
2025-11-15 12:59:13 -08:00
BromBrom d6b5bde80c SystemService: fullscreen control 2025-11-15 13:42:20 +01:00
Nunuhara Cabbage 2510fa6b9b ci: add nightly build 2025-11-14 16:50:45 -08:00
Nunuhara Cabbage 8fecf72281 Merge pull request #292 from kichikuou/flash-fix
parts: Fix ERROR() in flash.c
2025-10-31 22:03:19 -07:00
kichikuou 93ce40bcdd parts: Fix ERROR() in flash.c
This fixes a crash when processing DefineSprite tags that contain no
PlaceObject2 tags, as seen in Rance Quest's `Battle/斧攻撃・雷.aff`.
These sprites are now registered in parts_flash->sprites with a NULL
object, and are safely skipped by the renderer.
2025-10-30 09:48:22 +09:00
Nunuhara Cabbage 4f2d367b19 Fix bug _ald_get
See description of bug at nunuhara/libsys4@4da6bf6

This fixes an issue in Rance VI when compiled at high optimization
levels.
2025-10-21 20:50:26 -07:00
Nunuhara Cabbage 74bdbd4f37 Add windows build workflow 2025-10-21 18:58:39 -07:00
Nunuhara Cabbage 2c8fc425db Add linux CI workflow 2025-10-21 17:53:39 -07:00
Nunuhara Cabbage f59158648f Check in test .ain file 2025-10-21 17:42:52 -07:00
Nunuhara Cabbage 484b643f02 Merge pull request #291 from kichikuou/android-manual
Add Android support for SystemService.OpenPlayingManual
2025-10-18 06:48:18 -07:00
kichikuou d1fdab4cde Add Android support for SystemService.OpenPlayingManual
The heavy lifting will be done on the Java side. Here we just send a
message.
2025-10-18 13:43:10 +09:00
Nunuhara Cabbage 43c6a2804c Merge pull request #290 from kichikuou/dap-race
debugger_dap: Defer starting execution until configuration is done
2025-10-10 21:49:35 -07:00
kichikuou 180c81e5f5 debugger_dap: Defer starting execution until configuration is done
The debugger previously started execution upon receiving a 'launch'
request. This created a race condition where execution could begin
before breakpoints were set by the client.

This change ensures the debugger waits for both 'launch' and
'configurationDone' requests before starting the debugee. This allows
the client to set breakpoints before execution begins.
2025-10-11 11:20:35 +09:00
Nunuhara Cabbage e29739f0be Merge pull request #289 from kichikuou/dap-output
debugger_dap: Fix garbled characters in output events on Windows
2025-10-10 18:42:38 -07:00
kichikuou 1e682bad09 debugger_dap: Fix garbled characters in output events on Windows 2025-10-11 09:49:16 +09:00
Nunuhara Cabbage 0a4981533b Merge pull request #288 from kichikuou/build-fix
Fix build error when debugger is disabled
2025-10-05 07:48:16 -07:00
kichikuou 998ab23dab Fix build error when debugger is disabled
This fixes "call to undeclared function 'screenshot_save'" error when
xsystem4.h is not included by debugger.h.
2025-10-05 18:54:14 +09:00
Nunuhara Cabbage dc8342cbab Merge pull request #287 from kichikuou/android-fullscreen
Android: Do not use SDL_WINDOW_FULLSCREEN
2025-10-04 22:30:48 -07:00
kichikuou 8d9eb931f6 Redraw screen on SDL_APP_DIDENTERFOREGROUND
Without this, the screen remains blank after resuming the app on
Android.
2025-10-04 16:06:36 +09:00
kichikuou 1621378ba1 Android: Create window with SDL_WINDOW_RESIZABLE
This reverts commit b7ab1ed476
("Android: Enforce landscape fullscreen mode").

To work around https://github.com/libsdl-org/SDL/issues/8995 where the
system bar does not disappear after resuming the app, create the window
in non-fullscreen mode. Also, since SDL hints can be configured in
AndroidManifest.xml, there is no need to set SDL_HINT_ORIENTATIONS here.
2025-10-04 15:35:30 +09:00
Nunuhara Cabbage d3cb6b4001 Fix segfault in dd1_save_walk_data
Fix null pointer dereference when input array is not allocated and walk
data isn't found.
2025-09-28 18:52:05 -07:00
Nunuhara Cabbage 2198bf5970 Implement support for screenshots on Windows 2025-09-28 15:28:33 -07:00
Nunuhara Cabbage 0a152f0e34 Fix MonsterInfo parsing bug on Windows
For reasons which I can't explain, the string "タイプ = ループ" doesn't
work correctly as a format for sscanf on mingw.

Instead, we match the exact string including whitespace.
2025-09-28 14:30:17 -07:00
Nunuhara Cabbage 2a3b636bb0 Fix windows build instructions
make, nasm and diffutils are FFmpeg build dependencies.
2025-09-28 11:52:02 -07:00
Nunuhara Cabbage 1506d085db Merge pull request #284 from kichikuou/debugger
debugger: Display values of reference variables
2025-09-28 08:06:39 -07:00
kichikuou 729957b842 debugger: Display values of reference variables
Previously, the debugger displayed `ref int` variables like this:

    ref_int: <unsupported-data-type>
    <void>: <unsupported-data-type>

This commit introduces `dbg_variable_to_string()` to dereference these
variables and display their underlying value. Both the command-line and
DAP debugger interfaces have been updated to use this new functionality.
2025-09-28 11:11:24 +09:00
Nunuhara Cabbage 6f661fb370 Add Alt+S keybinding to save screenshot
Not implemented on android or windows (yet). Zenity must be installed
for file picker dialog.
2025-09-27 11:18:55 -07:00
Nunuhara Cabbage 57a73cd924 Add F11 keybinding to toggle fullscreen 2025-09-26 17:50:21 -07:00
Nunuhara Cabbage 6424efa6ab Merge pull request #283 from kichikuou/pascha2
Various fixes for Pastel Chime Continue
2025-09-26 17:44:22 -07:00
kichikuou dc4a6f1dfa game_compatibility.md: Mark Pascha C++ as supported 2025-09-27 09:02:51 +09:00
kichikuou b53c511b4a game_compatibility.md: Mark Pastel Chime Continue as supported 2025-09-26 10:24:15 +09:00
kichikuou 0c75f21985 Add stubs for some music related SACT2 functions
This makes Pastel Chime Continue's music mode work, except for the
spectrum analyzer.
2025-09-26 10:24:15 +09:00
kichikuou b4c3818d6b Validate dungeon coordinates in some HLL functions
During dungeon initialization, these functions may be called with
uninitialized variables that hold the coordinates from the previous
dungeon exploration.
2025-09-26 10:24:15 +09:00
kichikuou fe61704b90 PastelChime2.DungeonDataLoad: Remove hardcoded dungeon dimensions
Replaced the hardcoded 40x3x40 dungeon size with dimensions read
dynamically from the `m_dsd` data structure. This allows for loading
dungeons of various sizes.
2025-09-26 10:24:15 +09:00
kichikuou 199c91dd6c DrawField: Do not set lock status on non-existent doors
This change adds a check to ensure that a door is present before
attempting to set its lock status.

This is necessary because the trap that locks doors has a bug and
attempts to lock doors in the wrong direction.
2025-09-26 10:22:58 +09:00
kichikuou 828971ce19 PastelChime2: Do no prune corridor cells with doors
PastelChime2.DLL does not have this logic, but without it it may
generate maps that are impossible to complete.
2025-09-23 14:56:17 +09:00
kichikuou e1b1208438 PastelChime2.DungeonDataLoad: Initialize map after loading 2025-09-23 14:56:17 +09:00
kichikuou b42e59c494 PastelChime2: Do not place dark floor tile directly above exit 2025-09-23 14:56:17 +09:00
Nunuhara Cabbage 0d689ac1c2 Merge pull request #282 from kichikuou/HTTPDownloader
Add stubs for HTTPDownloader
2025-09-22 18:36:12 -07:00
kichikuou aba2a53afe Add stubs for HTTPDownloader
This fixes https://github.com/kichikuou/xsystem4-android/issues/22.

Once the user grants network access permission, Rance Quest will call
HTTPDownloader.Post upon startup, making it impossible to start the
game without this change.
2025-09-23 07:25:18 +09:00
Nunuhara Cabbage 30d599f161 Merge pull request #280 from kichikuou/fix-277
Fix leak of dungeon_renderer
2025-09-21 10:34:45 -07:00
Nunuhara Cabbage 7817592728 Merge pull request #279 from kichikuou/fix-278
Fix flag index calculation in PastelChime2_Field_UpdateDoors
2025-09-21 10:34:00 -07:00
kichikuou 85244a304a Fix leak of dungeon_renderer
This fixes #277.

Now dungeon_load_dungeon() and dungeon_load_texture() can be called
multiple times without causing memory leaks.

This change also simplifies the loading process by removing
dungeon_finalize_loading() helper function, as the map only depends on
ctx->dgn, while the renderer only depends on ctx->dtx.
2025-09-21 11:02:18 +09:00
kichikuou f2d26c2a46 Fix flag index calculation in PastelChime2_Field_UpdateDoors
This fixes #278.
2025-09-20 14:48:22 +09:00
Nunuhara Cabbage d48f637744 Fix 'é' rendering in EN Rance Quest
`str[i]` returns 165 for '・' in English version of Rance Quest Magnum.
(Fixes rendering of 'Café Artful' and 'Tomato Purée'.)
2025-09-18 18:38:43 -07:00
Nunuhara Cabbage 008d43be1b Implement EFFECT_ROTATE_OUT
Used in Rance Quest.
2025-09-15 07:05:13 -07:00
Nunuhara Cabbage 05b78e6dc6 Fix text rendering issue in Rance Quest
Use ceil(threshold) as cutoff distance in dilate shader, and tone down
the strength of the fractional part of the threshold.

Take bold width into account during layout.

This fixes the text rendering of name plates in Rance Quest.
2025-09-13 21:46:00 -07:00
Nunuhara Cabbage b28624203a Merge pull request #276 from kichikuou/generate
Implement PastelChime2.AutoDungeonE_Create
2025-09-13 09:38:33 -07:00
Nunuhara Cabbage e943ef8ea9 Merge pull request #275 from kichikuou/brightness
Implement SACT2.SP_SetBrightness
2025-09-13 09:38:14 -07:00
Nunuhara Cabbage d547919713 Merge pull request #274 from kichikuou/dap-evaluate
debugger_dap: Respect frameId in evaluate requests
2025-09-13 09:37:49 -07:00
kichikuou ddf6ac5088 Implement PastelChime2.AutoDungeonE_Create
This function is responsible for generating random dungeons for Pastel
Chime Continue.

The dgn_generate_drawfield() function implements the main logic. This
algorithm constructs the dungeon through a multi-step process involving
room creation, recursive expansion, wall placement, treasure room
generation, and corridor pruning/extension.

AutoDungeonE_Create() calls this function to create a layout based on
specified parameters, and then populates arrays with the proposed
coordinates of items, enemies, and traps.

This implementation strives to faithfully reproduce the behavior of
DrawField.dll, including its bugs, although it has not been strictly
verified.
2025-09-11 12:53:09 +09:00
kichikuou 037616f38d DrawDungeon2: Move dungeon generation function to generator.c
The dungeon generation function for DrawField will also be added to this
new file.
2025-09-11 12:51:23 +09:00
kichikuou af70ee09de debugger_dap: Respect frameId in evaluate requests
The DAP 'evaluate' request handler now correctly uses the 'frameId'
argument to set the evaluation context.

This also fixes incorrect evaluation of expressions containing non-ASCII
characters.
2025-09-11 12:29:32 +09:00
kichikuou 8d67c87f6f Implement SACT2.SP_SetBrightness
Used in Pastel Chime Continue.
2025-09-09 09:19:38 +09:00
Nunuhara Cabbage 94c8329d7a Update nix version in flake
To pull in newer version of cglm
2025-09-08 07:59:08 -07:00
Nunuhara Cabbage 2c771acfe6 Merge pull request #273 from kichikuou/rsm-version
Pastel Chime Continue: Make sure resume save v7 is used
2025-09-06 17:42:00 -07:00
kichikuou eef99c0910 Pastel Chime Continue: Make sure resume save v7 is used
Because make_rsave() determines the version of resume save based on the
AIN version, it returns RSM v6 for Pastel Chime Continue. But this game
requires the comment field added in RSM v7.

This solves the issue by upgrading to RSM v7 when comments are written
to the save file.
2025-09-07 09:21:37 +09:00
Nunuhara Cabbage 44c73f644f Read .exe and set window icon
Read the game's executable file, extract icons from it, and set the
window icon.

(Ported from ai5-sdl2.)
2025-09-06 16:30:18 -07:00
Nunuhara Cabbage 6cada80d34 Merge pull request #272 from kichikuou/ffi
ffi: Make HLL calls safe against heap reallocation
2025-09-06 12:30:21 -07:00
Nunuhara Cabbage 96a560f6a2 Merge pull request #271 from kichikuou/PastelChime2
Pastel Chime Continue: Add PastelChime2 HLL
2025-09-06 12:29:59 -07:00
Nunuhara Cabbage e13583a75e Merge pull request #270 from brombrom-hani/surface-area-reanchor
fix: anchor sprite surface_area at sprite origin
2025-09-06 12:29:42 -07:00
kichikuou f0e25e53d7 ffi: Make HLL calls safe against heap reallocation
In hll_call(), pointers to heap data passed by reference could become
invalid if the heap was reallocated during the call.

The previous implementation attempted to prevent this by calling
heap_guarantee() to pre-allocate heap space. However, this approach
does not work for certain functions in PastelChime2 HLL, which can
perform an unbounded number of heap allocations.

This commit removes heap_guarantee() and replaces it with a more robust
copy-in/copy-out strategy:

- Before the call (Copy-in): For reference arguments, the pointer value
  is copied from the heap to a local variable on the stack. A pointer to
  this local variable is then passed to the HLL function.
- After the call (Copy-out): The pointer value, which may have been
  modified by the HLL function, is written back from the local variable
  to its original slot in the heap.
2025-09-06 07:34:29 +09:00
BromBrom eb0c642ab1 fix: anchor sprite surface_area at sprite origin 2025-09-04 16:44:01 +02:00
kichikuou acb4d92705 Pastel Chime Continue: Add PastelChime2 HLL
This HLL implements the core gameplay logic for the 3D dungeon
exploration mode.

Key features:

- Collision and Movement:
  - Implements 2D collision detection for player movement against walls.
  - Field_CalcMove() function calculates the desired position and
    adjusts it to slide along walls upon collision.

- Party and AI Mechanics:
  - Field_UpdatePlayersUnit() manages party movement, creating a smooth,
    snake-like following behavior for up to two companions.
  - Field_UpdateEnemyPos() provides basic enemy AI, enabling them to
    chase the player when in line-of-sight and within range, or return
    to a base position otherwise.

- Interactive Environment:
  - Field_UpdateDoors() implements automatic doors that open and close
    based on player proximity.
  - Field_CheckObjectHit() detects when the player enters the hit-range
    of an object, triggering events.

- 3D Space UI:
  - Adds dungeon_project_world_to_screen() to translate 3D world
    coordinates into 2D screen positions.
  - Field_UpdateObjectNamePlate() and Field_UpdateDoorNamePlate() use
    this projection to display and manage interactive nameplates for
    objects and doors.

- Data Persistence:
  - DungeonDataSave() and DungeonDataLoad() serializes and deserializes
    the complete dungeon state to .DSD files.
  - Integrates dungeon data with the main save system by copying .DSD
    files to/from slot-specific .DSA files.

Note: The most complex function in this HLL, the dungeon generator
AutoDungeonE_Create(), is not implemented in this change.
2025-09-02 08:14:58 +09:00
Nunuhara Cabbage b6c523f4f3 Merge pull request #269 from brombrom-hani/revert-267-surface-area-fix
Revert "fix: Y origin in prepare_chipmunk_shader"
2025-09-01 07:05:21 -07:00
brombrom-hani 6b9edcdd69 Revert "fix: Y origin in prepare_chipmunk_shader" 2025-09-01 14:35:35 +02:00
Nunuhara Cabbage 538480b348 Merge pull request #268 from kichikuou/drawfield
Pastel Chime Continue: Add DrawField HLL
2025-08-30 10:05:32 -07:00
Nunuhara Cabbage d9be9a7ad3 Merge pull request #267 from brombrom-hani/surface-area-fix
fix: Y origin in prepare_chipmunk_shader
2025-08-30 10:05:14 -07:00
kichikuou 554f742a00 Pastel Chime Continue: Add DrawField HLL
DrawField is a variant of DrawDungeon. Unlike the first-person
perspective of DrawDungeon, DrawField uses a third-person, bird's-eye
view camera.

Key features include:

- Character Rendering: A new system to render up to 256 billboarded
  sprites (characters, enemies, etc.) in the 3D world. The renderer
  supports controlling position, sprite animation, and visibility for
  each character.

- DrawField HLL API: Functions for loading assets, managing characters,
  and manipulating dungeon properties like door locks.

- Renderer: The core renderer is updated to support the DrawField mode.
  This includes disabling fog, handling sprite sheets via UV
  manipulation, and rendering ceilings as billboards.

- Map: The 2D map has been updated to reflect the DrawField style,
  including colored door lock indicators.
2025-08-30 14:30:16 +09:00
BromBrom eda8ad35f3 fix: Y origin in prepare_chipmunk_shader
Convert surface_area from top-left pixels to bottom-left UVs so `bot_left`/`top_right` align with `tex_coord` and the clip box is correct.
2025-08-28 22:32:53 +02:00
Nunuhara Cabbage 59a66a8a5a Merge pull request #266 from kichikuou/pascha2-hlls
Add HLLs for Pastel Chime Continue
2025-08-24 13:31:03 -07:00
Nunuhara Cabbage 02eab7149c Merge pull request #265 from kichikuou/Key_ClearFlagNoCtrl
Implement SACT2.Key_ClearFlagNoCtrl
2025-08-24 13:30:50 -07:00
kichikuou 1042b328a1 Pastel Chime Continue: Add DrawNumeral HLL 2025-08-23 07:12:54 +09:00
kichikuou f3484643a6 Pastel Chime Continue: Add ACXLoaderP2 HLL 2025-08-23 07:12:53 +09:00
kichikuou 46469e8732 Implement SACT2.Key_ClearFlagNoCtrl
Used in Pastel Chime Continue.

It clears key status except for VK_CONTROL.
2025-08-23 07:08:40 +09:00
kichikuou 62ec0be41a Pastel Chime Continue: Add MusicSystem HLL 2025-08-16 06:45:39 +09:00
Nunuhara Cabbage 0972c60558 Merge pull request #264 from kichikuou/s_mod
S_MOD: Consider padding for FMT_STRING
2025-08-15 13:51:56 -07:00
Nunuhara Cabbage ba2805b09f Merge pull request #263 from kichikuou/lightmap
Dungeons & Dolls: Enable light mapping
2025-08-15 13:49:56 -07:00
kichikuou 20711ffa57 S_MOD: Consider padding for FMT_STRING 2025-08-12 08:39:32 +09:00
kichikuou 7adbf9d6e6 Update libsys4 2025-08-11 16:22:23 +09:00
kichikuou 2dcc9b2aa9 Dungeons & Dolls: Enable light mapping
* dtx_load_from_dtl() loads lightmap textures.
* dgn_calc_lightmap() calculates lightmap texture index for each cell
  based on the state of the surrounding walls.
2025-08-11 16:22:20 +09:00
Nunuhara Cabbage 441419d0f9 Merge pull request #262 from kichikuou/lightmap
DrawDungeon: Implement light mapping
2025-08-10 10:42:53 -07:00
Nunuhara Cabbage a32e3b9401 Merge pull request #261 from kichikuou/walkdata-fix
DrawDungeon: bugfixes
2025-08-10 10:40:21 -07:00
kichikuou d579374a9c DrawDungeon: Implement light mapping 2025-08-09 17:04:27 +09:00
kichikuou f0a54b337d DrawDungeon14: Fix LoadWalkData and SaveWalkData
They were broken by commit 5ed05ba.
2025-08-09 14:28:41 +09:00
kichikuou 80f4246095 DrawDungeon.LoadWalkData should return true when data is not found
Returning false causes system.Error() in Rance 6.
2025-08-09 14:28:41 +09:00
Nunuhara Cabbage b71b61c1d6 Improve detection of MG version of Sengoku Rance
Fixes #241
2025-07-30 17:47:01 -07:00
Nunuhara Cabbage 8c791db5d4 Fix text overlap bug in Haruka
Fixes #252
2025-07-30 17:41:32 -07:00
Nunuhara Cabbage d404324e7b Merge pull request #260 from kichikuou/dolls
game_compatibility.md: Mark DUNGEONS & DOLLS as supported
2025-07-21 21:39:57 -07:00
Nunuhara Cabbage aeb5dbb08c Merge pull request #259 from kichikuou/global-dtors
Dungeons & Dolls: Call global variable destructors on exit
2025-07-21 21:39:38 -07:00
Nunuhara Cabbage 9db75ab870 Merge pull request #258 from kichikuou/circular-scene-buffer
AnteaterADVEngine: Change `scenes` to a circular buffer
2025-07-21 21:38:15 -07:00
kichikuou 67387e88d0 game_compatibility.md: Mark DUNGEONS & DOLLS as supported 2025-07-21 13:39:56 +09:00
kichikuou d57c8cc9f4 Dungeons & Dolls: Call global variable destructors on exit
Early versions of System4 (Sys42VM.dll < 3.0) execute destructors for
global variables on exit.

Dungeons & Dolls saves its game state in the destructors of global
variables (~CDataDoll(), ~CDataItem(), ~CDataMain()), so the game was
not saved in xsystem4 before this.

This behavior has some quirks:
 * Destructors for variables on the call stack are not called on exit.
 * Destructors are called in the reverse order of the global variable
   declarations.
 * Inside a destructor, it is possible to access another global variable
   whose destructor has already been called (!).

Since this is a problematic behavior that was removed in later versions
of Sys42VM, let's add minimal support for it as a game-specific hack.
2025-07-21 13:32:54 +09:00
Nunuhara Cabbage 677f20628c Merge pull request #257 from kichikuou/DrawDungeon2
Dungeons & Dolls: Implement DrawDungeon2 HLL
2025-07-20 21:22:08 -07:00
kichikuou e68c41a0b9 AnteaterADVEngine: Change scenes to a circular buffer
Following the implementation of `logs` (#220), `scenes` is now also
implemented as a circular buffer. This ensures that when the number of
saved scenes reaches a certain limit (500), the oldest scenes are
automatically discarded.
2025-07-21 12:35:47 +09:00
kichikuou fbd105b697 DrawDungeon2: Implement pathfinding functions 2025-07-14 20:51:44 +09:00
kichikuou 3c7634522a DrawDungeon2: Use special event marker for boss floors 2025-07-14 16:51:59 +09:00
kichikuou 5ed05ba685 DrawDungeon2: Fix 2D map 2025-07-14 16:51:59 +09:00
kichikuou 11fe6f6dda DrawDungeon2: Do not use skybox 2025-07-14 16:51:59 +09:00
kichikuou 3057c2a96b DrawDungeon2: Load textures from Texture.dtl file
Texture.dtl contains multiple sets of wall, floor, and ceiling texture
images. dtx_load_from_dtl() randomly selects a texture set using the
floor number as the random seed and returns it as a dtx structure.
2025-07-14 16:51:59 +09:00
kichikuou 5041d817d1 Dungeons & Dolls: Implement DrawDungeon2 HLL
In DrawDungeon2, dungeons are generated randomly using a dedicated
random number generator (mtrand43.c), which is a Mersenne Twister with
N=4, M=3.

The entry point for map generation is dgn_generate_drawdungeon2(),
which deterministically generates a floor map using the floor number as
the random seed.

I verified that generated floor layout, player starting position,
exit, and treasure chest locations match the original DrawDungeon2.dll
up to the 1000th floor.
2025-07-14 16:51:32 +09:00
Nunuhara Cabbage cb4e44a551 Merge pull request #256 from kichikuou/dtor
Do not call destructors for structs passed by value to HLL functions
2025-07-13 08:27:33 -07:00
Nunuhara Cabbage 74ae7223c3 Merge pull request #255 from kichikuou/DnD-hlls
Implement HLLs for Dungeons & Dolls
2025-07-13 08:26:10 -07:00
kichikuou 7dc6760928 Do not call destructors for structs passed by value to HLL functions
Some classes in Dungeons & Dolls serialize themselves using
`File.Write(this)` in their destructors. Because `File.Write` takes the
argument by value, a copy of `this` is created. If the destructor is
called on the copied `this`, it falls into an an infinite loop.
2025-07-13 13:48:30 +09:00
kichikuou e1ca00a27b Implement Array HLL
This HLL defines numerous functions, but only two are used in
Dungeons & Dolls: NV_eneq and NV_sceq.
2025-07-13 12:54:56 +09:00
kichikuou 7989ffc542 Implement CalcTable HLL
It provides 64-bit calculation functions with virtual registers.

While the original CalcTable.dll accumulates instructions and executes
them with CalcTable.Run(), this implementation performs calculations on
the fly. This simplification is possible because Run() is only called
with loop=1.
2025-07-13 12:49:34 +09:00
Nunuhara Cabbage 6e14285038 Merge pull request #254 from kichikuou/system_error
Add message box for system.Error()
2025-07-12 07:47:05 -07:00
kichikuou 55a214553a Add message box for system.Error()
`system.Error()` is used for critical errors, so its message should be
presented to the user.

This makes system.Error() show a message box, allowing users to choose
between stopping execution or continuing.
2025-07-11 11:39:12 +09:00
Nunuhara Cabbage bf9900d8aa Merge pull request #251 from kichikuou/powervr
3d: Fix skeletal animation on PowerVR GPUs
2025-06-25 17:37:31 -07:00
kichikuou e00ba69546 3d: Fix skeletal animation on PowerVR GPUs
This fixes https://github.com/kichikuou/xsystem4-android/issues/14.

There appears to be a bug in the OpenGL ES implementation for PowerVR
that prevents row_major mat4x3 uniforms from loading correctly.

This changes bone_matrices from row_major mat4x3 to column_major mat3x4
and transposes them manually in the vertex shaders. (Column major mat4x3
cannot be used due to the UBO size limitation)
2025-06-25 12:55:52 +09:00
Nunuhara Cabbage b88abe375a Merge pull request #250 from kichikuou/shader-compile-error
3d: Ensure shader fragment ends with a newline
2025-06-24 06:11:42 -07:00
kichikuou c86977ad1b 3d: Ensure shader fragment ends with a newline
The `defines` string in load_shader() is prepended to the glsl file, but
it was not terminated with a newline, so the resulting shader source
looked like this:

    #define REIGN_ENGINE 0
    #define TAPIR_ENGINE 1
    #define ENGINE 1/* Copyright (C) ...
     *
     * This program is free software; ...
    ...

This confused some OpenGL ES implementations, causing a syntax error.
https://github.com/kichikuou/xsystem4-android/issues/15
2025-06-24 18:34:46 +09:00
Nunuhara Cabbage ffb9fbae31 Silence spurious warnings
None of these are actual bugs as far as I can tell.
2025-06-23 19:04:52 -07:00
Nunuhara Cabbage 3ef7ce926b Merge pull request #249 from brombrom-hani/master
SystemService: Implement playing manual
2025-06-23 18:27:18 -07:00
Nunuhara Cabbage bf6dcef2a8 Merge pull request #248 from kichikuou/rq
Update game compatibility table
2025-06-23 18:26:58 -07:00
Nunuhara Cabbage 8a62ec6dc5 Merge pull request #247 from kichikuou/3d
Rance Quest: Fix 3D rendering issues
2025-06-23 18:26:36 -07:00
Brombrom Hani 152af8685f Remove percent_encode from the compilation on windows 2025-06-23 13:09:20 +02:00
Brombrom Hani c5d6afdd08 Fix manual opening on Windows by conditionally applying percent encoding
- Only apply percent encoding on non-Windows platforms in OpenPlayingManual
- Windows uses ShellExecuteW which doesn't work with percent-encoded paths
- Unix platforms still use percent encoding for proper URL handling
- Fixes manual opening functionality on Windows systems
2025-06-23 13:03:50 +02:00
Brombrom Hani 9d6861b10b Add percent encoding for manual file paths in OpenPlayingManual
- Add percent_encode() function to properly encode URLs for SDL_OpenURL
- Removed not needed null check on filename
- Update SystemService_OpenPlayingManual to use percent encoding on file paths
2025-06-23 11:54:31 +02:00
Brombrom Hani c7ba379173 Fix file:// URL formatting for cross-platform compatibility
Use file:/// prefix on Windows and file:// on Unix-like systems.
Windows paths need the extra slash since they don't start with /.
2025-06-23 00:13:37 +02:00
Brombrom Hani f4d4e8f90a Implement open playing manual 2025-06-22 16:37:35 +02:00
kichikuou 379bbfeb07 Update game compatibility table
Marking Rance Quest and Rance Quest Magnum as supported.

I was able to clear Rance Quest Magnum Integrated Edition (TADA patch
v3.86E) without any issues.

I have only played the first few quests of the original Rance Quest, but
I think it is safe to say that it works.

Fixes #209.
2025-06-22 08:24:33 +09:00
kichikuou 117c72cf09 3d: Implement texture animation
Skinned models can have multiple texture images for animation. When a
material colormap in the .pol file is `image.png`, additional images are
stored with names like `image[1].png`, `image[2].png`, etc.

Animation frame information is stored in `<motion_name>.txa` file. This
is a text file containing newline-separated integers, specifying the
texture index for each motion frame.
2025-06-21 16:55:24 +09:00
kichikuou 3577079a04 3d: Do not draw shadow on transparent or sprite objects
This fixes mapT_0a.POL in Rance Quest.
2025-06-21 06:40:15 +09:00
kichikuou 8d120b8a4d 3d: Avoid zero division in update_motion() 2025-06-16 11:43:26 +09:00
kichikuou e2440a5a44 Implement TapirEngine.SetInstanceMeshShow 2025-06-16 11:43:26 +09:00
kichikuou bba3f96a1b opr: All meshes are selected by default 2025-06-16 11:43:26 +09:00
kichikuou f4f7adb618 3d: Change alpha testing thresholds
- 0.1 for ALPHA_MAP_TEST, which fixes a rendering issue of cyouchin.POL
- 0.75 for ALPHA_TEST. Judging from the rendering of mapT_0a.POL, this
  seems to be the correct value
2025-06-16 11:43:26 +09:00
Nunuhara Cabbage 8730475f1c Merge pull request #246 from kichikuou/parts
PE_SetPartsCG_by_string_index: Accept `<save>` path
2025-06-15 18:43:49 -07:00
Nunuhara Cabbage a84d78ac5d Merge pull request #245 from kichikuou/ffi-fix
Fix bool return value of HLL functions
2025-06-15 18:43:14 -07:00
kichikuou 92322c27f0 PE_SetPartsCG_by_string_index: Accept <save> path
The custom characters feature in Rance Quest calls GoatGUIEngine.
SetPartsCG() with a name like "<save>SaveData\\顔CG\\filename.png",
which must be resolved with the save directory.
2025-06-15 09:37:28 +09:00
kichikuou 50cb0f8063 Fix bool return value of HLL functions
Since bool functions return a 1-byte value, the value of the upper 24
bits of r.i after ffi_call is undefined.

This actually led to a bug where PassRegister.ExistText returned
incorrect values on Windows x64.
2025-06-15 08:30:40 +09:00
Nunuhara Cabbage 13e76f67b3 Merge pull request #244 from kichikuou/parts
Implement GoatGUIEngine.AddDrawRectToPartsConstructionProcess
2025-06-14 13:04:14 -07:00
Nunuhara Cabbage 37f1bc2723 Merge pull request #243 from kichikuou/InputString
Implement InputString.Inputs and InputString.Converts
2025-06-14 13:03:34 -07:00
Nunuhara Cabbage 0d7830f24c Merge pull request #242 from kichikuou/vibration
parts: Implement PE_AddWholeMotionVibrationSize
2025-06-14 13:03:17 -07:00
kichikuou c70e5e028e Implement GoatGUIEngine.AddDrawRectToPartsConstructionProcess
Used in Rance Quest.
2025-06-14 15:37:35 +09:00
kichikuou a4b4e7f5bb Implement InputString.Inputs and InputString.Converts
Used in Rance Quest.

Presumably, Inputs() returns true when there is unconverted text in IME,
and Converts() returns whether the user is in the conversion phase of
IME input.

SDL text input API cannot distinguish them, so in this implementation
both return true when there is uncommitted text.
2025-06-14 08:41:24 +09:00
kichikuou 9ccc4ab0c7 parts: Implement PE_AddWholeMotionVibrationSize
It vibrates the whole screen. To implement this, this introduces a
global motion list and parts_set_global_pos(), which sets the position
of the root of the parts tree.
2025-06-10 09:35:11 +09:00
Nunuhara Cabbage 13a00c131d Merge pull request #240 from kichikuou/3d
Rance Quest: Fix 3D rendering issues
2025-06-07 06:45:10 -07:00
kichikuou 929a2dd3e7 3d: Draw transparent objects before outlines
Otherwise, the background of transparent objects with outlines (e.g.
hitotsurei01.POL) are filled with the outline color.
2025-06-04 10:23:03 +09:00
kichikuou b5b92bc367 3d: Add ALPHA_MAP_TEST mode
It does alpha testing using alpha map texture.
2025-06-02 07:25:38 +09:00
kichikuou e5fadf2b73 TapirEngine: Correctly implement MeshPart in .opr parser
`MeshPart = "str"` sets the attribute to all meshes whose name contains
`str`.
2025-06-02 07:25:38 +09:00
kichikuou 2713290ac9 TapirEngine: Add support for BlendMode = Add opr attribute 2025-06-02 07:25:37 +09:00
Nunuhara Cabbage 3bfb92e1fb Merge pull request #239 from kichikuou/pathfinding
TapirEngine: Implement pathfinding functions
2025-06-01 09:01:05 -07:00
kichikuou 378450c625 Implement TapirEngine.OptimizeInstancePathLine
It simplifies the path calculated by TapirEngine.FindInstancePath() by
removing unnecessary points.
2025-05-30 07:43:15 +09:00
kichikuou 919b86916c TapirEngine: Implement pathfinding functions
TapirEngine.FindInstancePath() takes a starting point and an end point
and executes the A* algorithm on the collision mesh. The resulting path
can be obtained with TapirEngine.GetInstancePathLine().
2025-05-30 07:43:11 +09:00
kichikuou 6fbd147c54 Implement TapirEngine.CalcPathFinderIntersectEyeVec
It returns the position on the collision mesh corresponding to the mouse
coordinates.
2025-05-26 10:06:13 +09:00
Nunuhara Cabbage bcae91003a Merge pull request #238 from kichikuou/mg-rance7-text
Fix overlapping text issue in MangaGamer Sengoku Rance
2025-05-24 10:50:27 -07:00
kichikuou 7e584c5fd2 Fix overlapping text issue in MangaGamer Sengoku Rance
This fixes https://github.com/kichikuou/xsystem4-android/issues/12.

This game uses DrawGraph.FillAMap() to erase text drawn on the sprite,
but our SengokuRanceFont implementation draws text on sp->text.texture.

For a detailed analysis of this issue and other possible solutions, see
https://github.com/nunuhara/xsystem4/issues/237.
2025-05-24 09:10:25 +09:00
Nunuhara Cabbage b0c7aad6c3 Merge pull request #236 from kichikuou/world_transform
gfx: Remove world_transform from struct texture
2025-05-21 06:07:34 -07:00
Nunuhara Cabbage 5d0819a115 Merge pull request #235 from kichikuou/rq
Small changes for Rance Quest
2025-05-21 06:06:24 -07:00
kichikuou 724bbcdfdd 3d: Disable light mapping for meshes without light_uv 2025-05-21 07:44:15 +09:00
kichikuou dc0daf3329 gfx: Remove world_transform from struct texture
Pure refactoring, no behavioral changes.
2025-05-18 21:15:03 +09:00
kichikuou 5d271deec0 ChipmunkSpriteEngine: Remove duplicated HLL_EXPORT entries 2025-05-18 11:34:08 +09:00
kichikuou 2ede7e6bb1 StoatSpriteEngine: Clear cached font_size struct in SP_SetTextSpriteType
This fixes a bug where the wrong font was used on the Rance Quest status
screen.

Commit 6c2a55c reset `font_size` on size changes, but the same is needed
for face changes.
2025-05-18 11:23:28 +09:00
kichikuou e6d069b757 SystemService.GetGameFolderPath should return SJIS string 2025-05-18 11:23:27 +09:00
kichikuou d6abcc2f92 Plumb GoatGUIEngine.AddWholeMotionVibrationSize 2025-05-18 11:23:27 +09:00
kichikuou de0646e430 Implement ChipmunkSpriteEngine.SP_{Suspend,Resume,IsSuspend}
Their exact meaning is unknown; currently it is just a read/write
boolean flag.
2025-05-18 11:23:27 +09:00
Nunuhara Cabbage c04fd2280d Merge pull request #233 from kichikuou/sprite-transform
Rance Quest: Implement ChipmunkSpriteEngine.SP_SetSpriteTransform*
2025-05-17 18:13:35 -07:00
kichikuou 71c58e85ae LIST_REMOVE regardless of whether free() is defined 2025-05-18 07:27:32 +09:00
kichikuou 61650308b7 Implement ChipmunkSpriteEngine.SP_SetSpriteTransform*
Used for the treasure chest opening effect in Rance Quest.

Implemented using draw_plugin. The render() method of draw_plugin is no
longer dedicated to custom sprites, but can be used for any sprites to
override the default sprite rendering function.
2025-05-17 14:28:45 +09:00
kichikuou bb26326929 draw_plugin: Add free() method
It is called when the plugin is unbound from a sprite, or when the
sprite to which the plugin is bound is released.

This prevents memory leaks when sprites are destroyed without the plugin
being released, and simplifies lifetime management of the DrawDungeon
plugin.
2025-05-16 09:13:10 +09:00
kichikuou f50c9f6d77 gfx: Add gfx_render_quadrilateral()
It draws a quadrilateral with arbitrary vertex and texture coordinates.

This is used to properly implement DrawGraph.DrawDeformedSpriteBilinear,
and will be used to implement ChipmunkSpriteEngine.
SP_SetSpriteTransformPos in a subsequent patch.
2025-05-16 09:13:06 +09:00
Nunuhara Cabbage ea081e0eb7 Merge pull request #231 from kichikuou/debugger-dap
debugger_dap: Source-level debugging
2025-05-12 17:50:08 -07:00
kichikuou e8ecad598a debugger_dap: Support SteppingGranularity
Debuggers that operate at the instruction level can execute instruction-
level step even when xsystem4 has loaded debug information, by adding
`granularity: "instruction"` to the step request.
2025-05-10 16:17:54 +09:00
kichikuou cb551e8f06 debugger_dap: Source-level debugging
- Add support for setBreakpoints request
- Add source locations to stackTrace response
- Source-level stepIn/stepOut/next executions

All of these only work if debug information is available. Otherwise they
work at the instruction level as before.
2025-05-10 15:31:04 +09:00
Nunuhara Cabbage 002bca4e24 Merge pull request #230 from kichikuou/a_sort
A_SORT, A_SORT_MEM: Use stable sorting
2025-05-09 22:56:33 -07:00
kichikuou 0bbd9171b5 A_SORT, A_SORT_MEM: Use stable sorting
This fixes the weird ordering of the quest list in Rance Quest.
2025-05-04 12:44:27 +09:00
Nunuhara Cabbage 7dfc9926be Merge pull request #229 from kichikuou/z-tie-break
SACTDX/Stoat/Chipmunk: render sprites in correct order for same Z
2025-05-03 13:04:09 -07:00
kichikuou 1dd10ecc45 SACTDX/Stoat/Chipmunk: render sprites in correct order for same Z
In SACT2, if two sprites have the same Z value, they are rendered in
increasing order of their sprite numbers. This behavior is documented in
the SDK manual.

However, in later versions of the sprite engine (SACTDX,
StoatSpriteEngine, ChipmunkSpriteEngine), sprites are drawn in the order
they were created.

This fixes an issue in Rance Quest Magnum which relies on this behavior.
2025-05-03 11:13:03 +09:00
Nunuhara Cabbage ba11900350 Merge pull request #228 from kichikuou/assets
Use case-insensitive match for asset file names
2025-04-29 17:33:53 -07:00
kichikuou 508839ed4c Use case-insensitive match for asset file names
This fixes #227.

Rance 1 Digest Edition includes `Rance1.ain` and `RANCE1BA.ald`.
2025-04-28 16:47:47 +09:00
Nunuhara Cabbage 55f826db36 Merge pull request #225 from kichikuou/trial
SystemService: Add two functions
2025-04-13 07:11:09 -07:00
kichikuou 882354c692 SystemService: Add two functions
Used in the trial versions of Rance 01 and Dorapeko.
2025-04-12 13:25:13 +09:00
Nunuhara Cabbage 071d7d2137 Merge pull request #224 from kichikuou/cmake
cmake: Use find_package() for zlib, SDL and freetype
2025-04-08 19:16:01 -07:00
kichikuou eddac54fa0 cmake: Use find_package() for zlib, SDL and freetype
It is the user's responsibility to ensure that these are found.
2025-04-07 13:20:42 +09:00
Nunuhara Cabbage 2e1059cbac Merge pull request #222 from kichikuou/daiteikoku
Daiteikoku support
2025-04-01 18:12:57 -07:00
kichikuou f9177b89b1 game_compatibility.md: Mark Daiteikoku as supported 2025-04-01 14:18:44 +09:00
kichikuou 7bae2cdf8a DrawGraph.CopyRotZoom2Bilinear should copy src alpha 2025-04-01 11:53:25 +09:00
kichikuou 769bdca725 Implement DrawGraph.CopyReverseLRWithAMap
Used in Daiteikoku.
2025-04-01 11:47:21 +09:00
kichikuou 6517303e2a Implement FileOperation.{ExistFile,GetFileSize}
This unblocks the "User Admiral" feature of Daiteikoku.
2025-04-01 10:41:56 +09:00
Nunuhara Cabbage 0e388c74c0 Merge pull request #221 from kichikuou/effect60
Implement effect number 60
2025-03-22 23:46:02 -07:00
kichikuou 7ff5ec89e7 Implement effect number 60
Used in Rance Quest.
2025-03-23 08:22:16 +09:00
Nunuhara Cabbage 33403cbd3d Merge pull request #220 from kichikuou/circular-log-buffer
AnteaterADVEngine: Limit log size to 1000 pages
2025-03-17 20:43:50 -07:00
kichikuou 40fe2068e7 AnteaterADVEngine: Limit log size to 1000 pages
If the log exceeds 1000 pages, the oldest pages are discarded. This
behavior is in line with AnteaterADVEngine.dll of Daiteikoku.

This prevents the log buffer from growing indefinitely, slowing down
saves and loads.
2025-03-17 21:06:10 +09:00
Nunuhara Cabbage 40914a7cef Merge pull request #219 from kichikuou/hoken
StoatSpriteEngine: multisprite_update() should not use sprite_set_show()
2025-03-15 07:18:04 -07:00
kichikuou 0946900e02 game_compatibility: Mark "Boku Dake no Hokenshitsu" as supported 2025-03-15 08:19:48 +09:00
kichikuou 56d9b607b2 StoatSpriteEngine: multisprite_update() should not use sprite_set_show()
sprite_set_show() is also used by MultiSprite_SetAllShowMessageFrame,
causing interference.

Now multisprite_update() clears the sprite's texture when there's no CG,
rather than hiding it.

Fixes #218.
2025-03-15 08:15:02 +09:00
Nunuhara Cabbage 155c801804 Update libsys4 2025-03-09 17:31:16 -07:00
Nunuhara Cabbage 4942e41fb8 Merge pull request #217 from kichikuou/drawgraph
Daiteikoku: Implement DrawGraph.DrawDeformedSpriteBilinear
2025-03-03 07:53:39 -08:00
kichikuou ac8a37f67b Daiteikoku: Implement DrawGraph.DrawDeformedSpriteBilinear
This function draws a quad with arbitrary vertex and texture
coordinates, but since it is actually only used to copy a rectangular
area, this can be implemented using gfx_copy_stretch().

This also adds HLL_TODO_EXPORTs for the DrawGraph functions defined but
unused in Daiteikoku.
2025-02-26 13:28:10 +09:00
Nunuhara Cabbage 331563a165 Merge pull request #216 from kichikuou/daiteikoku-text
Fix text rendering issues in Daiteikoku
2025-02-24 15:43:46 -08:00
Nunuhara Cabbage c30510e688 Merge pull request #215 from kichikuou/vsync
SystemService: Persist "wait vsync" setting to disk
2025-02-24 15:43:23 -08:00
kichikuou 81c0c494b0 parts: Draw per-character glyphs directly to the screen
Before this, character glyphs were copied to an intermediate texture
(text->common.texture) using gfx_copy_with_alpha_map(). In Daiteikoku,
some text sprites have a character spacing of -4, causing the copy to
cut off the right edge of the previously drawn character.

This fixes the problem by having parts_render_text() blend per-glyph
textures directly onto the target without using an intermediate texture.
2025-02-24 10:07:48 +09:00
kichikuou e9bec3c2fe Use text_style_width() to calculate CharSprite width
So that edge width is taken into account.
2025-02-24 10:07:47 +09:00
kichikuou 298e9bddf5 Fix text rendering issue on the save screen of Daiteikoku
This fixes the same bug that commit c4e17c6 fixed, for sprites created
by ChipmunkSpriteEngine.SP_SetTextSprite. This uses text_style_width()
instead of gfx_size_char() so that edge width is taken into account.
2025-02-24 10:07:47 +09:00
kichikuou bf3c4feb9d SystemService: Persist "wait vsync" setting to disk
This setting has a significant impact on system load, so users may want
xsystem4 to remember their preference.

This implementation uses a JSON format, while the AliceSoft's
implementation saves it to a binary file (WindowSetting.sav).

This only records the wait_vsync setting, since the other fields in
window_settings are currently no-op.
2025-02-23 11:02:27 +09:00
Nunuhara Cabbage 6a36fc8f53 Merge pull request #214 from kichikuou/DrawEffect
Implement DrawEffect HLL
2024-12-29 20:36:06 -08:00
Nunuhara Cabbage 45876a9921 Merge pull request #213 from kichikuou/rsm
Use RSM save format by default
2024-12-29 20:35:30 -08:00
kichikuou 2461c1e52d Implement DrawEffect HLL
Used in Ultra Mahou Shoujo Manana vol.5.

Although the HLL interface allows partial screen effects, it is actually
used only for full screen effects.
2024-12-29 14:06:42 +09:00
kichikuou 41c7830558 Use RSM save format by default
Before this, the resume save format defaulted to JSON, which could not
be loaded by System40.exe and save/load was sometimes too slow even on
desktop environments.

In xsystem4-android the RSM format has been the default for 9 months and
no problems have been reported. Let's make this the default on all
platforms.
2024-12-28 18:23:14 +09:00
Nunuhara Cabbage 009bafae40 Merge pull request #212 from kichikuou/debugger_dap
debugger_dap: minor fixes
2024-11-18 20:47:42 -08:00
Nunuhara Cabbage e891e74bcf Merge pull request #211 from kichikuou/android-fix
Android: Update SDL2 to 2.30.9
2024-11-18 20:47:19 -08:00
kichikuou 5576f14a0f debugger_dap: minor fixes
* Add `allThreadsStopped` to Stopped event to indicate that stacktrace
  can be accessed
* StackTraceResponse should return most recent call first
* Fix instruction pointers of calling frames

The first two will improve compatibility with DAP clients other than
xsys4dbg.
2024-11-17 09:42:25 +09:00
kichikuou 90075f2e25 Android: Update SDL2 to 2.30.9
This fixes an audio issue on Android 15.
https://github.com/libsdl-org/SDL/issues/11376
2024-11-17 08:34:28 +09:00
Nunuhara Cabbage c0cc3f729b Merge pull request #210 from kichikuou/debugger
debugger_cmd: Add support for source-level debugging
2024-11-10 07:32:29 -08:00
kichikuou 4d303b291d debugger_cmd: Add support for source-level debugging
This adds source-level debugging capabilities to the command-line
debugger, utilizing debug information generated by sys4dc. The debug
information format is documented at:
https://github.com/kichikuou/sys4dc/blob/master/docs/debug_info.md

The location of the debug information file can be specified with the
`--debug-info` command-line flag. If not specified, xsystem4 will
attempt to load it from `gamedir_path("src/debug_info.json")`.

When debug information is available, a breakpoint can be set at a
specific line in a file using `breakpoint <file> <line>`. Also, `step`
and `next` commands advance execution to the next source line (this is
naively implemented by repeating instruction-level stepping).
2024-11-09 13:10:13 +09:00
Nunuhara Cabbage e73abc3cd6 Merge pull request #208 from kichikuou/draw-plugins
Implement DrawSnow, DrawRain, and DrawRipple HLLs
2024-11-02 15:28:02 -07:00
kichikuou 579c158477 Implement DrawRipple HLL
Used in Majo no Shokuzai.
2024-11-02 07:55:30 +09:00
kichikuou 842bac92f3 Implement DrawRain HLL
Used in Tsuma Shibori.
2024-11-01 10:59:06 +09:00
kichikuou dc8a9379d0 Implement DrawSnow HLL
Used in Tsuma Shibori, and some indie System 4 games.

This HLL is a draw plugin that uses SACT2's "custom sprite" mechanism.
Custom sprites do not have a texture. Instead, the plugin's render()
callback draws them directly to the main surface.
2024-11-01 08:53:58 +09:00
Nunuhara Cabbage f8f02a1c99 Merge pull request #207 from kichikuou/framebuffer
Fix "incomplete framebuffer" error in gfx_init_texture_rgb(a)
2024-10-27 20:38:55 -07:00
kichikuou d7d9bb70f2 Fix "incomplete framebuffer" error in gfx_init_texture_rgb(a)
This fixes "incomplete framebuffer" error in Haru Urare right after the
game start, due to gfx_set_framebuffer() being called with a zero width
texture. It was a regression introduced by commit 04d5237, which started
using gfx_set_framebuffer() in gfx_init_texture_rgba().

Ideally, we should avoid creating zero-area textures in upper layers
(commit 3f18b18 was an attempt to do so), but this is difficult because
there are many places that create textures. Let's just make sure that we
don't generate unrecoverable errors.
2024-10-28 11:28:08 +09:00
Nunuhara Cabbage dcdb82e2a8 Merge pull request #205 from kichikuou/alpha
TapirEngine: Fix alpha test / alpha blend conditions
2024-10-25 19:00:27 -07:00
kichikuou f1a2904262 TapirEngine: Fix alpha test / alpha blend conditions
In ReignEngine, alpha blending is the default. Alpha testing is used if
the mesh/material has the (sprite) attribute.

In TapirEngine, alpha testing is the default. Alpha blending is used if
the mesh/material has the (alpha) attribute.
2024-10-22 10:17:07 +09:00
kichikuou ecd71896b3 3d: Store 3D engine version in a global variable
So that we don't have to pass it around everywhere.
2024-10-22 10:16:51 +09:00
Nunuhara Cabbage d7b7879747 Merge pull request #204 from kichikuou/3d
3d: Various improvements for Rance Quest
2024-10-20 09:08:45 -07:00
kichikuou 1cbf6125ce 3d: Implement vertex alpha
POL v2 models can have an alpha mod per vertex.
2024-10-20 08:25:42 +09:00
kichikuou 9b03741288 3d: Pack bone transform matrices
Before this, the BoneTransforms uniform block consumed
(4 * 4 * sizeof(float) * MAX_BONES) = 19712 bytes, which exceeds 16384,
the minimum possible value of GL_MAX_UNIFORM_BLOCK_SIZE in OpenGL ES
3.2.

Since the bone matrices are affine, we can drop the 4th rows and pack
them into a mat4x3 array. Now the BoneTransforms block is 14784 bytes
and it should work with all OpenGL ES 3.2 implementations.
2024-10-20 08:25:39 +09:00
kichikuou 4e04db0045 3d: Implement MESH_BOTH attribute
It disables back-face culling.
2024-10-20 08:16:27 +09:00
kichikuou abd3a276a3 TapirEngine: Implement UVScroll mesh attribute 2024-10-20 08:16:24 +09:00
Nunuhara Cabbage 9ca3d3e9c6 Merge pull request #203 from kichikuou/lighting
TapirEngine: Simplify lighting
2024-10-18 20:15:02 -07:00
kichikuou d8ad22b638 TapirEngine: Simplify lighting
In TapirEngine, the following lighting features are not used:

- global ambient
- directional lights
- specular lights
- rim lights
- fog

(The setters / getters for these parameters are still there, but they
don't affect rendering.)

This implementation disables those features in GLSL using #ifdefs. The C
code that sets up the lighting remains almost unchanged --
glGetUniformLocation() will return -1 if the specified uniform variable
name is not found, and glUniform*(-1, ...) will be no-op.
2024-10-19 08:43:31 +09:00
Nunuhara Cabbage 3f02a22a8d Merge pull request #202 from kichikuou/fps
gfx: Add frame rate counter
2024-10-17 06:30:07 -07:00
kichikuou bff491bbe9 gfx: Add frame rate counter
It is exposed through StoatSpriteEngine functions, and is normally only
visible when the game's debug mode is enabled. It's very useful for
checking graphics performance.
2024-10-17 09:20:26 +09:00
Nunuhara Cabbage f566539e4f Merge pull request #201 from kichikuou/outline
TapirEngine: Outline rendering
2024-10-13 11:28:53 -07:00
kichikuou c04aa8a844 TapirEngine: Outline rendering
This implements outline (called "edge" in the game config) rendering of
3D objects, using the "inverted hull" method.
2024-10-13 07:18:49 +09:00
kichikuou 87b1e2abe2 Make variable names consistent between reign.v.glsl and reign_shadow.v.glsl
Pure refactoring, no behavior changes.
2024-10-13 07:18:49 +09:00
kichikuou a0a68a022c TapirEngine: Load .opr file
A .pol file may have a corresponding .opr file, which is a text file
containing parameters for the meshes.
2024-10-13 07:18:49 +09:00
Nunuhara Cabbage 3fb2dc3650 Merge pull request #200 from kichikuou/bones
3d: Increase MAX_BONES to 308
2024-10-11 21:00:49 -07:00
kichikuou c1ce2c88c6 3d: Increase MAX_BONES to 308
This is the maximum number of bones in a model for Rance Quest
(pasuteru_full.POL).

Now bone transform matrices are stored in a uniform buffer object,
because its size exceeds GL_MAX_VERTEX_UNIFORM_COMPONENTS in iOS Safari.
2024-10-12 07:35:51 +09:00
Nunuhara Cabbage 222d2700a9 Merge pull request #199 from kichikuou/CGManager
CGManager.LoadArchive() should open archive in the game directory
2024-10-09 06:24:33 -07:00
kichikuou dd18d68be5 CGManager.LoadArchive() should open archive in the game directory
This fixes a boot problem in Rance Quest Magnum.
2024-10-09 12:51:08 +09:00
Nunuhara Cabbage db7c3a608c Merge pull request #198 from kichikuou/shadow
3d: Fix shadow rendering in Rance Quest
2024-10-06 19:57:03 -07:00
kichikuou 899c6c02a1 3d: Fix shadow rendering in Rance Quest
- Use glm_look_anyup() to avoid singularities when the shadow light
  direction is parallel to the up vector
- Fix bounding sphere calculation when there are multiple shadow casters
2024-10-07 10:53:41 +09:00
Nunuhara Cabbage 8ff5ffe30b Merge pull request #197 from kichikuou/alphamap
3d: Ignore alpha map if same as color map
2024-10-05 21:22:58 -07:00
Nunuhara Cabbage ff9175c1fd Merge pull request #196 from kichikuou/wheel
IbisInputEngine: Mouse wheel support
2024-10-05 21:22:41 -07:00
kichikuou 74666c9b90 3d: Ignore alpha map if same as color map
In Rance Quest (e.g. mapF_ew01), some materials use the same image for
both color map and alpha map. In that case, the alpha channel of the
color map can be used, so ignore the alpha map.
2024-10-06 07:53:15 +09:00
kichikuou 68bd33e099 IbisInputEngine: Mouse wheel support
This enables wheel operations in Rance Quest.
2024-10-06 07:38:24 +09:00
Nunuhara Cabbage 84ab9a41da Merge pull request #195 from kichikuou/vert-color
3d: Implement vertex colors
2024-10-04 20:39:59 -07:00
kichikuou 22a06b1da9 3d: Implement vertex colors
3D objects can have a color per vertex, which is multiplied with the
texture color.
2024-10-05 07:41:17 +09:00
Nunuhara Cabbage 128b2fd6d5 Merge pull request #194 from kichikuou/collision
TapirEngine: Proper collision detection
2024-09-30 10:53:47 -07:00
kichikuou 09dc9470ae TapirEngine: Proper collision detection
Collision detection is based on a mesh named "collision" in the map's 3D
model. The "collision" mesh specifies the area in which the character
can move in the xz plane, and the y coordinate represents the height of
the map at that point.

Now cglm 0.9.2 is required, for 2D AABB operations.
2024-09-30 09:11:54 +09:00
Nunuhara Cabbage 0f5a39c292 Merge pull request #193 from kichikuou/FileOperation
Implement FileOperation HLL functions for Rance Quest
2024-09-28 10:37:52 -07:00
kichikuou 73f7acde40 Implement FileOperation HLL functions for Rance Quest 2024-09-28 11:07:43 +09:00
Nunuhara Cabbage 3afe4e4453 Merge pull request #192 from kichikuou/A_SORT
Fix A_SORT
2024-09-25 17:32:28 -07:00
kichikuou 8f69f1911a Fix A_SORT
* Fix sorting of strings and floats
* Avoid overflow in integer comparison
2024-09-25 13:20:03 +09:00
Nunuhara Cabbage e466b3f06b Merge pull request #191 from kichikuou/game_compatibility
Update game_compatibility.md
2024-09-22 07:42:33 -07:00
kichikuou a2ae28c1c1 Update game_compatibility.md 2024-09-22 21:12:42 +09:00
Nunuhara Cabbage 41626b5018 Merge pull request #190 from kichikuou/dash
Implement StoatSpriteEngine.SP_SetDashTextSprite
2024-09-21 22:38:47 -07:00
kichikuou 9a76d472db Implement StoatSpriteEngine.SP_SetDashTextSprite
This implementation creates a temporary "glyph" texture and draws it to
the sprite using gfx_draw_glyph().
2024-09-21 10:35:42 +09:00
Nunuhara Cabbage 964bba1823 Merge pull request #189 from kichikuou/vanish
StoatSpriteEngine: Make SP_GetMaxZ consider multisprites
2024-09-20 18:12:09 -07:00
kichikuou 49b85f885d StoatSpriteEngine: Make SP_GetMaxZ consider multisprites
This fixes a problem in Vanish! where the opening movie was hidden
behind other sprites.
2024-09-20 20:39:20 +09:00
Nunuhara Cabbage 93e9357f84 Merge pull request #188 from kichikuou/glsl
Fix compile error of dungeon_raster.f.glsl on WebGL
2024-09-19 06:09:19 -07:00
kichikuou 2a7f58c187 Fix compile error of dungeon_raster.f.glsl on WebGL
`sample` is a reserved word in GLSL ES 3.0.
2024-09-19 12:55:21 +09:00
Nunuhara Cabbage 08e47b8d04 Merge pull request #187 from kichikuou/vmDrawGauge
Add guard against division by zero in vmDrawGauge.Draw()
2024-09-18 18:58:51 -07:00
kichikuou 217c4d5d65 Add guard against division by zero in vmDrawGauge.Draw()
When `max` is 0, the gauge is drawn as empty.
2024-09-19 07:32:30 +09:00
Nunuhara Cabbage ea762de937 Merge pull request #186 from kichikuou/DrawDungeon
Implement DrawDungeon.SetWalkedAll
2024-09-17 20:05:31 -07:00
Nunuhara Cabbage e6105ca654 Merge pull request #185 from kichikuou/collision
Initial implementation of TapirEngine.CalcInstance2DDetection
2024-09-17 20:05:16 -07:00
kichikuou 7a87ffc20a Implement DrawDungeon.SetWalkedAll
In GALZOO Island, there are non-debugging code paths that use this.
2024-09-17 15:43:07 +09:00
kichikuou f53ad7d557 Initial implementation of TapirEngine.CalcInstance2DDetection
This is used for collision detection between a map object and the player
character. The current implementation is very simple, only performing
AABB intersection tests, but it is enough to allow the player to walk
around the first dungeon in Rance Quest.
2024-09-16 15:27:11 +09:00
Nunuhara Cabbage ffe4d0d4ae Merge pull request #184 from kichikuou/gsave7
Add support for group save format v7
2024-09-15 21:02:14 -07:00
kichikuou 9e2f03d8be Add support for group save format v7
V5 is used until Daiteikoku, and v7 since Rance Quest. Since both are
Ain v6, the save version is determined by the presence of the "MainVM"
field in AliceStart.ini.
2024-09-16 09:01:49 +09:00
Nunuhara Cabbage 489cfe5a96 Merge pull request #183 from kichikuou/RanceQuest
Fix two graphical bugs of Rance quest
2024-09-15 13:06:18 -07:00
kichikuou 71debfbb65 Rance Quest: Do not render suspended TapirEngine sprites 2024-09-15 08:04:14 +09:00
kichikuou 34258511b9 Rance Quest: GetPartsCGName() returns the name specified by SetPartsCG()
This fixes a graphical bug mentioned in
https://github.com/nunuhara/xsystem4/issues/180#issuecomment-2351079908 .
2024-09-15 07:57:40 +09:00
Nunuhara Cabbage 0f121860fe Merge pull request #182 from kichikuou/msgskip
Android: Call msgskip_save() when app goes to the background
2024-09-14 10:39:50 -07:00
Nunuhara Cabbage 70a6f547cf parts: use separate sprite for each parts
Each parts object is now its own entity in the scene so that entities
are rendered in the correct order when mixing sprites and parts.

Fixes #180
2024-09-14 10:22:51 -07:00
kichikuou 886f15aa9f Android: Call msgskip_save() when app goes to the background
This ensures that msgskip file is saved even if the app is killed.
2024-09-13 14:43:46 +09:00
Nunuhara Cabbage d895301116 Merge pull request #181 from kichikuou/ndk27
Android: Update SDL2 to 2.30.7
2024-09-01 22:45:41 -07:00
kichikuou fdaa2d1dba Android: Update SDL2 to 2.30.7
This fixes build with Android NDK 27.
https://github.com/libsdl-org/SDL/issues/9792
2024-09-02 11:25:56 +09:00
Nunuhara Cabbage da52b312ca Use git describe for version number
Use `git describe` instead of `git rev-parse` for the version number,
since this command will report the latest tagged version in addition to
the current commit.
2024-08-25 10:26:55 -07:00
Nunuhara Cabbage 8cc2334692 windows: use 'windows' subsystem for release build
Only show the console on debug builds.

Fixes item 2 in #177.
2024-08-25 10:10:46 -07:00
Nunuhara Cabbage 486d89669f Reduce window size on small displays
Reduce the window size if the display resolution is smaller than the
game resolution.

Fixes item 1 of #177.
2024-08-25 10:03:10 -07:00
Nunuhara Cabbage c3614c9280 Merge pull request #179 from kichikuou/rsave-comments
Update rsave_read() parameters to specify read mode
2024-08-24 17:43:05 -07:00
kichikuou 00aa0c2ae6 Fix build without debugger 2024-08-25 08:08:45 +09:00
kichikuou 240c2c9395 Update rsave_read() parameters to specify read mode 2024-08-25 08:00:16 +09:00
Nunuhara Cabbage 88236b5a0b Merge branch 'master' of github.com:nunuhara/xsystem4 2024-08-18 13:00:21 -07:00
Nunuhara Cabbage 041cbafef1 Merge pull request #176 from kichikuou/zerodiv
Add guard against division by zero in sact_QuakeScreen()
2024-08-13 18:03:18 -07:00
kichikuou c5b0916279 Add guard against division by zero in sact_QuakeScreen()
GALZOO calls this with amp_x = 0, to shake the screen vertically.
2024-08-13 18:27:48 +09:00
Nunuhara Cabbage 3c61f7cebf dap: draw origin/bounds of parts 2024-08-10 18:54:13 -07:00
Nunuhara Cabbage a13bd155dc dap: send correct reason for stopped event 2024-08-10 18:52:08 -07:00
Nunuhara Cabbage 09bae3d423 Merge pull request #175 from kichikuou/SoundFilePlayer
Implement SoundFilePlayer HLL
2024-08-10 18:40:22 -07:00
kichikuou 1f0fc09294 Implement SoundFilePlayer HLL
Using this, Widenyo plays user-provided BGM files in the
SaveData/MusicData directory.
2024-08-11 07:18:19 +09:00
Nunuhara Cabbage acc869086f Merge pull request #174 from kichikuou/FileOperation
Fix FileOperation.Get{File,Folder}List
2024-08-09 19:18:25 -07:00
kichikuou 0cdf793b42 Fix FileOperation.Get{File,Folder}List
They should return base names, not full paths.
2024-08-10 09:20:13 +09:00
Nunuhara Cabbage d1ba60b673 Merge pull request #173 from kichikuou/hll-sigs
Fix signature mismatch in HLL_EXPORT functions
2024-08-06 19:12:34 -07:00
kichikuou ade7ea9235 Fix signature mismatch in HLL_EXPORT functions
Notable changes:

* The numerator / denominator parameters of AddMotion[HV]GaugeRate are
  int in GoatGUIEngine but float in GUIEngine and PartsEngine.
* AnteaterADVEngine.ADVLogList_AddText has second parameter
  (int WindowNo) since Oyako Rankan.

This also avoids using non-void functions where a void function is
expected. It is fine in most ABIs, but raises a runtime error in wasm32.
2024-08-07 09:14:38 +09:00
Nunuhara Cabbage 7365e8a7ca Merge pull request #172 from kichikuou/RSMv9
resume: Support RSM v9 format
2024-08-05 21:33:52 -07:00
kichikuou c4207e4226 Store struct_ptr in local page
It is currently only used to populate a field in RSM v9 save file.

As far as I can tell from examining Rance 01's resume save, this
reference does not seem to increment the target's refcount.
2024-08-06 07:15:54 +09:00
kichikuou ddaef07fb5 resume: Support RSM v9 format
This enables using --save-format=rsm for games that use delegates.
2024-08-06 07:02:21 +09:00
Nunuhara Cabbage f8174231cb parts: implement flash blend modes
Implement the add, multiply and screen blend modes.
2024-08-05 14:52:13 -07:00
Nunuhara Cabbage 0c8e52f18c parts: ignore invalid state in PE_SetInputState
Fixes bug with disappearing frame on choices in Drapeko.
2024-08-05 13:56:11 -07:00
Nunuhara Cabbage 559ccae1ad Fix text issue in Daibanchou EN
Fix issue where black boxes would appear in the action list text.
Glyph textures are now *at least* as wide as the duospace block width
(e.g. 16/8 on a 16px font), but can be larger to accomodate proportional
fonts with larger glyphs.
2024-08-05 12:37:28 -07:00
Nunuhara Cabbage 0597bfa513 Change status of STB (EN) to supported 2024-08-05 11:15:09 -07:00
Nunuhara Cabbage 921c0b699c Fix glitch in EFFECT_TURN_PAGE shader
The first frame of this effect was not displayed correctly.
2024-08-05 10:57:41 -07:00
Nunuhara Cabbage 3f36bf29b1 Gpx2Plus: use shaders for fullscreen effects
Use the normal effect system for fullscreen effects. This allows effects
that are implemented via shaders to be used, such as the blind effects
which are used frequently in Daibanchou.
2024-08-05 10:48:22 -07:00
Nunuhara Cabbage c6e1f8f155 Fix NewFont layout issues
Ensure that our FT_Face has the correct size before calling
FT_Get_Advance. This fixes the backscene issue mentioned in #154 as well
as some other spacing issues.
2024-08-05 09:12:21 -07:00
Nunuhara Cabbage 65c178c04c Sleep less in ChipmunkSpriteEngine.Sleep
Take delta from previous frame into account when deciding how long to
sleep. And leave a few ms headroom.

This is not how this function works in AliceSoft's implementation. On a
(nearly) empty scene, they start by sleeping 1ms and gradually ramp up.
The largest delay I observed was 11ms.
2024-08-05 08:44:12 -07:00
Nunuhara Cabbage 69ab413676 Remove random print at movie end
Oops.
2024-08-05 08:10:00 -07:00
Nunuhara Cabbage 71a4f5079e Merge pull request #171 from kichikuou/cmake
Add new files to CMakeLists.txt
2024-08-05 08:04:40 -07:00
Nunuhara Cabbage caeba1536a Merge pull request #170 from kichikuou/delegate
Rework delegate implementation
2024-08-05 08:04:15 -07:00
kichikuou fd16bab763 Add new files to CMakeLists.txt 2024-08-05 16:47:16 +09:00
kichikuou 2046ad4d06 Remove delegate field from struct function_call
Now dg_index in the stack is incremented by delegate_call().
2024-08-05 16:25:08 +09:00
kichikuou 12ddb585fb Rework delegate implementation
Delegates "weakly" reference objects, meaning that referenced objects
can be deleted. Delegate invocations must not invoke on deleted objects.
This is achieved as follows:

* Each heap object has a sequential number.
* Each delegate object is backed by a page storing (object, function,
  seq) triples.
* Deleted objects can be detected by comparing the sequential number
  stored in the delegate with the sequential number of the object
  currently on the heap.

This is consistent with the AliceSoft's implementation (presumed from
the contents of resume save).

This implementation removes dead objects from the delegate in DG_CALL
and DG_NUMOF instructions. (We could do that more often, e.g. when an
object is added to a delegate.)

This breaks existing resume saves that contain delegates. For games that
predate delegate support, this does not affect the save format.
2024-08-05 16:25:08 +09:00
kichikuou 0a78489993 Revert delegate memory management changes
This reverts the following commits:

* 4b1257f "Fix delegate memory management"
* 9bb4665 "Add changes to vm.h" (partial revert)
* 75d6386 "Fix ResumeSave/ResumeLoad bugs with delegates" (partial
  revert)

We are going to take a different approach to implementing weak
references in delegates.
2024-08-05 16:25:08 +09:00
Nunuhara Cabbage 21abe6ff9a movie: load case-insensitive filename 2024-08-04 22:25:17 -07:00
Nunuhara Cabbage ab810e8f57 Implement functions for EN Haruka
Implement the NewFont HLL. This is a basic text rendering interface
which supports proportional fonts and kerning

Fixes #154
2024-08-04 21:17:10 -07:00
Nunuhara Cabbage ac298baaec Fix fnl font selection
type 0 -> gothic (ttf)
type 1 -> mincho (ttf)
type >= 256 -> fnl[type - 256]
2024-08-04 09:27:57 -07:00
Nunuhara Cabbage cf3fe0e852 dbg: allow middle-click break in DAP debugger 2024-08-04 09:10:01 -07:00
Nunuhara Cabbage 79ebe443f5 dbg: handle window events while waiting for input
Keep the screen updated while in the debugger.
2024-08-03 09:34:59 -07:00
Nunuhara Cabbage f886f0a64c parts: fix origin mode 3
Mode 3 is top-right.
2024-08-02 19:26:33 -07:00
Nunuhara Cabbage 6b78f53bd7 Implement various functions for Drapeko
The game now runs until after the opening movie, although with some GUI
layout bugs.
2024-08-02 15:08:44 -07:00
Nunuhara Cabbage b21e28ce82 Rance 01 support
As far as I'm aware, the only unimplemented functionality is Y-rotations
of parts objects, which is only used for some screen transition
animations. I was able to clear the game without issue.
2024-08-01 09:52:36 -07:00
Nunuhara Cabbage 35bd6292bb Fix segfault when no mixer channels given in ini 2024-08-01 09:17:51 -07:00
Nunuhara Cabbage c4e17c672d Fix text rendering issue in Daiteikoku
Use gfx_size_char to calculate CharSprite width.

Daiteikoku uses ascii numerals in the .ain file, but the .fnl font has
full-width glyphs.
2024-08-01 08:32:33 -07:00
Nunuhara Cabbage d06d0ff8b5 GoatGUIEngine: fix rotate
Angles are given in radians in GoatGUIEngine.
2024-07-31 20:55:00 -07:00
Nunuhara Cabbage 07290cc8df Rework effect system
Rework transition effect system so that TRANS_Update uses the current
contents of the main surface rather than a stale copy.
2024-07-31 18:51:10 -07:00
Nunuhara Cabbage bc65a40eb4 parts: only render on PE_Update/PE_UpdateParts
Also, fix an issue in Rance 01 where a bad frame would be displayed when
loading a save (this is a bug present in the original game).
2024-07-31 16:28:48 -07:00
Nunuhara Cabbage bc04af131a parts: implement miscellaneous functions 2024-07-31 07:35:10 -07:00
Nunuhara Cabbage d48cd2545d parts: fix load issues, use numeral fonts
When loading parts, we need to mark them as dirty and recalculate
hitboxes. Also fix loading of numerals, which was completely broken
previously on games that use combined numeral CGs (e.g. Rance 01).

Numerals now use a `parts_numeral_font` structure, so that textures can
be shared between numeral objects.
2024-07-28 15:40:56 -07:00
Nunuhara Cabbage 133ff5421f debugger: use current stack frame for 'this'
Interpret 'this' expression in current call stack frame.
2024-07-28 15:37:41 -07:00
Nunuhara Cabbage 69deb9ee91 Add --msgskip-delay option
Add an option to insert a delay when skipping messages with CTRL.

This is accomplished by overriding the 'A' function. Since the function
to check the state of a key (CTRL in this case) varies by game, an
xsystem4-specific system call is added for this purpose.

Fixes #119
2024-07-28 10:24:01 -07:00
Nunuhara Cabbage f2700398dd Merge pull request #169 from kichikuou/dalk-gaiden
Support DALK Gaiden
2024-07-28 08:17:27 -07:00
kichikuou 8f7d9886c2 Update game compatibility table
DALK Gaiden is now supported.
2024-07-28 09:48:02 +09:00
kichikuou a2c225bf64 vmSprite changes for DALK Gaiden
* SetFind(2) lets the sprite to participate in hit testing even if it is
  not visible.
* SetAnime() respects frame_s and frame_e parameters. Sprites animate
  only when `current` is within the range of [frame_s, frame_e].
* SetCurrent() resets animation state.
2024-07-28 09:24:07 +09:00
kichikuou dd77de027b Implement vmSound functions for DALK Gaiden 2024-07-28 09:09:21 +09:00
kichikuou bcf81af71d Fix vmMsgSkip.Query
It should return true only if message skip is turned on.
2024-07-28 09:00:40 +09:00
kichikuou c3c241adf5 vmDrawNumber: Respect space parameter 2024-07-28 09:00:40 +09:00
kichikuou cb4a04ce14 Implement vmString functions for DALK Gaiden 2024-07-28 09:00:40 +09:00
kichikuou 877ca1f74e Implement vmSystem functions for DALK Gaiden 2024-07-28 09:00:40 +09:00
kichikuou d3bd28a0c1 Implement vmFile functions for DALK Gaiden 2024-07-28 08:52:20 +09:00
kichikuou 4e4f0b8683 vmDrawMsg: Implement tags used in DALK Gaiden 2024-07-28 07:58:59 +09:00
kichikuou dfad543f6e Implement vmDalkGaiden HLL 2024-07-28 07:53:12 +09:00
Nunuhara Cabbage 9a1f9e763a Merge pull request #168 from kichikuou/DALKDemo
Add DALKDemo and DALKEDemo HLLs
2024-07-27 07:15:16 -07:00
kichikuou 1a9021e1ed Add DALKDemo and DALKEDemo HLLs
DALKDemo is responsible not only for the opening demo but also for the
UI of the title menu. This change fully implements DALKDemo. DALKEDemo
is stubbed out.
2024-07-27 20:36:35 +09:00
Nunuhara Cabbage 5cca12b0ce Merge branch 'master' of github.com:nunuhara/xsystem4 2024-07-26 21:01:09 -07:00
Nunuhara Cabbage 0aed62f448 Merge pull request #167 from kichikuou/vmGraph
vmGraph changes for DALK Gaiden
2024-07-26 20:49:31 -07:00
Nunuhara Cabbage 37a5f977c3 Merge pull request #166 from kichikuou/vmData
Implement vmData HLL
2024-07-26 20:47:09 -07:00
Nunuhara Cabbage d7c550ea62 parts: fix GetPartsUpperLeftPos{X,Y}
Hitbox is stored in local coordinates. These functions return global
coordinates.
2024-07-26 20:28:55 -07:00
kichikuou da86fd4875 vmGraph changes for DALK Gaiden
The effect API is slightly changed so that it can be used from pre-SACT
graphics engines.
2024-07-27 07:55:32 +09:00
kichikuou aba32d7fab Implement vmData HLL
Used in DALK Gaiden to read DA.ALD.
2024-07-27 07:25:54 +09:00
Nunuhara Cabbage 103976b2b0 parts: use floats to calculate text width
gfx_render_text uses floats for layout, so the parts_text layout should
use floats to match.

This fixes an issue with off-center text in the English version of Rance
01.
2024-07-26 14:41:28 -07:00
Nunuhara Cabbage 0330006b89 parts: implement SetPartsMessageWindowShowLink
The interface to this feature is strange. The message window visibility
state is passed to Update/UpdateParts every frame rather than being a
part of the global parts state. I've implemented it using global state,
which might be subtly wrong in some way, but it seems to work as
expected in Rance 01.
2024-07-25 20:49:30 -07:00
Nunuhara Cabbage 12f3b5d241 Implement ChipmunkSpriteEngine.VIEW_SetOffsetPos
Used for screen quake effect in Rance 01.
2024-07-25 18:29:36 -07:00
Nunuhara Cabbage 673827cf70 parts: implement vibration motion 2024-07-24 20:18:04 -07:00
Nunuhara Cabbage 5212d5b7f9 dap: render parts with children
When rendering parts, render the whole hierarchy instead of just the
individual node.

Also, output parts entities in the format expected by xsys4dbg.
2024-07-24 19:18:13 -07:00
Nunuhara Cabbage bfa2deeffb Fix transition issues in Rance 01
PE_UpdateComponent needs to be called before rendering the starting
frame of a transition effect.

This fixes a glitch in the ●立ち絵 function of Rance 01 when
transitioning to a variant CG.
2024-07-23 19:51:22 -07:00
Nunuhara Cabbage 635cce877f Merge pull request #165 from kichikuou/typo
Fix typo
2024-07-23 06:30:45 -07:00
kichikuou 0bab7544cd Fix typo 2024-07-23 18:10:34 +09:00
Nunuhara Cabbage 48b6e24135 Fix A_SORT_MEM with string members
Fixes various bugs in Rance 01.
2024-07-22 11:50:33 -07:00
Nunuhara Cabbage 423ceb5abc Merge pull request #164 from kichikuou/gpx2plus
Gpx2Plus.Create() should fail if width <= 0 or height <= 0
2024-07-22 06:36:24 -07:00
Nunuhara Cabbage 9b6a032d24 Merge pull request #163 from kichikuou/vmMsgSkip
Implement vmMsgSkip HLL functions
2024-07-22 06:35:45 -07:00
Nunuhara Cabbage 525006d716 Merge pull request #162 from kichikuou/vmArray
Implement vmArray functions for DALK Gaiden
2024-07-22 06:34:41 -07:00
Nunuhara Cabbage 083fd23503 Merge pull request #161 from kichikuou/sys40vm
VM changes for DALK Gaiden (AIN v0)
2024-07-22 06:30:24 -07:00
kichikuou 3f18b181a3 Gpx2Plus.Create() should fail if width <= 0 or height <= 0
This fixes "Incomplete framebuffer" error in Daibanchou.
2024-07-21 14:26:01 +09:00
kichikuou 50ec61ba37 Implement vmMsgSkip HLL functions
Reusing the functions for MsgSkip.
2024-07-21 10:45:36 +09:00
kichikuou f1ad3ddf25 Implement vmArray functions for DALK Gaiden
This also fixes a bug of vmArray.AroundRect (although it does not affect
Mamanyonyo).
2024-07-21 09:14:17 +09:00
kichikuou 936167ee9c VM changes for DALK Gaiden (AIN v0)
- Opcode 0x62 (EOF in later games) is used as SH_STRUCTREF
- The STR0 table does not exist, S_PUSH refers to the MSG0 table instead
2024-07-21 08:21:58 +09:00
Nunuhara Cabbage 52a624009d Merge pull request #160 from kichikuou/ffmpeg
movie_ffmpeg: Use new FIFO API and channel layout
2024-07-03 21:00:12 -07:00
kichikuou 71ead2bf85 movie_ffmpeg: Use new FIFO API and channel layout
This fixes https://github.com/nunuhara/xsystem4/issues/159.

The minimum required ffmpeg version is now 5.1.
2024-07-04 12:48:56 +09:00
Nunuhara Cabbage d56f075ee3 Merge pull request #158 from kichikuou/text
Add a parameter to gfx_draw_glyph() for controlling blending behavior
2024-06-18 17:45:35 -07:00
kichikuou 04d5237020 Use glClear() to initialize texture in gfx_init_texture_rgba()
This is faster when initializing large textures.
2024-06-19 07:45:55 +09:00
kichikuou 6379dbad4b SengokuRanceFont: Draw text on sact_sprite.text.texture
To get consistent rendering results regardless of the background image
on the sprite.
2024-06-15 14:35:01 +09:00
kichikuou b155b4b79f Add a parameter to gfx_draw_glyph() for controlling blending behavior
This adds a new parameter `blend` to `gfx_draw_glyph()`. When `blend` is
true, the function performs normal alpha blending (same as
`gfx_draw_glyph_to_pmap()`).

If `blend` is false, the resulting pixel color will be the text color
and the alpha value will be copied from the glyph texture. However, if
the alpha value is less than 0.01, the pixel will not be written.

If you are drawing on a transparent texture (which will later be blended
into another texture), `blend` should be false. If you are drawing on top
of an image, `blend` should be true.

`gfx_draw_glyph()` used to fill transparent pixels with text color, but
this step is no longer needed and has been removed.
2024-06-15 14:34:58 +09:00
Nunuhara Cabbage d7fd6d4e1e Merge pull request #157 from kichikuou/mamanyonyo
Mamanyonyo support
2024-06-02 14:46:45 -07:00
kichikuou 64fd2a6858 Add HLL libraries for Mamanyonyo
== Handles

As a general pattern, these libraries have an interface based on integer
handles allocated by Open() and released by Close(); in the AliceSoft's
implementation, handles are pointers to internal objects. Note that:

* 0 is used to represent an invalid handle, and
* Small numbers cannot be handles. For example, Mamanyonyo has code that
  treats an integer as a CG number if it is less than 10000, and as a
  surface handle otherwise.

In this patch, handles are generated using id_pool.h functions. In order
to achieve the above, the interface is extended so that the minimum ID
value can be specified (the `base` parameter of id_pool_init()).

== Graphics System

Surface objects (implemented in vmSurface.[ch]) plays a central role in
Mamanyonyo's graphics system, and the sprite system (vmSprite.c) is
implemented on top of it. vmSprite.c uses scene.h functions.

== vmChrLoader and vmMapLoader

Since Mamanyonyo's character data format is the same as Widenyo's,
the ChrLoader code has been refactored and used from vmChrLoader.c.
On the other hand, MapLoader and vmMapLoader do not share code because
the map file format is different from Widenyo.
2024-05-31 13:36:29 +09:00
Nunuhara Cabbage 1ec06a4b80 Merge pull request #156 from kichikuou/sys41vm
VM changes for Mamanyonyo
2024-05-30 18:03:37 -07:00
kichikuou 2840b21946 Sys41VM: Do not unref arrays passed by value to HLL calls 2024-05-29 13:14:48 +09:00
kichikuou 69b1826d63 SR_ASSIGN does not take a struct type in ain v1 2024-05-29 13:14:48 +09:00
kichikuou 69cd1cb630 Add support for S_PLUSA instruction
I'm not sure how it is different from S_PLUSA2.
2024-05-29 13:14:48 +09:00
kichikuou 012f8f8af4 Implement scenario jump for ain v1
In ain v1, destination addresses of scenario jumps are stored in the
SLBL section of the ain.
2024-05-29 13:14:48 +09:00
kichikuou b85b426872 Local struct initialization in Sys41VM (ain v1)
Sys41VM doesn't have the SH_LOCALCREATE instruction, so struct pages
must be allocated when function_call() initializes local variables.
2024-05-29 13:14:48 +09:00
Nunuhara Cabbage 10169951c0 Merge pull request #155 from kichikuou/fix-incomplete-framebuffer
gfx: Clamp texture size larger than GL_MAX_TEXTURE_SIZE
2024-05-25 07:16:01 -07:00
kichikuou 8eefbcec95 gfx: Clamp texture size larger than GL_MAX_TEXTURE_SIZE
This prevents glTexImage2D() from failing and resulting in an invalid
texture if a width or height specified in sact2.SP_Create() is greater
than GL_MAX_TEXTURE_SIZE.

It is very rare and is probably a programming error in the game script.
If the resulting texture is used for rendering, it may mess up the
screen, but at least it won't crash.

Fixes https://github.com/kichikuou/xsystem4-android/issues/4.
2024-05-25 08:11:15 +09:00
Nunuhara Cabbage f73dd38dab Merge pull request #153 from kichikuou/remove_utf8
Fix system.DeleteSaveFile and vmFile.Delete on Windows
2024-05-19 06:46:43 -07:00
kichikuou 9e821a754c Fix system.DeleteSaveFile and vmFile.Delete on Windows 2024-05-19 16:03:48 +09:00
Nunuhara Cabbage f2caed46a8 Merge pull request #152 from kichikuou/little_endian
Use little_endian.h in libsys4
2024-05-18 22:08:14 -07:00
kichikuou 7ef9719cc7 Use little_endian.h in libsys4 2024-05-19 10:59:50 +09:00
Nunuhara Cabbage f47e5e5a82 Merge pull request #151 from kichikuou/PixelRestore
Add stubs for PixelRestore hll
2024-05-03 20:37:55 -07:00
kichikuou f0fc0b6699 Add stubs for PixelRestore hll
It is used (only?) in Beat Blades Haruka, when two enemies are found by
enemy seek.

This is just a screen effect and can be ignored without affecting
gameplay.
2024-05-04 07:31:35 +09:00
Nunuhara Cabbage 8cfc20999f Merge pull request #150 from kichikuou/PassRegister
PassRegister: Use the same format as AliceSoft's implementation
2024-04-26 21:12:47 -07:00
kichikuou bb72ad60b2 PassRegister: Improve query performance
Keep the arrays sorted and use binary search.
2024-04-27 11:45:35 +09:00
kichikuou 2b3e100cba PassRegister: Use the same format as AliceSoft's implementation
The old JSON format can still be loaded for backwards compatibility.
2024-04-27 11:45:29 +09:00
Nunuhara Cabbage 5f432ce672 Merge pull request #149 from kichikuou/file
Fix compilation error with clang
2024-04-15 06:09:24 -07:00
kichikuou c3e4cd5e9f Fix compilation error with clang 2024-04-15 15:27:29 +09:00
Nunuhara Cabbage 0f4529e1a6 Merge pull request #148 from kichikuou/file
File.Read/Write: Use the same format as AliceSoft's implementation
2024-04-14 15:46:57 -07:00
kichikuou 58366e199e File.Read/Write: Use the same format as AliceSoft's implementation
This improves interoperability of save files in Rance6, GALZOO, etc.
The old JSON format can still be loaded for backwards compatibility.
2024-04-14 09:23:23 +09:00
Nunuhara Cabbage d512275f99 Merge pull request #147 from kichikuou/system-gettime
system.GetTime(): Use SDL_GetTicks() instead of clock_gettime()
2024-04-02 17:30:09 -07:00
kichikuou 7e54e159df system.GetTime(): Use SDL_GetTicks() instead of clock_gettime()
Some games (e.g. Toushin Toshi 3) malfunction when system.GetTime()
returns a negative number.

On many systems clock_gettime(CLOCK_MONOTONIC) returns the time since
OS startup, but this wraps to a negative number after about 24.8 days.

As a mitigation, use SDL_GetTicks() instead, which returns the elapsed
time since game startup.
2024-04-02 13:26:53 +09:00
Nunuhara Cabbage a92e26c49c Merge pull request #146 from kichikuou/fix-feedback-loop
SACT2: Do not put sprite -1 (main surface) in the scene list
2024-03-30 07:37:18 -07:00
kichikuou e65a506dac SACT2: Do not put sprite -1 (main surface) in the scene list
Since this is the surface to render to, it should not be added to the
list of surfaces to draw from.

This is done by marking sprite -1 as hidden. Now SACT2.SP_GetShow(-1)
returns 0 and SACT2.SP_SetShow(-1, true) raises a runtime error. This is
consistent with the AliceSoft's implementation.
2024-03-28 09:38:50 +09:00
Nunuhara Cabbage 6e78f05d75 Merge pull request #145 from kichikuou/android-upstream
Android support
2024-03-16 09:10:40 -07:00
kichikuou f0f84a05ce Android: Fix text input issue
On Android, when the user enters "ら", "ん", "す" with the virtual
keyboard and converts it to "ランス", xsystem4 receives the following
events:

    SDL_TEXTINPUT("ら")
    SDL_TEXTINPUT("ん")
    SDL_TEXTINPUT("す")
    SDL_KEYDOWN(backspace)
    SDL_KEYUP(backspace)
    SDL_KEYDOWN(backspace)
    SDL_KEYUP(backspace)
    SDL_KEYDOWN(backspace)
    SDL_KEYUP(backspace)
    SDL_TEXTINPUT("ランス")

The backspace key events are generated by SDL to delete the unconverted
text. However, System4 games process the backspace key by polling, so
if the SDL_KEYDOWN and SDL_KEYUP events occur in close succession, the
game cannot detect that the backspace key has been pressed.

To solve this problem, this patch queues these consecutive input events
and processes them with an interval of at least 10ms.

Fixes https://github.com/kichikuou/xsystem4-android/issues/2.
2024-03-16 13:36:57 +09:00
kichikuou 18a71960e8 Add touch gestures
This adds gestures that allow touch device users to emulate the
following mouse/keyboard actions:

- Right-click: touch outside the game's viewport
- Ctrl key: one-finger touch and hold (for one second)
- Mouse wheel: Swipe up / down with two fingers
2024-03-16 13:35:12 +09:00
kichikuou 5e80c96587 Defer mouse button events synthesized from touch events
A typical event loop in System4 game looks like this:

    while (true) {
        SACT2.Mouse_GetPos(x, y);

        // Update the screen according to the mouse position (x, y)
        ...
        SACT2.Update();

        if (SACT2.Key_IsDown(VK_LBUTTON)) {
            // A button was pressed at (x, y)
            ...
        }
    }

This works poorly with touch devices. Assume that a touch event occured
during SACT2.Update(). It updates internal mouse position and button
status. After SACT2.Update(), the game calls SACT2.Key_IsDown(VK_LBUTTON).
It returns true, but the game has not yet called SACT2.Mouse_GetPos()
after the touch event, so it assumes that the button was pressed where
the mouse pointer was before the touch.

In order to avoid this situation, this defers mouse button events
synthesized (by SDL) from touch. Such deferred events are processed when
SACT2.Mouse_GetPos() is called or after 50ms.
2024-03-16 13:26:29 +09:00
kichikuou 9ec354c198 Android: Add CMakeLists.txt 2024-03-16 12:54:54 +09:00
kichikuou b7304f747b Android: Load fonts and shaders from apk assets 2024-03-16 12:53:56 +09:00
kichikuou b7ab1ed476 Android: Enforce landscape fullscreen mode 2024-03-16 12:49:52 +09:00
kichikuou bc522b27e0 Android: Report ERROR() with a message box 2024-03-16 12:45:07 +09:00
kichikuou 3e9f975213 Update libsys4 2024-03-16 12:43:55 +09:00
Nunuhara Cabbage ba9e42fad6 Merge pull request #144 from kichikuou/resume-save
Add support for reading / writing System4 resume save files
2024-02-15 20:34:45 -08:00
kichikuou 05226453d9 Add support for reading / writing System4 resume save files
Writing save files in RSM format is only enabled if `--save-format=rsm`
command line flag is specified, because this implementation does not
create save files that are fully compatible with the AliceSoft's
implementation:

* There is no simple way to determine the RSM format version used by the
  game.
* There are several unknown fields in the RSM format.
* Empty arrays are represented as NULL pages in xsystem4, so type
  information of such objects cannot be saved.

These limitations are not a problem for the following use cases:

* Use the created save files only in xsystem4
* Load save files created by System40.exe

Also, RSM save files are much smaller and faster to read and write than
JSON.
2024-02-14 12:45:37 +09:00
Nunuhara Cabbage 4e2c050ffc Merge pull request #143 from kichikuou/savedir
Create savedir just before running VM
2024-02-09 06:52:02 -08:00
kichikuou 39701c7657 Create savedir just before running VM
Before this change, directory described in System40.ini was created even
if --save-folder was specified.
2024-02-07 16:36:57 +09:00
Nunuhara Cabbage 6bdd22f875 Merge pull request #142 from kichikuou/game_compatibility
Update game_compatibility.md
2024-01-31 06:12:09 -08:00
kichikuou 20411f3518 Update game_compatibility.md 2024-01-31 18:09:28 +09:00
Nunuhara Cabbage 27e733758d Merge pull request #141 from kichikuou/banmisc
BanMisc: Use the same save format as AliceSoft's implementation
2023-12-16 17:01:35 -08:00
kichikuou 288381d8f6 BanMisc: Use the same save format as AliceSoft's implementation
BanMisc.{Save,Load}Struct now serializes structs in the same format as
AliceSoft's implementation, rather than in JSON format. The old JSON
format can also be loaded for backwards compatibility.
2023-12-17 09:01:36 +09:00
kichikuou c3f39aeb96 Use mt19937_xorcode helper function 2023-12-17 09:01:28 +09:00
Nunuhara Cabbage 05d2ad8600 Merge pull request #139 from kichikuou/shimaima
Update libsys4
2023-11-17 23:41:48 -08:00
kichikuou 0911103949 Update libsys4
And add tests for https://github.com/nunuhara/libsys4/pull/26.
2023-11-18 16:35:58 +09:00
Nunuhara Cabbage 9c8c290d83 Merge pull request #138 from kichikuou/movie-fix
Fix a bug that bgm did not work after movie load failed
2023-10-15 07:02:08 -07:00
kichikuou bf3700ea8e Fix a bug that bgm did not work after movie load failed
When movie_free() was called in movie_load(), mixer_stream_stop(0) was
mistakenly called and the music mixer was stopped.
2023-10-15 15:00:07 +09:00
Nunuhara Cabbage c521f1faf7 Merge pull request #137 from kichikuou/confirm3
Add Confirm3.Initialize
2023-09-25 20:10:23 -07:00
kichikuou ef7b789810 Add Confirm3.Initialize
For some reason, this function is renamed from GetHDDVolumeNumber only
in Momoiro Guardian.

This also makes all Confirm3 functions HLL_QUIET_UNIMPLEMENTED.
2023-09-17 21:22:43 +09:00
Nunuhara Cabbage 530f606657 Merge pull request #136 from kichikuou/sactdx
Add SACTDX.SP_DeleteAll
2023-09-05 06:06:03 -07:00
kichikuou 120b9888f1 Add SACTDX.SP_DeleteAll
Used in Edo Ranze.
2023-09-05 20:31:27 +09:00
Nunuhara Cabbage 87884d4230 Merge pull request #135 from kichikuou/s_mod
Fix S_MOD for bool and long int
2023-09-01 20:38:21 -07:00
kichikuou 0b4eb92e95 Fix S_MOD for bool and long int
* The "type" argument of S_MOD is 48 for bool, 56 for long int
* %b, %c, %d can consume any integer types (int, bool, or long int)
* If the value cannot be consumed, S_MOD should return the format
  string instead of an empty string
2023-09-02 11:36:54 +09:00
kichikuou 51e55644f5 DrawDungeon14: Fix incorrect return types in SetRaster{Scroll,Amp} 2023-09-02 11:11:01 +09:00
Nunuhara Cabbage 296496e895 Merge pull request #134 from kichikuou/raster
DrawDungeon14: Implement raster effect
2023-09-01 13:42:49 -07:00
kichikuou afae3fc9a6 DrawDungeon14: Implement raster effect
It is implemented as a post-processing effect. The hack for the
projection transform matrix has been removed, because now the image is
flipped upside down in the post-processing stage.
2023-09-01 21:45:46 +09:00
kichikuou a301ca1311 DrawGraph, Gpx2Plus: Implement CopyReverseUD() 2023-08-31 14:16:52 +09:00
Nunuhara Cabbage eb97693e3f Merge pull request #133 from kichikuou/msgskip
Fix path resolution in MsgSkip.Init
2023-08-25 06:48:35 -07:00
kichikuou a6f01f7f82 Fix path resolution in MsgSkip.Init
Some games (Ojou-sama o Iinari ni Suru Game and Double Sensei Life, as
far as I know) pass "SaveData\\MsgSkip.asd" to MsgSkip.Init. So this
change:

* uses savedir_path() to resolve the relative path, and
* removes the "SaveData\\" prefix, otherwise "SaveData/" will be
  duplicated in the resolved path.
2023-08-24 21:31:14 +09:00
Nunuhara Cabbage a27996def8 Merge pull request #132 from kichikuou/window-settings
SystemService: Implement "Wait Vsync" window setting
2023-08-22 18:26:42 -07:00
kichikuou fa96987eca SystemService: Implement "Wait Vsync" window setting
This also rewrites the SetWindowSetting and GetWindowSetting functions
based on the understanding gained from examining games after Haru Urare:

* Setting IDs are consistent across games.
* Settings 5 and 6 are added in Pastel Chime 3, both default true
2023-08-22 21:27:46 +09:00
Nunuhara Cabbage 192e65a827 Merge pull request #131 from kichikuou/mixer
SystemService can only access mixers specified in ini
2023-07-13 16:58:47 -07:00
kichikuou a536912b38 SystemService can only access mixers specified in ini
This ensures that SystemService.hll mixer functions can only access
mixers specified in System40.ini, even if xsystem4 added more mixers.

Beat Blades Haruka checks the number and names of mixers, and refuses to
open the config screen if they are not as expected.
2023-07-13 09:13:26 +09:00
Nunuhara Cabbage fcf26a9ca7 Merge pull request #130 from kichikuou/flash
Flash: Add support for sounds and sprite objects
2023-07-09 16:43:49 -07:00
kichikuou 4cb374dd5d Flash: add support for sprite objects
This implementation supports only single-frame sprites with a single
child object. As far as I know, all Flash effects in AliceSoft games
meet this requirement.
2023-07-09 17:05:25 +09:00
kichikuou 9543bf1761 Flash: sound support
The DefineSound tag in SWF has raw PCM data, so we create a WAV file in-
memory and pass it to audio_play_archive_data(). This is not strictly
necessary since libsndfile can handle raw PCM data, but keeps the audio
and mixer interfaces simple.
2023-07-09 17:05:21 +09:00
Nunuhara Cabbage 1527a1cb85 Merge pull request #129 from kichikuou/tapir
Initial implementation of TapirEngine HLL
2023-07-08 07:27:32 -07:00
kichikuou 588d4f1024 Initial implementation of TapirEngine HLL
TapirEngine is the 3D rendering engine used in RanceQuest.

This implements the minimum functionality that is needed to render the
first battle scene. The lighting is still incorrect.
2023-07-08 08:05:07 +09:00
kichikuou c815d48274 Add stubs for SpriteEngine functions
- ChipmunkSpriteEngine.SP_Suspend
- StoatSpriteEngine.FPS_SetShow
- StoatSpriteEngine.FPS_GetShow
2023-07-07 09:29:21 +09:00
kichikuou 1730ddebae ChipmunkSpriteEngine: Add DX_{Get,Set}UsePower2Texture 2023-07-03 08:39:45 +09:00
kichikuou 1694f5cb89 Add Math.tan 2023-07-03 08:39:42 +09:00
Nunuhara Cabbage 1855cd4167 Merge pull request #128 from kichikuou/drawline
DrawGraph: Implement DrawLine and DrawLineToAMap
2023-07-02 07:30:10 -07:00
kichikuou a4ff641366 DrawGraph: Implement DrawLine and DrawLineToAMap 2023-07-02 14:04:31 +09:00
Nunuhara Cabbage 2085c28bd1 Merge pull request #127 from kichikuou/text
StoatSpriteEngine: Clear cached font_size struct in SP_SetTextSpriteSize
2023-07-01 20:54:12 -07:00
kichikuou 6c2a55c67a StoatSpriteEngine: Clear cached font_size struct in SP_SetTextSpriteSize
This fixes text layout issue in Daiteikoku and Rance Quest.
2023-07-02 10:11:44 +09:00
Nunuhara Cabbage 2ffb4a4ab0 Merge pull request #126 from kichikuou/DrawGraph
Add two DrawGraph functions used in Daiteikoku
2023-06-18 07:16:08 -07:00
kichikuou 0e5d41a728 Implement DrawGraph.CopyGrayscale
Used in Daiteikoku.
2023-06-18 20:57:00 +09:00
kichikuou e1d5eba1f2 Implement DrawGraph.CopyRotZoom2Bilinear
Used in Daiteikoku.

It's similar to DrawGraph.CopyRotZoom, but specifies source and
destination center points.
2023-06-18 20:57:00 +09:00
Nunuhara Cabbage c99e9842ad Merge pull request #125 from kichikuou/file2
Implement File2.OpenArchiveForRead
2023-06-17 22:05:22 -07:00
kichikuou 20fabf40fa Implement File2.OpenArchiveForRead
Rance Quest uses yet another ad hoc archive format (.rea) for the map
data. This function opens an entry in the rea archive for reading.
2023-06-17 13:47:51 +09:00
Nunuhara Cabbage d8bba6e391 Merge pull request #124 from kichikuou/flash
Partial implementation of Flash parts type
2023-06-16 19:54:40 -07:00
kichikuou 01429fe2a8 Update libsys4 2023-06-17 11:32:47 +09:00
kichikuou 3496f45e39 parts: add basic implementation of Flash type
Sprite objects and sounds are not implemented yet.
2023-06-17 11:32:14 +09:00
kichikuou 88c37a9165 Add AFF/SWF parser
This SWF parser is far from complete, in particular it only supports
simple bitmap-filled rectangular shapes, but it covers all the features
used in Daiteikoku, Rance Quest, Pastel Chime 3 and Dorapeko.

Flash files are stored in archives in AFF format, which is an encrypted
SWF wrapper. The decryption code was adapted from GARbro.
2023-06-17 11:32:11 +09:00
kichikuou 6d3abdaa02 Add ASSET_FLASH asset type 2023-06-11 15:06:44 +09:00
Nunuhara Cabbage eaa08b6991 Merge pull request #123 from kichikuou/sprite-newline
Fix sact_SP_TextNewLine when nTextSize is 0
2023-06-04 15:30:35 -07:00
kichikuou 1887ceff7f Fix sact_SP_TextNewLine when nTextSize is 0
Text sprites hold the height of the text drawn on them, and
sact_SP_TextNewLine increases the Y coordinate by this value if
nTextSize is 0.

The nTextSize argument of sact_SP_TextHome affects this value.

Beat Blades Haruka depends on this behavior.
2023-06-04 12:04:28 +09:00
Nunuhara Cabbage ff26a7f646 Merge pull request #122 from kichikuou/majo
Fix graphics issues found in Majo no Shokuzai
2023-06-03 13:07:02 -07:00
kichikuou 7dd85e445e Fix DrawGraph.CopyRotateY*
The back side sprite should not appear as a mirror image.
2023-06-03 13:18:13 +09:00
kichikuou 4f22907004 Fix DrawGraph.CopyRotZoom*
The `w` and `h` parameters are clamped to the source texture size.
2023-06-03 13:18:13 +09:00
Nunuhara Cabbage ddc9f1ae12 DAP: add scene/parts requests
xsystem4.scene: returns a list of scene entities
  * all entities have an entityId that can be used in further requests
  * SACT2 sprites have a 'sprite' member with a spriteId that can be
    used in further requests

xsystem4.renderEntity: renders a scene entity and returns the texture
xsystem4.spriteTexture: returns the stored SACT2 sprite texture
xsystem4.renderParts: renders a parts object and returns the texture
xsystem4.partsTexture: returns the stored parts object texture

Image data in texture objects is RGB8888 encoded in base 64.
2023-05-26 08:44:36 -07:00
Nunuhara Cabbage 7392d74efe Replace debug_print with to_json
to_json and cJSON_Print are now used when displaying debug information.

The main reason for this change it to support sending objects over DAP.
2023-05-14 20:12:34 -07:00
Nunuhara Cabbage 535a1f1804 Merge branch 'master' of github.com:nunuhara/xsystem4 2023-05-13 12:14:12 -07:00
Nunuhara Cabbage d387ee2816 Merge pull request #121 from kichikuou/dungeon
DrawDungeon: Fix cell drawing order
2023-05-13 12:13:13 -07:00
kichikuou dc174fa91c DrawDungeon: Fix cell drawing order
Transparent objects should be drawn in order from furthest to nearest.
In DrawDungeon, the actual viewpoint is slightly behind the camera, but
this was not taken into account when sorting cells by distance.

Fixes #120
2023-05-13 11:27:45 +09:00
kichikuou cf318bb47c Add debug print function for DrawDungeon plugin
For now it just prints the camera position.
2023-05-13 10:56:36 +09:00
Nunuhara Cabbage d0a2c5ec40 Fix vm_exit when called before vm_execute_ain
The can happen when launched in the debugger and then exited before
starting execution.
2023-05-07 15:32:29 -07:00
Nunuhara Cabbage cff6272c18 Always use absolute path for config.home_dir
And by extension config.save_dir. This fixes an issue where paths
retrieved by system.GetSaveFolderName and then passed to gamedir_path
would become invalid.

Fixes #115
2023-05-06 08:29:12 -07:00
Nunuhara Cabbage e808d770a9 Merge pull request #118 from kichikuou/fade
Fix channel volume after fade completion
2023-05-06 07:49:23 -07:00
Nunuhara Cabbage 63067d32d3 Merge pull request #116 from kichikuou/SystemService
Add two SystemService functions
2023-05-06 07:48:57 -07:00
kichikuou f9e9f20c05 Fix channel volume after fade completion
This fixes https://github.com/nunuhara/xsystem4/issues/117.
2023-05-05 10:01:58 +09:00
kichikuou 3ee2f703a4 Add two SystemService functions
- Implement SystemService.GetGameVersion
- Add stub for SystemService.AddURLMenu
2023-05-04 21:06:34 +09:00
Nunuhara Cabbage 7b512485e6 DAP: implement disconnect command
Also, fix bug in setInstructionBreakpopints response.
2023-05-03 17:19:03 -07:00
Nunuhara Cabbage d4e06db8e2 Initial DAP implementation
So far only basic debugging functionality is implemented (breakpoints,
stepping, stack traces/variables).

This is not tested against an established DAP client. My intention is to
create a custom GUI frontend and extend the protocol to support
xsystem4-specific features, such as inspecting the scene. (This work is
underway.)

Instruction references are hex-encoded address strings. Clients do not
need to obtain them from DAP requests. This is outside the spec, but it
is needed for a binary-only debugger.

Functions that write directly to stdout (e.g. printf) should generally
not be used any more.  Instead, use either sys_message (which respects
sys_silent) or log_message (which will send the message to the debugger
if DAP is enabled). stderr can be used as normal.
2023-04-29 10:32:50 -07:00
Nunuhara Cabbage 4ad893c147 Merge pull request #114 from kichikuou/windows-fix
Fix character encoding issue in vm_stack_trace()
2023-04-23 11:18:57 -07:00
kichikuou 381e644a42 Fix character encoding issue in vm_stack_trace() 2023-04-23 21:34:35 +09:00
Nunuhara Cabbage ba81077c2e Fix performance issue with PartsEngine text
Don't allocate massive textures for each text object. Instead, allocate
a texture for each character and then compose them onto an appropriately
sized texture.

Fixes a performance issue in Rance 01.
2023-04-16 15:44:58 -07:00
Nunuhara Cabbage f7cf2264fa Fix multiple issues with resetting HLLs
Clear PartsEngine/SACT2/CharSpriteManager/audio state when resetting the
VM.

Fixes #113
2023-04-14 16:00:40 -07:00
Nunuhara Cabbage 9bb4665fa9 Add changes to vm.h
Missed this file in the last commit.
2023-04-14 15:57:22 -07:00
Nunuhara Cabbage 4c9c23f620 Merge branch 'master' of github.com:nunuhara/xsystem4 2023-04-14 15:16:10 -07:00
Nunuhara Cabbage 75d6386e25 Fix ResumeSave/ResumeLoad bugs with delegates
When loading a delegate, the stored objects must be registered to it.

Also, delegate_call cannot use vm_execute because the VM cannot be
resumed from such a state.

Incidentally, this means that ResumeSave cannot be called from within a
constructor/destructor (since they also use vm_execute), but this is
probably not a problem.
2023-04-14 15:08:45 -07:00
Nunuhara Cabbage 983944a776 Implement PartsEngine Save/Load
The format should not be considered stable at this point, as PartsEngine
support is still experimental and subject to change. But it's useful to
have these functions for testing purposes.
2023-04-14 10:30:36 -07:00
Nunuhara Cabbage 373903cdb5 Implement ChipmunkSpriteEngine.SP_RenderView
Used to create save thumbnails in Shaman's Sanctuary.
2023-04-14 07:55:57 -07:00
Nunuhara Cabbage 4b1257fc13 Fix delegate memory management
Although delegate pages store references to objects on the heap,
adding/removing objects from a delegate does not affect their reference
counts. When an object that is a member of a delegate is deleted, it is
automatically removed from the delegate.

In practice, this means that every object needs to keep a list of
delegates that it belongs to. This increases the size of the page header
on 64 bit systems, but not by much since the additional metadata can be
stored in a union with the array-specific metadata.
2023-04-13 16:38:13 -07:00
Nunuhara Cabbage 0416d4f1f7 Merge pull request #112 from kichikuou/msgbox
Fix garbled characters in message box on Windows
2023-04-13 16:35:55 -07:00
kichikuou 911f82cda0 Fix garbled characters in message box on Windows
SDL MessageBox functions expect UTF-8 strings even in Japanese-locale
Windows.
2023-04-13 17:55:02 +09:00
Nunuhara Cabbage e4ed459376 Implement miscellaneous PartsEngine functions 2023-04-10 21:48:09 -07:00
Nunuhara Cabbage 46f25755c5 Add PartsEngine HLL (Oyako Rankan version)
The game currently runs up until the first unimplemented function
(SeekEndMotion) during the intro events, using the existing PE_
functions with a few minor fixes.
2023-04-10 15:16:14 -07:00
Nunuhara Cabbage 249e447920 asset_manager: use built-in afa index
The afa implementation from libsys4 now handles basename indexing, so we
use that instead of creating a separate index. Also, afa v1 is now
properly supported in libsys4, so there is no need for the
id_indexed_afa hack.
2023-04-09 10:02:07 -07:00
Nunuhara Cabbage cc199dcf4e Add notes directory 2023-04-05 19:28:30 -07:00
Nunuhara Cabbage baae8f5237 Document Windows FFmpeg build, etc.
Statically link FFmpeg on Windows. This requires building a slimmed-down
version of FFmpeg from source. The build process is documented in the
README.

Also add ffmpeg dependency to the nix flake.
2023-04-02 19:34:45 -07:00
Nunuhara Cabbage 8437a87b54 Merge pull request #111 from kichikuou/ffmpeg
Add FFmpeg movie backend
2023-04-02 12:31:29 -07:00
kichikuou b11a173b67 Add FFmpeg movie backend
This allows playback of videos in encodings other than MPEG-1, e.g. VC-1
used in the English version of Rance VI.

The FFmpeg dependency is optional. If it's not available, the PL_MPEG
backend will be used.
2023-04-01 13:59:55 +09:00
Nunuhara Cabbage 0e18f69cbf build: require meson >= 0.59 and cglm >= 0.8.3
get_option('<option>').allowed() requires meson >= 0.59.

glm_quat_nlerp requres cglm >= 0.8.3.
2023-03-28 22:41:49 -07:00
Nunuhara Cabbage c3f9d93917 Link statically on Windows
Try to link statically as much as possible on Windows, to reduce the
number of DLLs that have to be shipped with Windows builds.

Also document the build process on Windows.
2023-03-29 03:09:20 -07:00
Nunuhara Cabbage ac411754a0 Merge pull request #109 from kichikuou/sact
Change the second parameter of `sact_SP_SetShow` from bool to int
2023-03-27 06:26:08 -07:00
kichikuou 45ebaa2c7f Set debug printing function for sprites initialized with CGs 2023-03-27 20:13:27 +09:00
kichikuou a923b0ce23 Change the second parameter of sact_SP_SetShow from bool to int
In SACT2 it's declared as int, so any integer can be passed. A Sengoku
Rance mod actually passes 2, but some compilers generate code that
interprets it as false.
2023-03-27 20:13:27 +09:00
Nunuhara Cabbage 1be2cffd22 Merge pull request #108 from kichikuou/msgskip
Use System4-compatible MsgSkip file format
2023-03-25 23:20:02 -07:00
kichikuou 50af8bd3ff Use System4-compatible MsgSkip file format 2023-03-24 20:05:17 +09:00
Nunuhara Cabbage 32ef29ee20 Merge pull request #107 from kichikuou/savefile
Use global/group save file format compatible with System4
2023-03-20 22:24:59 -07:00
kichikuou 8620be452e Ignore non-existent structure fields when loading from gsave
This matches System4's behavior.
2023-03-19 22:18:28 +09:00
kichikuou cc79f9caee Use global/group save file format compatible with System4
After this, xsystem4 uses the global/group save format used by the
original System4, instead of the JSON format. Existing JSON save files
can still be loaded.

This makes save files interoperable between System4 and xsystem4 in some
games, including Sengoku Rance and Toushin Toshi III.
2023-03-19 11:42:20 +09:00
Nunuhara Cabbage 6a2eae7274 Merge pull request #106 from kichikuou/sact
sact_SP_TextDraw: Early return if sprite size is zero
2023-03-18 16:47:02 -07:00
kichikuou 66002f7ceb sact_SP_TextDraw: Early return if sprite size is zero
Otherwise it ERROR()s in gfx_set_framebuffer() due to an incomplete
framebuffer.

This happens when trying to display text without specifying a message
window in SACT2. AliceSoft's implementation ignores this.
2023-03-17 22:11:41 +09:00
Nunuhara Cabbage d1b18f39dd Add flake.nix 2023-03-09 19:37:42 -08:00
Nunuhara Cabbage dbd1e54c46 Merge branch 'master' of github.com:nunuhara/xsystem4 2023-03-07 18:21:21 -08:00
Nunuhara Cabbage 3c0ee51714 Merge pull request #105 from kichikuou/drawdungeon
Add stub for DrawDungeon14.SetRasterScroll
2023-03-06 17:00:06 -08:00
kichikuou d4f7ab06cf Add stub for DrawDungeon14.SetRasterScroll
This function is used for the underwater effect in GALZOO. It should be
implemented as a post-processing effect, but in the meantime let's stub
it out to avoid runtime error.
2023-03-06 20:03:03 +09:00
Nunuhara Cabbage 66d8def3f8 Merge pull request #104 from kichikuou/sleep
Add vm_sleep()
2023-02-28 16:29:05 -08:00
Nunuhara Cabbage 8f29146c28 Merge pull request #103 from kichikuou/win
Use UTF8-aware dirname/basename functions
2023-02-28 16:28:08 -08:00
kichikuou e53dc6ad0e Add vm_sleep()
The nanosleep() function in mingw-w64 often sleeps for more than the
specified time. This causes a problem in Rance 6 combat scene, where
the damage popup is noticeably slow.

This adds vm_sleep() that calls SDL_Delay() which uses high-resolution
timer on Windows.
2023-02-25 21:57:34 +09:00
kichikuou 90a96eb8bb Use UTF8-aware dirname/basename functions
Command line paths containing non-ASCII characters now work on Windows.
2023-02-25 21:05:53 +09:00
Nunuhara Cabbage 3ff2c33d3c Fix crash due to gap in mixer list
Fix a crash that occurs during startup of Oyako Rankan due to a gap in
the "VolumeValancer" list in AliceStart.ini
2023-02-12 19:49:28 -08:00
Nunuhara Cabbage 2237bb814c Implement various HLL functions for Rance Quest
Most of the functionality of gfx_render_texture (draw method, blend
rate) is moved into sprite_render, since this was the only place using
it.
The draw method and blend rate are now stored in sact_sprite objects
instead of textures.
sact_sprite now has two renderers: the old SACT2 renderer (with blend
rate as the only shader parameter) and the new ChipmunkSpriteEngine
renderer, which supports multiply/add colors and the "surface area"
feature from PartsEngine.

Rance Quest now runs up to the first Flash-related function call
(Flash?!?!).
2023-02-12 15:59:36 -08:00
Nunuhara Cabbage 6b62e1db23 Fix CG loading functions for Rance Quest
Rance Quest uses strings for CG names, but the strings contain numbers
which should be converted to integers for lookup.
2023-02-11 16:36:05 -08:00
Nunuhara Cabbage 267bb8c99a Update libsys4 2023-02-07 21:01:42 -08:00
Nunuhara Cabbage d2ff9833de Merge pull request #101 from kichikuou/fopen
Fix file name encoding issues in movie.c and Toushin3Loader.c
2023-01-16 11:11:53 -08:00
kichikuou 91e4478a29 Fix file name encoding issues in movie.c and Toushin3Loader.c 2023-01-16 21:54:55 +09:00
Nunuhara Cabbage 842d712a31 Fix bug in S_MOD
The 3rd argument to the instruction indicates the type of the second
argument. If there are multiple specifiers in the format string, the
first specifier matching the given type is substituted (NOT the first
specifier encountered when processing the format string).
2023-01-10 18:47:03 -08:00
Nunuhara Cabbage 2dbc322db8 Fix text layout bug in SengokuRanceFont
Fix text layout bug when message setting isn't "No Wait".
2023-01-09 17:26:22 -08:00
Nunuhara Cabbage d913ee38a3 Merge pull request #100 from kichikuou/effect
Allow frames to drop in sact_Effect()
2023-01-09 17:14:54 -08:00
kichikuou 5649236c7c Allow frames to drop in sact_Effect()
Some effects (e.g. EFFECT_BLUR_CROSSFADE) are slow on low-end Android
devices. This adds frame rate control so that they won't take too long.
2023-01-09 14:50:45 +09:00
Nunuhara Cabbage a55893bf2f debugger: improve print command
Now handles arbitrarily complex member/subscript expressions, with
pretty-printing and a configurable recursion depth.
2023-01-08 17:13:33 -08:00
Nunuhara Cabbage d8f936f1df Implement SystemService.GetGameFolderPath 2023-01-08 11:34:06 -08:00
Nunuhara Cabbage d2539b978e GoatGUIEngine.GetPartsCGName 2023-01-08 11:32:02 -08:00
Nunuhara Cabbage 92bbcb4866 Fix bug in afa_load_archive 2023-01-08 11:30:52 -08:00
Nunuhara Cabbage 96df171157 debugger: clean up help command list
Make the command list printed by the 'help' command easier to read.
2023-01-07 15:28:31 -08:00
Nunuhara Cabbage 9fd0415ec6 debugger: add finish command
Add finish (fin) command which resumes execution until returning from
the current function.
2023-01-07 13:44:08 -08:00
Nunuhara Cabbage 31930c5e97 Use gamedir_path in system.ExistsFile
Fixes an issue where the Sengoku Rance opening movie wouldn't play
if the game was started outside the game directory.
2023-01-07 13:09:49 -08:00
Nunuhara Cabbage def987ad5f debugger: print stack and disassembly side-by-side
This makes the screen position of the disassembly more stable when
stepping through code.
2023-01-07 12:58:09 -08:00
Nunuhara Cabbage a4bb1a815a debugger: show hll function names in disassembly 2023-01-07 10:45:10 -08:00
Nunuhara Cabbage 71f3450037 Only define windows_error_handler on Windows 2023-01-07 10:35:48 -08:00
Nunuhara Cabbage f7c9d9326d debugger: add single-stepping commands
Add 'step' (s) and 'next' (n) commands for single-stepping bytecode.
'step' is the 'step into' type which descends into function calls,
wheras 'next' is the 'step over' type which continues until the next
instruction within the current function.
2023-01-07 09:54:15 -08:00
Nunuhara Cabbage 8b4df9b9a4 Merge pull request #99 from kichikuou/movie
Add error checking for movie format
2023-01-07 08:29:18 -08:00
kichikuou d4d292434c Add error checking for movie format
AliceSoft only uses MPEG-PS, but PlayMovie.dll is included in System4
SDK and can play any format supported by DirectShow. This fixes crash in
movie_load() when given file is not a MPEG-PS.
2023-01-07 18:26:09 +09:00
Nunuhara Cabbage f598a7276b Merge pull request #98 from kichikuou/movie
Implement DrawMovie, DrawMovie2 and PlayMovie HLLs
2023-01-06 18:02:02 -08:00
kichikuou 2f75253080 Add DrawMovie2.{SetInnerVolume,UpdateVolume}
For Rance 02.
2023-01-06 15:21:53 +09:00
kichikuou b0477deca1 Handle events in system.Peek()
Otherwise Sengoku Rance becomes unresponsive during movie playback.
2023-01-06 12:12:10 +09:00
kichikuou de2db1af93 Implement DrawMovie, DrawMovie2 and PlayMovie HLLs
These HLLs play .mpg movie files (later games use .alm file extension,
but the format is the same, i.e. MPEG-PS) that contain MPEG1 video and
MP2 audio streams.

pl_mpeg.h is the PL_MPEG library (https://github.com/phoboslab/pl_mpeg)
imported from commit 5aeef4d07593be1960a0e4c7fe204809cfae30bd.

This adds a few mixer functions (mixer_stream_*) for playing custom
audio streams under the master mixer.
2023-01-06 12:12:07 +09:00
Nunuhara Cabbage b6f9999a56 Merge pull request #96 from kichikuou/repl-on-mbutton
Enter debugger REPL on middle-button click
2023-01-02 16:42:16 -08:00
Nunuhara Cabbage 20b60467f2 Merge pull request #95 from kichikuou/windows-fix
Windows: Fix read_save_file
2023-01-02 16:39:34 -08:00
kichikuou 64a92a2ffa Enter debugger REPL on middle-button click
This is effective only if --debug command line flag is specified.
2023-01-02 21:10:58 +09:00
kichikuou 620fecb244 Windows: Fix read_save_file
This fixes an issue where saved files could not be read on Windows.

On Windows if a file is opened in text mode, ftell() at EOF returns
the file size in bytes, but fread() tries to read the specified number
of characters (after removing carriage returns), resulting in an EOF
error.

To avoid this problem, open save files in binary mode.
2023-01-02 21:00:11 +09:00
250 changed files with 48273 additions and 4475 deletions
+194
View File
@@ -0,0 +1,194 @@
name: Build
on: [push, pull_request]
jobs:
linux-build:
runs-on: ubuntu-latest
strategy:
matrix:
build-type: ["debug", "release"]
name: Linux ${{ matrix.build-type }}
steps:
- name: Checkout Source
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Dependencies
run: |
sudo apt update
sudo apt install flex bison meson libfreetype-dev libglew-dev libffi-dev libpng-dev libsndfile-dev libturbojpeg0-dev libwebp-dev libsdl2-dev zlib1g-dev
- name: Build
run: |
mkdir -p out/${{ matrix.build-type }}
meson -Dbuildtype=${{ matrix.build-type }} out/${{ matrix.build-type }}
ninja -C out/${{ matrix.build-type }}
- name: Test
run: out/${{ matrix.build-type }}/src/xsystem4 test/Run/test.ain
flatpak-build:
name: Flatpak
runs-on: ubuntu-latest
container:
image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-48
options: --privileged
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: xsystem4-linux-x86_64-nightly.flatpak
manifest-path: technology.haniwa.xsystem4.yml
cache-key: flatpak-builder-${{ github.sha }}
windows-build:
runs-on: windows-latest
name: Windows
defaults:
run:
shell: msys2 {0}
steps:
- name: Checkout Source
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup MSYS2
uses: msys2/setup-msys2@v2
with:
update: true
install: >-
base-devel
git
nasm
diffutils
zip
mingw-w64-x86_64-gcc
mingw-w64-x86_64-meson
mingw-w64-x86_64-pkg-config
mingw-w64-x86_64-SDL2
mingw-w64-x86_64-freetype
mingw-w64-x86_64-libjpeg-turbo
mingw-w64-x86_64-libwebp
mingw-w64-x86_64-libpng
mingw-w64-x86_64-libsndfile
mingw-w64-x86_64-glew
- name: Cache FFmpeg
id: cache-ffmpeg
uses: actions/cache@v4
with:
path: FFmpeg/destdir
key: ${{ runner.os }}-ffmpeg-n7.1.2
- name: Build FFmpeg
if: ${{ steps.cache-ffmpeg.outputs.cache-hit != 'true' }}
run: |
git clone --depth 1 --branch n7.1.2 https://github.com/FFmpeg/FFmpeg.git
cd FFmpeg
./configure --disable-everything \
--enable-decoder=mpegvideo \
--enable-decoder=mpeg1video \
--enable-decoder=mpeg2video \
--enable-decoder=mp2 \
--enable-parser=mpegaudio \
--enable-parser=mpegvideo \
--enable-demuxer=mpegps \
--enable-demuxer=mpegts \
--enable-demuxer=mpegtsraw \
--enable-demuxer=mpegvideo \
--enable-decoder=vc1 \
--enable-decoder=wmapro \
--enable-parser=vc1 \
--enable-hwaccel=vc1_d3d11va \
--enable-hwaccel=vc1_d3d11va2 \
--enable-hwaccel=vc1_dxva2 \
--enable-demuxer=asf \
--enable-protocol=file \
--enable-filter=scale \
--enable-static \
--disable-shared \
--extra-libs=-static \
--extra-cflags=--static \
--prefix=/mingw64
make -j$(nproc)
mkdir destdir
DESTDIR=destdir make install
cd ..
- name: Install FFmpeg
run: |
cp -a FFmpeg/destdir/. /
- name: Build
run: |
mkdir debug
meson debug -Dbuildtype=debug
ninja -C debug
mkdir release
meson release -Dbuildtype=release
ninja -C release
- name: Test
run: |
debug/src/xsystem4.exe test/Run/test.ain
release/src/xsystem4.exe test/Run/test.ain
- name: Copy licenses
run: |
ls /mingw64/share/licenses
mkdir dist
cp -r /mingw64/share/licenses dist/
- name: Package
run: |
cp release/src/xsystem4.exe COPYING README.md game_compatibility.md dist/
cp debug/src/xsystem4.exe dist/xsystem4-debug.exe
cp /mingw64/bin/glew32.dll dist/
cp extra/*.lnk dist/
cp -r fonts dist/
cp -r shaders dist/
mv dist xsystem4
zip -r -9 xsystem4-windows-x86_64-nightly.zip xsystem4
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: xsystem4
path: xsystem4-windows-x86_64-nightly.zip
nightly:
name: Update nightly release
needs: [windows-build, flatpak-build]
if: ${{ github.repository == 'nunuhara/xsystem4' && github.ref == 'refs/heads/master' }}
runs-on: ubuntu-latest
steps:
- name: Download release artifacts
uses: actions/download-artifact@v5
with:
merge-multiple: true
- name: Update nightly tag
uses: richardsimko/update-tag@v1
with:
tag_name: nightly
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Release nightly
uses: softprops/action-gh-release@v2
with:
prerelease: true
name: nightly
tag_name: nightly
files: |
xsystem4-windows-x86_64-nightly.zip
xsystem4-linux-x86_64-nightly.flatpak
fail_on_unmatched_files: true
+234
View File
@@ -0,0 +1,234 @@
# CMakeLists.txt for Android build
cmake_minimum_required(VERSION 3.14)
project(xsystem4 LANGUAGES C)
set(CMAKE_C_STANDARD 11)
include(FetchContent)
FetchContent_Declare(
cglm
URL https://github.com/recp/cglm/archive/refs/tags/v0.9.2.tar.gz
URL_HASH SHA1=cb8472aa8c2ab67b66378dbaf10c2c7368d4e4c3
)
FetchContent_MakeAvailable(cglm)
add_library(ffi STATIC IMPORTED)
set_target_properties(ffi PROPERTIES
IMPORTED_LOCATION ${CMAKE_STAGING_PREFIX}/lib/libffi.a
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_STAGING_PREFIX}/include)
find_package(Freetype REQUIRED)
find_package(SDL2 REQUIRED)
find_package(SndFile REQUIRED)
find_package(ZLIB REQUIRED)
add_subdirectory(subprojects/libsys4)
add_library(xsystem4 SHARED)
target_compile_definitions(xsystem4 PRIVATE
_DEFAULT_SOURCE
USE_GLES
)
target_include_directories(xsystem4 PRIVATE include)
execute_process(
COMMAND git rev-parse --short HEAD
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
OUTPUT_VARIABLE VCS_TAG
OUTPUT_STRIP_TRAILING_WHITESPACE)
configure_file(src/version.h.in version.h)
include_directories(${CMAKE_CURRENT_BINARY_DIR})
target_sources(xsystem4 PRIVATE
src/audio.c
src/audio_meta.c
src/audio_mixer.c
src/asset_manager.c
src/base64.c
src/cJSON.c
src/draw.c
src/effect.c
src/ffi.c
src/font_freetype.c
src/font_fnl.c
src/format.c
src/hacks.c
src/heap.c
src/icon.c
src/id_pool.c
src/input.c
src/json.c
src/movie_plmpeg.c
src/msgqueue.c
src/page.c
src/resume.c
src/savedata.c
src/scene.c
src/screenshot.c
src/sprite.c
src/swf.c
src/system4.c
src/text.c
src/util.c
src/video.c
src/vm.c
src/3d/collision.c
src/3d/debug.c
src/3d/model.c
src/3d/mpr.c
src/3d/parser.c
src/3d/particle.c
src/3d/reign.c
src/3d/renderer.c
src/3d/s3de.c
src/3d/save.c
src/dungeon/dgn.c
src/dungeon/dtx.c
src/dungeon/dungeon.c
src/dungeon/generator.c
src/dungeon/map.c
src/dungeon/mtrand43.c
src/dungeon/polyobj.c
src/dungeon/renderer.c
src/dungeon/skybox.c
src/dungeon/tes.c
src/parts/construction.c
src/parts/debug.c
src/parts/flash.c
src/parts/flat.c
src/parts/input.c
src/parts/layoutbox.c
src/parts/message.c
src/parts/motion.c
src/parts/parts.c
src/parts/render.c
src/parts/text.c
src/parts/save.c
src/hll/ACXLoader.c
src/hll/ADVSYS.c
src/hll/AFAFactory.c
src/hll/AliceLogo.c
src/hll/AliceLogo2.c
src/hll/AliceLogo3.c
src/hll/AliceLogo4.c
src/hll/AliceLogo5.c
src/hll/AnteaterADVEngine.c
src/hll/Array.c
src/hll/BanMisc.c
src/hll/Bitarray.c
src/hll/CalcTable.c
src/hll/CGManager.c
src/hll/CharSpriteManager.c
src/hll/ChipmunkSpriteEngine.c
src/hll/ChrLoader.c
src/hll/CommonSystemData.c
src/hll/Confirm.c
src/hll/Confirm2.c
src/hll/Confirm3.c
src/hll/CrayfishLogViewer.c
src/hll/Cursor.c
src/hll/DALKDemo.c
src/hll/DALKEDemo.c
src/hll/Data.c
src/hll/DataFile.c
src/hll/Discord.c
src/hll/DrawDungeon.c
src/hll/DrawEffect.c
src/hll/DrawGraph.c
src/hll/DrawMovie.c
src/hll/DrawNumeral.c
src/hll/DrawPluginManager.c
src/hll/DrawRain.c
src/hll/DrawRipple.c
src/hll/DrawSimpleText.c
src/hll/DrawSnow.c
src/hll/File.c
src/hll/File2.c
src/hll/FileOperation.c
src/hll/FillAngle.c
src/hll/GoatGUIEngine.c
src/hll/Gpx2Plus.c
src/hll/GUIEngine.c
src/hll/HTTPDownloader.c
src/hll/iarray.c
src/hll/IbisInputEngine.c
src/hll/InputDevice.c
src/hll/InputString.c
src/hll/KiwiSoundEngine.c
src/hll/LoadCG.c
src/hll/MADLoader.c
src/hll/MainEXFile.c
src/hll/MainSurface.c
src/hll/MamanyoDemo.c
src/hll/MamanyoSDemo.c
src/hll/MarmotModelEngine.c
src/hll/Math.c
src/hll/MapLoader.c
src/hll/MenuMsg.c
src/hll/MonsterInfo.c
src/hll/MsgLogManager.c
src/hll/MsgLogViewer.c
src/hll/MsgSkip.c
src/hll/MusicSystem.c
src/hll/NewFont.c
src/hll/OutputLog.c
src/hll/P3MapSprite.c
src/hll/P3SquareSprite.c
src/hll/PassRegister.c
src/hll/PastelChime2.c
src/hll/PartsEngine.c
src/hll/PixelRestore.c
src/hll/PlayDemo.c
src/hll/PlayMovie.c
src/hll/ReignEngine.c
src/hll/SACT2.c
src/hll/SengokuRanceFont.c
src/hll/SoundFilePlayer.c
src/hll/Sound2ex.c
src/hll/StoatSpriteEngine.c
src/hll/StretchHelper.c
src/hll/SystemService.c
src/hll/SystemServiceEx.c
src/hll/Timer.c
src/hll/Toushin3Loader.c
src/hll/vmAnime.c
src/hll/vmArray.c
src/hll/vmCG.c
src/hll/vmChrLoader.c
src/hll/vmCursor.c
src/hll/vmDalkGaiden.c
src/hll/vmData.c
src/hll/vmDialog.c
src/hll/vmDrawGauge.c
src/hll/vmDrawMsg.c
src/hll/vmDrawNumber.c
src/hll/vmFile.c
src/hll/vmGraph.c
src/hll/vmGraphQuake.c
src/hll/vmKey.c
src/hll/vmMapLoader.c
src/hll/vmMsgLog.c
src/hll/vmMusic.c
src/hll/vmSound.c
src/hll/vmSprite.c
src/hll/vmString.c
src/hll/vmSurface.c
src/hll/vmSystem.c
src/hll/vmTimer.c
src/hll/ValueEncryption.c
src/hll/VSFile.c
)
target_link_libraries(xsystem4 PRIVATE
m ZLIB::ZLIB SDL2::SDL2 Freetype::Freetype ffi GLESv3 cglm SndFile::sndfile sys4)
target_compile_options(xsystem4 PRIVATE -Wno-unused-parameter)
install(TARGETS xsystem4)
+66
View File
@@ -47,6 +47,72 @@ Finally install it to your system (optional),
ninja -C build install
### Windows
xsystem4 can be built on Windows using MSYS2.
First install MSYS2, and then open the MINGW64 shell and run the following command,
pacman -S make flex bison \
mingw-w64-x86_64-gcc \
mingw-w64-x86_64-meson \
mingw-w64-x86_64-pkg-config \
mingw-w64-x86_64-SDL2 \
mingw-w64-x86_64-freetype \
mingw-w64-x86_64-libjpeg-turbo \
mingw-w64-x86_64-libwebp \
mingw-w64-x86_64-libsndfile \
mingw-w64-x86_64-glew \
mingw-w64-x86_64-nasm \
mingw-w64-x86_64-diffutils
To build with FFmpeg support, you must compile FFmpeg as a static library:
git clone https://github.com/FFmpeg/FFmpeg.git
cd FFmpeg
git checkout n7.1.2
./configure --disable-everything \
--enable-decoder=mpegvideo \
--enable-decoder=mpeg1video \
--enable-decoder=mpeg2video \
--enable-decoder=mp2 \
--enable-parser=mpegaudio \
--enable-parser=mpegvideo \
--enable-demuxer=mpegps \
--enable-demuxer=mpegts \
--enable-demuxer=mpegtsraw \
--enable-demuxer=mpegvideo \
--enable-decoder=vc1 \
--enable-decoder=wmapro \
--enable-parser=vc1 \
--enable-hwaccel=vc1_d3d11va \
--enable-hwaccel=vc1_d3d11va2 \
--enable-hwaccel=vc1_dxva2 \
--enable-demuxer=asf \
--enable-protocol=file \
--enable-filter=scale \
--enable-static \
--disable-shared \
--extra-libs=-static \
--extra-cflags=--static
make
make install
cd ..
export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH"
Then build the xsystem4 executable with meson,
mkdir build
meson build
ninja -C build
To create a portable executable, it is neccessary to copy some DLLs into the same directory as xsystem4.exe.
You can determine the required DLLs with the following command,
ldd build/src/xsystem4.exe | grep mingw64
The `fonts` and `shaders` directories must also be shipped together with xsystem4.exe.
Installing
----------
Binary file not shown.
Generated
+26
View File
@@ -0,0 +1,26 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1757244434,
"narHash": "sha256-AeqTqY0Y95K1Fgs6wuT1LafBNcmKxcOkWnm4alD9pqM=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "092c565d333be1e17b4779ac22104338941d913f",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "nixos-25.05",
"type": "indirect"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}
+75
View File
@@ -0,0 +1,75 @@
{
description = "Open source implementation of AliceSoft's System 4 game engine for unix-like operating systems";
# Nixpkgs / NixOS version to use.
inputs.nixpkgs.url = "nixpkgs/nixos-25.05";
outputs = { self, nixpkgs }:
let
# System types to support.
supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
# Helper function to generate an attrset '{ x86_64-linux = f "x86_64-linux"; ... }'.
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
# Nixpkgs instantiated for supported system types.
nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; });
in {
# Set up xsystem4 development environment:
# nix develop # create shell environment with dependencies available
devShell = forAllSystems (system:
let pkgs = nixpkgsFor.${system}; in with pkgs; pkgs.mkShell {
nativeBuildInputs = [ meson ninja pkg-config ];
buildInputs = [
cglm
SDL2
freetype
libffi
libjpeg
libwebp
libsndfile
glew
readline
chibi
flex
bison
ffmpeg
];
}
);
# Build xsystem4:
# nix build .?submodules=1 # build xsystem4 (outputs to ./result/)
# nix shell .?submodules=1 # create shell environment with xsystem4 available
# Install xsystem4 to user profile:
# nix profile install .?submodules=1
packages = forAllSystems (system:
let pkgs = nixpkgsFor.${system}; in {
default = with pkgs; stdenv.mkDerivation rec {
name = "xsystem4";
src = ./.;
mesonAutoFeatures = "auto";
nativeBuildInputs = [ meson ninja pkg-config ];
buildInputs = [
cglm
SDL2
freetype
libffi
libjpeg
libwebp
libsndfile
glew
readline
chibi
flex
bison
ffmpeg
];
};
}
);
};
}
+53 -31
View File
@@ -14,52 +14,52 @@ issues, please let me know or open a pull request to update this table.
| Game | Status | Notes |
| ------------------------------------------------------- | ----------- | ----- |
| DALK外伝 | Unsupported | |
| ままにょにょ | Unsupported | |
| DALK外伝 | Supported | |
| ままにょにょ | Supported | |
| 大番長 -Big Bang Age- | Supported | |
| Daibanchou -Big Bang Age- (EN) | Supported | |
| 魔女の贖罪 | Unknown | |
| Rance VI -ゼス崩壊- | Supported | |
| Rance VI -Collapse of Zeth- (EN) | Supported | |
| ウルトラ魔法少女まなな Vol.1~Vol.5 | Unknown | |
| 鈴宮刑務娼館 | Unknown | From ALICEの館7 |
| しまいま | Unknown | From ALICEの館7 |
| DUNGEONS & DOLLS | Unsupported | From ALICEの館7 |
| こすぷれれもん | Unknown | From ALICEの館7 |
| エルメイフラワー | Unknown | From ALICEの館7 |
| CGは17年ゼミ | Unknown | From ALICEの館7 |
| でーぴーえすVer_N | Unknown | From ALICEの館7 |
| 大番長外伝 | Unknown | From ALICEの館7 |
| ZERO | Unknown | From ALICEの館7 |
| ぷろGRX | Unknown | From ALICEの館7 |
| Girls | Unknown | From ALICEの館7 |
| 神武 -カムナガラ- | Unknown | From ALICEの館7 |
| オニむス | Unknown | From ALICEの館7 |
| 透色 | Unknown | From ALICEの館7 |
| DEBUT | Unknown | From ALICEの館7 |
| ランス6その後 | Unknown | From ALICEの館7 |
| ほいっぷハニー | Unknown | From ALICEの館7 |
| Text Jam Session | Unknown | From ALICEの館7 |
| 没ロゴの哀しみ | Unknown | From ALICEの館7 |
| スタッフコーナー | Unknown | From ALICEの館7 |
| ぱすてるチャイムContinue | Unsupported | |
| ウルトラ魔法少女まなな Vol.1~Vol.5 | Supported | |
| 鈴宮刑務娼館 | Supported | From ALICEの館7 |
| しまいま | Supported | From ALICEの館7 |
| DUNGEONS & DOLLS | Supported | From ALICEの館7 |
| こすぷれれもん | Supported | From ALICEの館7 |
| エルメイフラワー | Supported | From ALICEの館7 |
| CGは17年ゼミ | Supported | From ALICEの館7 |
| でーぴーえすVer_N | Supported | From ALICEの館7 |
| 大番長外伝 | Supported | From ALICEの館7 |
| ZERO | Unsupported | From ALICEの館7 |
| ぷろGRX | Supported | From ALICEの館7 |
| Girls | Supported | From ALICEの館7 |
| 神武 -カムナガラ- | Supported | From ALICEの館7 |
| オニむス | Supported | From ALICEの館7 |
| 透色 | Supported | From ALICEの館7 |
| DEBUT | Supported | From ALICEの館7 |
| ランス6その後 | Supported | From ALICEの館7 |
| ほいっぷハニー | Supported | From ALICEの館7 |
| Text Jam Session | Supported | From ALICEの館7 |
| 没ロゴの哀しみ | Supported | From ALICEの館7 |
| スタッフコーナー | Supported | From ALICEの館7 |
| ぱすてるチャイムContinue | Supported | |
| GALZOOアイランド | Supported | |
| ぱすちゃC++ | Unknown | |
| ぱすちゃC++ | Supported | |
| よくばりサボテン | Supported | |
| 妻しぼり | Unknown | |
| 戦国ランス | Supported | |
| Sengoku Rance (EN FanTL) | Supported | |
| Sengoku Rance (MangaGamer) | Supported | |
| だぶる先生らいふっ | Unknown | |
| お嬢様をいいなりにするゲーム | Unknown | |
| お嬢様をいいなりにするゲーム | Supported | |
| 超昂閃忍ハルカ | Unknown | |
| 戦国ランス~三匹が斬ったり突いたり燃やしたり | Unknown | |
| Sengoku Rance -Three for the Slash! Thrust! Burn!- (EN) | Unknown | |
| 戦国ランス~三匹が斬ったり突いたり燃やしたり | Supported | |
| Sengoku Rance -Three for the Slash! Thrust! Burn!- (EN) | Supported | |
| AliveZ | Unknown | |
| エドランゼ ~Come on!水戸姫様~ | Unknown | |
| エドランゼ ~Come on!水戸姫様~ | Supported | |
| 闘神都市III | Supported | |
| ばにしゅ!~おっぱいの消えた王国~ | Unknown | |
| 僕だけの保健室 | Unknown | |
| 僕だけの保健室 | Supported | |
| ももいろガーディアン | Unknown | |
| 超昂閃忍ハルカ ハルカVSエスカレイヤー | Unknown | From Alice 2010 |
| 超昂閃忍ハルカ ―疾風!?忍者大作戦― | Unknown | From Alice 2010 |
@@ -72,4 +72,26 @@ issues, please let me know or open a pull request to update this table.
| ランス02 -反逆の少女たち- | Supported | From Alice 2010 |
| Rance 02 -The Rebellious Maidens- (Fan TL) | Supported | |
| Rance 02 -The Rebellious Maidens- (MangaGamer) | Supported | |
| All games released after Alice 2010 | Unsupported | |
| しゃーまんず・さんくちゅあり-巫女の聖域- | Unknown | |
| 大帝国 | Supported | |
| ランス・クエスト | Supported | |
| ランス・クエスト マグナム | Supported | |
| 母娘乱館 | Unknown | |
| パステルチャイム3 バインドシーカー | Supported | |
| パスチャ3 プラスコンテンツ | Supported | |
| どらぺこ! ~おねだりドラゴンとおっぱい勇者~ | Unsupported | |
| ランス01 光をもとめて | Supported | |
| Rance 01 - Quest for Hikari (EN) | Supported | |
| ランスIX-ヘルマン革命- | Supported | |
| Rance IX - The Helmanian Revolution (EN) | Unknown | |
| 武想少女隊ぶれいど☆ブライダーズ | Supported | |
| イブニクル | Unsupported | |
| Evenicle (EN) | Unsupported | |
| ランス03 リーザス陥落 | Unsupported | |
| Rance 03 -The Fall of Leazas- (EN) | Unsupported | |
| 妻みぐい3 | Unsupported | |
| は~とふるママン | Unsupported | |
| 超昂神騎エクシール | Unsupported | |
| Beat Valkyrie Ixseal (EN) | Unsupported | |
| Rance X -決戦- | Unsupported | |
| All games released after Rance X | Unsupported | |
+3 -2
View File
@@ -30,9 +30,10 @@ enum asset_type {
ASSET_CG,
ASSET_FLAT,
ASSET_PACT,
ASSET_DATA
ASSET_DATA,
ASSET_FLASH
};
#define ASSET_TYPE_MAX (ASSET_DATA+1)
#define ASSET_TYPE_MAX (ASSET_FLASH+1)
const char *asset_strtype(enum asset_type type);
void asset_manager_init(void);
+14 -7
View File
@@ -19,10 +19,16 @@
#include <stdbool.h>
#define AUDIO_NO_METADATA -1
struct archive_data;
void audio_init(void);
void audio_fini(void);
void audio_reset(void);
void audio_update(void);
bool audio_play_sound(int sound_no);
// Takes ownership of dfile.
bool audio_play_archive_data(struct archive_data *dfile);
bool wav_exists(int no);
bool bgm_exists(int no);
@@ -74,16 +80,17 @@ int wav_get_volume(int id);
int bgm_get_volume(int id);
int wav_get_time_length(int id);
int bgm_get_time_length(int id);
//int wav_get_group_num(int id);
int wav_get_data_length(int no);
int bgm_get_data_length(int no);
int wav_get_group_num(int id);
//int bgm_get_group_num(int id);
//int wav_prepare_from_file(int id, char *filename);
//int bgm_prepare_from_file(int id, char *filename);
int wav_prepare_from_file(int id, char *filename);
int bgm_prepare_from_file(int id, char *filename);
int wav_get_group_num_from_data_num(int no);
struct archive_data;
// Takes ownership of dfile.
int wav_prepare_from_archive_data(int id, struct archive_data *dfile);
int wav_prepare_from_archive_data(int id, int metadata_no, struct archive_data *dfile);
int bgm_prepare_from_archive_data(int id, int metadata_no, struct archive_data *dfile);
#endif /* SYSTEM4_AUDIO_H */
+25
View File
@@ -0,0 +1,25 @@
/* Copyright (C) 2023 Nunuhara Cabbage <nunuhara@haniwa.technology>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
#ifndef SYSTEM4_BASE64_H
#define SYSTEM4_BASE64_H
#include <stddef.h>
unsigned char *base64_encode(const unsigned char *src, size_t len,
size_t *out_len);
#endif /* SYSTEM4_BASE64_H */
+53 -9
View File
@@ -18,6 +18,7 @@
#define SYSTEM4_DEBUGGER_H
#ifdef DEBUGGER_ENABLED
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include "system4/instructions.h"
@@ -28,6 +29,18 @@
struct ain_variable;
enum dbg_stop_type {
DBG_STOP_PAUSE,
DBG_STOP_ERROR,
DBG_STOP_BREAKPOINT,
DBG_STOP_STEP,
};
struct dbg_stop {
enum dbg_stop_type type;
const char *message;
};
struct breakpoint {
enum opcode restore_op;
void *data;
@@ -39,18 +52,26 @@ struct breakpoint {
struct dbg_cmd {
const char *fullname;
const char *shortname;
const char *arg_description;
const char *description;
unsigned min_args;
unsigned max_args;
void (*run)(unsigned nr_args, char **args);
};
extern bool dbg_enabled;
extern unsigned dbg_current_frame;
struct dbg_info;
void dbg_init(void);
extern bool dbg_dap;
extern bool dbg_enabled;
extern bool dbg_start_in_debugger;
extern unsigned dbg_current_frame;
extern struct dbg_info *dbg_info;
void dbg_init(const char *debug_info_path);
void dbg_fini(void);
void dbg_repl(void);
void dbg_repl(enum dbg_stop_type, const char *msg);
void dbg_log(const char *log, const char *fmt, va_list ap);
void dbg_continue(void);
void dbg_quit(void);
@@ -59,23 +80,46 @@ void dbg_cmd_init(void);
void dbg_cmd_repl(void);
void dbg_cmd_add_module(const char *name, unsigned nr_commands, struct dbg_cmd *commands);
void dbg_handle_breakpoint(void);
bool dbg_clear_breakpoint(uint32_t addr, void(*free_data)(void*));
void dbg_foreach_breakpoint(void (*fun)(int addr, struct breakpoint*, void *data), void *data);
bool dbg_set_function_breakpoint(const char *_name, void(*cb)(struct breakpoint*), void *data);
bool dbg_set_address_breakpoint(uint32_t address, void(*cb)(struct breakpoint*), void *data);
bool dbg_set_step_over_breakpoint(void);
bool dbg_set_step_into_breakpoint(void);
bool dbg_set_finish_breakpoint(void);
void dbg_print_frame(unsigned no);
void dbg_print_stack_trace(void);
void dbg_print_dasm(void);
void dbg_print_stack(void);
void dbg_print_vm_state(void);
struct ain_variable *dbg_get_member(const char *name, union vm_value *val_out);
struct ain_variable *dbg_get_local(const char *name, union vm_value *val_out);
struct ain_variable *dbg_get_global(const char *name, union vm_value *val_out);
struct ain_variable *dbg_get_variable(const char *name, union vm_value *val_out);
void dbg_print_current_line(void);
union vm_value dbg_eval_string(const char *str, struct ain_type *type_out);
struct string *dbg_value_to_string(struct ain_type *type, union vm_value value, int recursive);
struct string *dbg_variable_to_string(struct ain_type *type, struct page *page, int slot, int recursive);
void dbg_dap_init(void);
void dbg_dap_quit(void);
void dbg_dap_repl(struct dbg_stop *stop);
void dbg_dap_handle_messages(void);
void dbg_dap_log(const char *log, const char *fmt, va_list ap);
struct dbg_info *dbg_info_load(const char *path);
const char *dbg_info_source_name(const struct dbg_info *info, int file);
char *dbg_info_source_path(const struct dbg_info *info, int file);
const char *dbg_info_source_line(const struct dbg_info *info, int file, int line);
int dbg_info_find_file(const struct dbg_info *info, const char *filename);
bool dbg_info_addr2line(const struct dbg_info *info, int addr, int *file, int *line);
int dbg_info_line2addr(const struct dbg_info *info, int file, int line);
#ifdef HAVE_SCHEME
void dbg_scm_init(void);
void dbg_scm_fini(void);
void dbg_scm_repl(void);
#endif /* HAVE_SCHEME */
#else /* DEBUGGER ENABLED */
#define dbg_init(debug_info_path)
#define dbg_repl(type, msg)
#define dbg_dap 0
#define dbg_dap_handle_messages()
#define dbg_dap_log(log, fmt, ap)
#endif /* DEBUGGER_ENABLED */
#endif /* SYSTEM4_DEBUGGER_H */
+28 -3
View File
@@ -20,6 +20,7 @@
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <cglm/cglm.h>
/*
* Dungeon data is a collection of cells indexed by three integers (x, y, z).
@@ -45,7 +46,13 @@ struct dgn_cell {
int32_t west_door;
int32_t stairs_texture;
int32_t stairs_orientation;
// int32_t unknown[13];
int32_t lightmap_floor;
int32_t lightmap_ceiling;
int32_t lightmap_north;
int32_t lightmap_south;
int32_t lightmap_east;
int32_t lightmap_west;
// int32_t unknown[7];
int32_t enterable;
int32_t enterable_north;
int32_t enterable_south;
@@ -86,11 +93,16 @@ struct dgn_cell {
float south_door_angle;
float east_door_angle;
float west_door_angle;
int north_door_lock;
int south_door_lock;
int east_door_lock;
int west_door_lock;
int32_t floor_event2;
int32_t north_event2;
int32_t south_event2;
int32_t east_event2;
int32_t west_event2;
int pathfinding_cost;
struct dgn_cell **visible_cells;
};
@@ -106,16 +118,28 @@ struct packed_pvs {
};
struct dgn {
uint32_t version; // 10: Rance VI, 13: GALZOO Island
uint32_t size_x;
uint32_t size_y;
uint32_t size_z;
// uint32_t unknown[10];
struct dgn_cell *cells;
struct packed_pvs *pvs;
vec3 sphere_theta;
float sphere_color_top;
float sphere_color_bottom;
// for generated dungeons
int start_x, start_y;
int exit_x, exit_y;
// DrawField
int32_t back_color_r;
int32_t back_color_g;
int32_t back_color_b;
};
struct dgn *dgn_parse(uint8_t *data, size_t size);
struct dgn *dgn_new(uint32_t size_x, uint32_t size_y, uint32_t size_z);
struct dgn *dgn_parse(uint8_t *data, size_t size, bool for_draw_field);
void dgn_free(struct dgn *dgn);
int dgn_cell_index(struct dgn *dgn, uint32_t x, uint32_t y, uint32_t z);
@@ -134,5 +158,6 @@ static inline bool dgn_is_in_map(struct dgn *dgn, uint32_t x, uint32_t y, uint32
// Returns a list of cells visible from (x, y, z), sorted by distance from (x, y, z).
struct dgn_cell **dgn_get_visible_cells(struct dgn *dgn, int x, int y, int z, int *nr_cells_out);
void dgn_calc_lightmap(struct dgn *dgn);
#endif /* SYSTEM4_DGN_H */
+13 -7
View File
@@ -23,14 +23,19 @@
struct cg;
enum dtx_texture_type {
DTX_WALL = 0,
DTX_FLOOR = 1,
DTX_CEILING = 2,
DTX_STAIRS = 3,
DTX_DOOR = 4,
DTX_SKYBOX = 5,
// cell textures
DTX_WALL,
DTX_FLOOR,
DTX_CEILING,
DTX_STAIRS,
DTX_DOOR,
DTX_LIGHTMAP,
// skybox textures
DTX_SKYBOX,
};
#define DTX_NR_CELL_TEXTURE_TYPES (DTX_LIGHTMAP + 1)
struct dtx_entry {
uint32_t size;
uint8_t *data;
@@ -45,6 +50,7 @@ struct dtx {
struct dtx *dtx_parse(uint8_t *data, size_t size);
void dtx_free(struct dtx *dtx);
struct cg *dtx_create_cg(struct dtx *dtx, int type, int index);
struct cg *dtx_create_cg(struct dtx *dtx, enum dtx_texture_type type, int index);
struct dtx *dtx_load_from_dtl(const char *path, uint32_t seed);
#endif /* SYSTEM4_DTX_H */
+25 -5
View File
@@ -20,20 +20,25 @@
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include "gfx/gl.h"
#include <cglm/cglm.h>
#include "gfx/gfx.h"
#include "plugin.h"
#define DRAWFIELD_NR_CHARACTERS 256
struct page;
struct dgn;
struct dtx;
struct tes;
struct dungeon_renderer;
struct dungeon_map;
struct drawfield_character;
enum draw_dungeon_version {
DRAW_DUNGEON_1, // Rance VI
// DRAW_DUNGEON_2, // Dungeons & Dolls
DRAW_DUNGEON_14 // GALZOO Island
DRAW_DUNGEON_2, // Dungeons & Dolls
DRAW_DUNGEON_14, // GALZOO Island
DRAW_FIELD // Pastel Chime Continue
};
struct camera {
@@ -62,19 +67,34 @@ struct dungeon_context {
struct dgn *dgn;
struct dtx *dtx;
struct tes *tes;
ivec3 player_pos;
struct drawfield_character *characters;
mat4 proj_transform;
struct dungeon_renderer *renderer;
struct texture texture;
GLuint depth_buffer;
};
struct dungeon_context *dungeon_context_create(enum draw_dungeon_version version, int surface);
void dungeon_context_free(struct dungeon_context *ctx);
struct dungeon_context *dungeon_context_create(enum draw_dungeon_version version, int width, int height);
bool dungeon_load(struct dungeon_context *ctx, int num);
bool dungeon_load_dungeon(struct dungeon_context *ctx, const char *filename, int num);
bool dungeon_load_texture(struct dungeon_context *ctx, const char *filename);
void dungeon_set_camera(int surface, float x, float y, float z, float angle, float angle_p);
void dungeon_set_perspective(int surface, int width, int height, float near, float far, float deg);
void dungeon_set_player_pos(int surface, int x, int y, int z);
void dungeon_set_walked(int surface, int x, int y, int z, int flag);
int dungeon_get_walked(int surface, int x, int y, int z);
void dungeon_set_walked_all(int surface);
int dungeon_calc_conquer(int surface);
bool dungeon_load_walk_data(int surface, int map, struct page **page);
bool dungeon_save_walk_data(int surface, int map, struct page **page);
void dungeon_paint_step(int surface, int x, int y, int z);
void dungeon_set_chara_sprite(int surface, int num, int sprite);
void dungeon_set_chara_pos(int surface, int num, float x, float y, float z);
void dungeon_set_chara_cg(int surface, int num, int cg);
void dungeon_set_chara_cg_info(int surface, int num, int num_chara_x, int num_chara_y);
void dungeon_set_chara_show(int surface, int num, bool show);
bool dungeon_project_world_to_screen(struct dungeon_context *ctx, vec3 world_pos, Point *screen_pos);
struct dungeon_context *dungeon_get_context(int surface);
+39
View File
@@ -0,0 +1,39 @@
/* Copyright (C) 2025 kichikuou <KichikuouChrome@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
#ifndef SYSTEM4_DUNGEON_GENERATOR_H
#define SYSTEM4_DUNGEON_GENERATOR_H
struct dgn;
enum drawfield_cell_flag {
DF_FLAG_ITEM = 1 << 0,
DF_FLAG_ENEMY = 1 << 1,
DF_FLAG_TRAP = 1 << 2,
DF_FLAG_NO_TREASURE = 1 << 3,
DF_FLAG_NO_MONSTER = 1 << 4,
DF_FLAG_NO_TRAP = 1 << 5,
DF_FLAG_TREASURE_ROOM = 1 << 6
};
struct dgn *dgn_generate_drawdungeon2(int level);
void dgn_paint_step(struct dgn *dgn, int x, int y);
struct dgn *dgn_generate_drawfield(
int floor, int complexity, int wall_arrange_method, int floor_arrange_method,
int field_size_x, int field_size_y, int door_lock_percent, uint32_t seed,
uint8_t *cell_flags);
#endif /* SYSTEM4_DUNGEON_GENERATOR_H */
+2 -1
View File
@@ -32,6 +32,7 @@ void dungeon_map_set_all_view(int surface, int flag);
void dungeon_map_set_cg(int surface, int index, int sprite);
void dungeon_map_set_small_map_floor(int surface, int floor);
void dungeon_map_set_large_map_floor(int surface, int floor);
void dungeon_map_reveal(struct dungeon_context *ctx, int x, int y, int z, bool transparent);
void dungeon_map_reveal(struct dungeon_context *ctx, int x, int y, int z, bool from_walk_data);
void dungeon_map_hide(struct dungeon_context *ctx, int x, int y, int z);
#endif /* SYSTEM4_DUNGEON_MAP_H */
+35
View File
@@ -0,0 +1,35 @@
/* Copyright (C) 2021 kichikuou <KichikuouChrome@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
#ifndef SYSTEM4_MTRAND43_H
#define SYSTEM4_MTRAND43_H
#include <stddef.h>
#include <stdint.h>
#define MTRAND43_STATE_SIZE 4
// Mersenne Twister engine with N=4, M=3
struct mtrand43 {
uint32_t st[MTRAND43_STATE_SIZE];
int i;
};
void mtrand43_init(struct mtrand43 *mt, uint32_t seed);
uint32_t mtrand43_genrand(struct mtrand43 *mt);
float mtrand43_genfloat(struct mtrand43 *mt);
#endif /* SYSTEM4_MTRAND43_H */
+18 -2
View File
@@ -20,16 +20,32 @@
#include <cglm/cglm.h>
#include "gfx/gl.h"
struct texture;
struct dgn_cell;
struct dtx;
struct polyobj;
struct dungeon_renderer;
struct dungeon_renderer *dungeon_renderer_create(enum draw_dungeon_version version, struct dtx *dtx, GLuint *event_textures, int nr_event_textures, struct polyobj *po);
struct drawfield_character {
vec3 pos;
int sprite;
int rows;
int cols;
int cg_index;
bool show;
};
struct dungeon_renderer *dungeon_renderer_create(enum draw_dungeon_version version, int num, struct dtx *dtx, GLuint *event_textures, int nr_event_textures, struct polyobj *po);
void dungeon_renderer_free(struct dungeon_renderer *r);
void dungeon_renderer_render(struct dungeon_renderer *r, struct dgn_cell **cells, int nr_cells, mat4 view_transform, mat4 proj_transform);
void dungeon_renderer_render(struct dungeon_renderer *r, struct dgn_cell **cells, int nr_cells, struct drawfield_character *characters, mat4 view_transform, mat4 proj_transform);
void dungeon_renderer_enable_event_markers(struct dungeon_renderer *r, bool enable);
bool dungeon_renderer_event_markers_enabled(struct dungeon_renderer *r);
bool dungeon_renderer_is_floor_opaque(struct dungeon_renderer *r, struct dgn_cell *cell);
void dungeon_renderer_run_post_processing(struct dungeon_renderer *r, struct texture *src, struct texture *dst);
void dungeon_renderer_set_raster_scroll(struct dungeon_renderer *r, int type);
void dungeon_renderer_set_raster_amp(struct dungeon_renderer *r, float amp);
void dungeon_renderer_enable_lightmap(struct dungeon_renderer *r, bool enable);
bool dungeon_renderer_get_draw_obj_flag(struct dungeon_renderer *r, int type);
void dungeon_renderer_set_draw_obj_flag(struct dungeon_renderer *r, int type, bool flag);
#endif /* SYSTEM4_DUNGEON_RENDERER_H */
+2 -1
View File
@@ -19,10 +19,11 @@
#include <cglm/types.h>
enum draw_dungeon_version;
struct dtx;
struct skybox;
struct skybox *skybox_create(struct dtx *dtx);
struct skybox *skybox_create(enum draw_dungeon_version version, struct dtx *dtx);
void skybox_free(struct skybox *s);
void skybox_render(struct skybox *s, const mat4 view_transform, const mat4 proj_transform);
+9
View File
@@ -17,6 +17,8 @@
#ifndef SYSTEM4_EFFECT_H
#define SYSTEM4_EFFECT_H
struct texture;
enum effect {
EFFECT_CROSSFADE = 1,
EFFECT_FADEOUT = 2,
@@ -70,9 +72,16 @@ enum effect {
EFFECT_BLUR_FADEOUT = 50,
EFFECT_BLUR_CROSSFADE = 51,
EFFECT_2ROT_ZOOM_BLEND_BLUR = 52,
EFFECT_VWAVE_SCROLL_CROSSFADE = 55,
EFFECT_VWAVE_CROSSFADE = 60,
NR_EFFECTS
};
extern const char *effect_names[NR_EFFECTS];
int effect_init(enum effect type);
void effect_update_texture(int type, struct texture *dst, struct texture *old, struct texture *new, float rate);
int effect_update(float rate);
int effect_fini(void);
#endif /* SYSTEM4_EFFECT_H */
+34 -2
View File
@@ -68,6 +68,7 @@ struct font {
float (*get_actual_size_round_down)(struct font *font, float size);
bool (*get_glyph)(struct font_size *size, struct glyph *dst, uint32_t code, enum font_weight weight);
float (*size_char)(struct font_size *size, uint32_t code);
float (*size_char_kerning)(struct font_size *size, uint32_t code, uint32_t code_next);
};
struct text_style {
@@ -89,6 +90,27 @@ struct text_style {
struct font_size *font_size;
};
enum text_render_mode {
RENDER_COPY,
RENDER_BLENDED,
RENDER_PMAP,
RENDER_AMAP,
};
struct text_render_metrics {
float x;
int y;
SDL_Color color;
enum font_weight weight;
float edge_width;
float scale_x;
float space_scale_x;
float font_spacing;
float edge_spacing;
enum text_render_mode mode;
struct font_size *font_size;
};
static inline float text_style_edge_width(struct text_style *ts)
{
return max(max(ts->edge_up, ts->edge_down), max(ts->edge_left, ts->edge_right));
@@ -132,14 +154,24 @@ int gfx_get_font_space(void);
SDL_Color gfx_get_font_color(void);
void gfx_set_font_name(const char *name);
int gfx_render_text(Texture *dst, float x, int y, char *msg, struct text_style *ts);
struct font_size *gfx_font_get_size(unsigned face, float size);
enum font_weight gfx_int_to_font_weight(int weight);
float _gfx_render_text(Texture *dst, char *msg, struct text_render_metrics *tm);
int gfx_render_text(Texture *dst, float x, int y, char *msg, struct text_style *ts, bool blend);
float gfx_render_textf(Texture *dst, float x, int y, char *msg, struct text_style *ts, bool blend);
void gfx_render_dash_text(Texture *dst, struct text_style *ts);
void gfx_draw_text_to_amap(Texture *dst, int x, int y, char *text);
void gfx_draw_text_to_pmap(Texture *dst, int x, int y, char *text);
float gfx_size_char_unstyled(struct text_style *ts, const char *ch);
float gfx_size_char(struct text_style *ts, const char *ch);
float gfx_size_text(struct text_style *ts, const char *text);
float gfx_get_actual_font_size(unsigned face, float size);
float gfx_get_actual_font_size_round_down(unsigned face, float size);
void gfx_print_text_style(struct text_style *style, int indent);
static inline float text_style_height(struct text_style *ts)
{
return ts->size + ceilf(ts->bold_width)*2 + ts->edge_up + ts->edge_down;
}
#endif /* SYSTEM4_FONT_H */
+36 -14
View File
@@ -36,11 +36,7 @@ enum draw_method {
typedef struct texture {
GLuint handle;
mat4 world_transform;
int w, h;
bool has_alpha;
int alpha_mod;
enum draw_method draw_method;
} Texture;
struct gfx_render_job;
@@ -51,38 +47,59 @@ typedef struct shader {
GLuint world_transform;
GLuint view_transform;
GLuint texture;
GLuint vertex;
GLuint alpha_mod;
GLuint vertex_pos;
GLuint vertex_uv;
void (*prepare)(struct gfx_render_job *, void *);
} Shader;
enum gfx_shape {
GFX_RECTANGLE,
GFX_LINE,
GFX_QUADRILATERAL,
};
struct gfx_render_job {
struct shader *shader;
enum gfx_shape shape;
GLuint texture;
GLfloat *world_transform;
GLfloat *view_transform;
void *data;
};
struct gfx_vertex {
GLfloat x, y, z, w;
GLfloat u, v;
};
int gfx_init(void);
void gfx_fini(void);
Texture *gfx_main_surface(void);
void gfx_set_window_logical_size(int w, int h);
bool gfx_set_fullscreen(bool enable);
bool gfx_is_fullscreen(void);
void gfx_toggle_fullscreen(void);
void gfx_update_screen_scale(void);
void gfx_set_wait_vsync(bool wait);
float gfx_get_frame_rate(void);
void gfx_load_shader(struct shader *dst, const char *vertex_shader_path, const char *fragment_shader_path);
GLuint gfx_load_shader_file(const char *path, GLenum type);
GLuint gfx_load_shader_file(const char *path, GLenum type, const char *defines);
// rendering
void gfx_set_clear_color(int r, int g, int b, int a);
void gfx_set_view_offset(int x, int y);
void gfx_clear(void);
void gfx_swap(void);
void gfx_set_view(struct texture *t);
void gfx_reset_view(void);
void gfx_prepare_job(struct gfx_render_job *job);
void gfx_run_job(struct gfx_render_job *job);
void gfx_render(struct gfx_render_job *job);
void _gfx_render_texture(struct shader *s, struct texture *t, Rectangle *r, void *data);
void gfx_render_texture(struct texture *t, Rectangle *r);
void gfx_render_quadrilateral(struct texture *t, struct gfx_vertex vertices[4]);
// texture management
void gfx_init_texture_blank(struct texture *t, int w, int h);
@@ -92,6 +109,7 @@ void gfx_init_texture_rgb(struct texture *t, int w, int h, SDL_Color color);
void gfx_init_texture_with_pixels(struct texture *t, int w, int h, void *pixels);
void gfx_init_texture_amap(struct texture *t, int w, int h, uint8_t *amap, SDL_Color color);
void gfx_init_texture_rmap(struct texture *t, int w, int h, uint8_t *rmap);
void gfx_update_texture_with_pixels(struct texture *t, void *pixels);
void gfx_copy_main_surface(struct texture *dst);
void gfx_delete_texture(struct texture *t);
GLuint gfx_set_framebuffer(GLenum target, Texture *t, int x, int y, int w, int h);
@@ -143,13 +161,17 @@ void gfx_bright_dest_only(Texture *dst, int x, int y, int w, int h, int rate);
void gfx_copy_stretch(struct texture *dst, int dx, int dy, int dw, int dh, struct texture *src, int sx, int sy, int sw, int sh);
void gfx_copy_stretch_amap(struct texture *dst, int dx, int dy, int dw, int dh, struct texture *src, int sx, int sy, int sw, int sh);
void gfx_copy_stretch_blend(struct texture *dst, int dx, int dy, int dw, int dh, struct texture *src, int sx, int sy, int sw, int sh, int a);
void gfx_copy_stretch_blend_screen(struct texture *dst, int dx, int dy, int dw, int dh, struct texture *src, int sx, int sy, int sw, int sh);
void gfx_copy_stretch_blend_amap(struct texture *dst, int dx, int dy, int dw, int dh, struct texture *src, int sx, int sy, int sw, int sh);
void gfx_copy_stretch_blend_amap_alpha(struct texture *dst, int dx, int dy, int dw, int dh, struct texture *src, int sx, int sy, int sw, int sh, int a);
void gfx_copy_rot_zoom(Texture *dst, Texture *src, int sx, int sy, int w, int h, float rotate, float mag);
void gfx_copy_rot_zoom_amap(Texture *dst, Texture *src, int sx, int sy, int w, int h, float rotate, float mag);
void gfx_copy_rot_zoom_use_amap(Texture *dst, Texture *src, int sx, int sy, int w, int h, float rotate, float mag);
void gfx_copy_rot_zoom2(Texture *dst, float cx, float cy, Texture *src, float scx, float scy, float rot, float mag);
void gfx_copy_reverse_LR(Texture *dst, int dx, int dy, Texture *src, int sx, int sy, int w, int h);
void gfx_copy_reverse_UD(Texture *dst, int dx, int dy, Texture *src, int sx, int sy, int w, int h);
void gfx_copy_reverse_amap_LR(Texture *dst, int dx, int dy, Texture *src, int sx, int sy, int w, int h);
void gfx_copy_reverse_LR_with_alpha_map(Texture *dst, int dx, int dy, Texture *src, int sx, int sy, int w, int h);
void gfx_copy_rotate_y(Texture *dst, Texture *front, Texture *back, int sx, int sy, int w, int h, float rot, float mag);
void gfx_copy_rotate_y_use_amap(Texture *dst, Texture *front, Texture *back, int sx, int sy, int w, int h, float rot, float mag);
void gfx_copy_rotate_x(Texture *dst, Texture *front, Texture *back, int sx, int sy, int w, int h, float rot, float mag);
@@ -161,14 +183,14 @@ void gfx_copy_amap_height_blur(Texture *dst, int dx, int dy, Texture *src, int s
void gfx_copy_with_alpha_map(Texture *dst, int dx, int dy, Texture *src, int sx, int sy, int w, int h);
void gfx_fill_with_alpha(Texture *dst, int x, int y, int w, int h, int r, int g, int b, int a);
void gfx_copy_stretch_with_alpha_map(Texture *dst, int dx, int dy, int dw, int dh, Texture *src, int sx, int sy, int sw, int sh);
void gfx_draw_glyph(Texture *dst, float dx, int dy, Texture *glyph, SDL_Color color, float scale_x, float bold_width);
void gfx_copy_grayscale(Texture *dst, int dx, int dy, Texture *src, int sx, int sy, int w, int h);
void gfx_copy_grayscale_with_alpha_map(Texture *dst, int dx, int dy, Texture *src, int sx, int sy, int w, int h);
void gfx_copy_grayscale_reverse_LR_with_alpha_map(Texture *dst, int dx, int dy, Texture *src, int sx, int sy, int w, int h);
void gfx_draw_line(Texture *dst, int x0, int y0, int x1, int y1, int r, int g, int b);
void gfx_draw_line_to_amap(Texture *dst, int x0, int y0, int x1, int y1, int a);
void gfx_draw_glyph(Texture *dst, float dx, int dy, Texture *glyph, SDL_Color color, float scale_x, float bold_width, bool blend);
void gfx_draw_glyph_to_pmap(Texture *dst, float dx, int dy, Texture *glyph, Rectangle glyph_pos, SDL_Color color, float scale_x);
void gfx_draw_glyph_to_amap(Texture *dst, float dx, int dy, Texture *glyph, Rectangle glyph_pos, float scale_x);
// debug printing
void gfx_print_color(SDL_Color *c);
void gfx_print_rectangle(Rectangle *r);
void gfx_print_point(Point *p);
void gfx_print_texture(struct texture *t, int indent);
void gfx_draw_quadrilateral(Texture *dst, Texture *src, struct gfx_vertex vertices[4]);
#endif /* SYSTEM4_SDL_CORE_H */
+3 -1
View File
@@ -31,7 +31,9 @@ struct sdl_private {
SDL_GLContext context;
GLuint vao;
GLuint vbo;
GLuint ibo;
GLuint quad_vbo;
GLuint rect_ibo;
GLuint line_ibo;
} gl;
int w, h;
SDL_Rect viewport;
+6
View File
@@ -56,4 +56,10 @@ typedef SDL_Rect Rectangle;
0, 0, 1, -1, \
0, 0, 0, 1)
#define WORLD_TRANSFORM(w, h, x, y) \
MAT4(w, 0, 0, x, \
0, h, 0, y, \
0, 0, 1, 0, \
0, 0, 0, 1)
#endif /* SYSTEM4_GRAPHICS_H */
+26
View File
@@ -0,0 +1,26 @@
/* Copyright (C) 2025 Nunuhara Cabbage <nunuhara@haniwa.technology>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
#ifndef SYSTEM4_ICON_H
#define SYSTEM4_ICON_H
#ifdef __ANDROID__
#define icon_init()
#else
void icon_init(void);
#endif
#endif /* SYSTEM4_ICON_H */
+10 -2
View File
@@ -17,14 +17,22 @@
#ifndef SYSTEM4_ID_POOL_H
#define SYSTEM4_ID_POOL_H
// A reasonable base value for pointer-based handles.
#define ID_POOL_HANDLE_BASE 0x100000
struct id_pool {
void **slots;
int nr_slots;
int base;
};
void id_pool_init(struct id_pool *pool);
void id_pool_release(struct id_pool *pool, int id);
void id_pool_init(struct id_pool *pool, int base);
void id_pool_delete(struct id_pool *pool);
void *id_pool_release(struct id_pool *pool, int id);
int id_pool_count(struct id_pool *pool);
int id_pool_get_unused(struct id_pool *pool);
int id_pool_get_first(struct id_pool *pool);
int id_pool_get_next(struct id_pool *pool, int id);
void *id_pool_get(struct id_pool *pool, int id);
void *id_pool_set(struct id_pool *pool, int id, void *data);
+4 -1
View File
@@ -137,9 +137,10 @@ enum sact_keycode {
extern bool mouse_focus;
extern bool keyboard_focus;
void handle_window_events(void);
void handle_events(void);
bool key_is_down(enum sact_keycode code);
void key_clear_flag(void);
void key_clear_flag(bool no_ctrl);
bool joy_key_is_down(uint8_t code);
void joy_clear_flag(void);
bool joy_get_stick_status(int controller, int type, float *deg, float *pow);
@@ -152,5 +153,7 @@ void register_input_handler(void(*handler)(const char*));
void clear_input_handler(void);
void register_editing_handler(void(*handler)(const char*, int, int));
void clear_editing_handler(void);
void register_key_handler(void(*handler)(int));
void clear_key_handler(void);
#endif /* SYSTEM4_INPUT_H */
+90
View File
@@ -0,0 +1,90 @@
/* Copyright (C) 2023 Nunuhara Cabbage <nunuhara@haniwa.technology>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
#ifndef XSYSTEM4_JSON_H
#define XSYSTEM4_JSON_H
#include <stdbool.h>
#include "gfx/types.h"
typedef struct cJSON cJSON;
struct texture;
struct text_style;
struct sact_sprite;
struct sprite;
cJSON *num2_to_json(double a, double b);
cJSON *num2_to_json_object(const char *a_name, double a, const char *b_name, double b);
cJSON *num3_to_json(double a, double b, double c);
cJSON *num3_to_json_object(const char *a_name, double a, const char *b_name, double b,
const char *c_name, double c);
cJSON *num4_to_json(double a, double b, double c, double d);
cJSON *num4_to_json_object(const char *a_name, double a, const char *b_name, double b,
const char *c_name, double c, const char *d_name, double d);
cJSON *texture_to_json(struct texture *t, bool verbose);
cJSON *texture_to_json_with_pixels(struct texture *t);
cJSON *text_style_to_json(struct text_style *ts, bool verbose);
cJSON *scene_sprite_to_json(struct sprite *sp, bool verbose);
cJSON *sprite_to_json(struct sact_sprite *sp, bool verbose);
static inline cJSON *xy_to_json(double x, double y, bool verbose)
{
if (!verbose)
return num2_to_json(x, y);
return num2_to_json_object("x", x, "y", y);
}
static inline cJSON *wh_to_json(double w, double h, bool verbose)
{
if (!verbose)
return num2_to_json(w, h);
return num2_to_json_object("w", w, "h", h);
}
static inline cJSON *point_to_json(Point *p, bool verbose)
{
return xy_to_json(p->x, p->y, verbose);
}
static inline cJSON *rectangle_to_json(Rectangle *r, bool verbose)
{
if (!verbose)
return num4_to_json(r->x, r->y, r->w, r->h);
return num4_to_json_object("x", r->x, "y", r->y, "w", r->w, "h", r->h);
}
static inline cJSON *color_to_json(Color *c, bool verbose)
{
if (!verbose)
return num4_to_json(c->r, c->g, c->b, c->a);
return num4_to_json_object("r", c->r, "g", c->g, "b", c->b, "a", c->a);
}
static inline cJSON *vec3_point_to_json(vec3 v, bool verbose)
{
if (!verbose)
return num3_to_json(v[0], v[1], v[2]);
return num3_to_json_object("x", v[0], "y", v[1], "z", v[2]);
}
static inline cJSON *vec3_color_to_json(vec3 v, bool verbose)
{
if (!verbose)
return num3_to_json(v[0], v[1], v[2]);
return num3_to_json_object("r", v[0], "g", v[1], "b", v[2]);
}
#endif
-76
View File
@@ -1,76 +0,0 @@
/* Copyright (C) 2019 Nunuhara Cabbage <nunuhara@haniwa.technology>
*
* Based on code from xsystem35
* Copyright (C) 1997-1998 Masaki Chikama (Wren) <chikama@kasumi.ipl.mech.nagoya-u.ac.jp>
* 1998- <masaki-c@is.aist-nara.ac.jp>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
#ifndef LITTLE_ENDIAN_H
#define LITTLE_ENDIAN_H
#include <stdint.h>
// no need to decode on byte-addressable, little-endian arch
#if defined(__i386__) || defined(__x86_64__)
#define LittleEndian_getDW(b, i) (*((int32_t*)((uint8_t*)(b)+(i))))
#define LittleEndian_getW(b, i) (*((int16_t*)((uint8_t*)(b)+(i))))
#else
static inline int32_t LittleEndian_getDW(const uint8_t *b, int i)
{
int c0, c1, c2, c3;
int d0, d1;
c0 = *(b + i + 0);
c1 = *(b + i + 1);
c2 = *(b + i + 2);
c3 = *(b + i + 3);
d0 = c0 + (c1 << 8);
d1 = c2 + (c3 << 8);
return d0 + (d1 << 16);
}
static inline int16_t LittleEndian_getW(const uint8_t *b, int i)
{
int c0, c1;
c0 = *(b + i + 0);
c1 = *(b + i + 1);
return c0 + (c1 << 8);
}
#endif /* defined(__i386__) || defined(__x86_64__) */
static inline int32_t LittleEndian_get3B(const uint8_t *b, int i)
{
int c0, c1, c2;
c0 = *(b + i + 0);
c1 = *(b + i + 1);
c2 = *(b + i + 2);
return c0 + (c1 << 8) + (c2 << 16);
}
static inline void LittleEndian_putDW(uint8_t *dst, int i, uint32_t dword)
{
dst[i] = (uint8_t)(dword);
dst[i+1] = (uint8_t)(dword >> 8);
dst[i+2] = (uint8_t)(dword >> 16);
dst[i+3] = (uint8_t)(dword >> 24);
}
static inline void LittleEndian_putW(uint8_t *dst, int i, uint16_t word)
{
dst[i] = word & 0xFF;
dst[i+1] = word >> 8;
}
#endif /* LITTLE_ENDIAN_H */
+10 -2
View File
@@ -49,13 +49,20 @@ int mixer_set_volume(int n, int volume);
int mixer_get_mute(int n, int *mute);
int mixer_set_mute(int n, int mute);
struct sts_mixer_stream_t;
int mixer_stream_play(struct sts_mixer_stream_t* stream, int volume);
bool mixer_stream_set_volume(int voice, int volume);
void mixer_stream_stop(int voice);
struct archive_data;
struct channel;
enum asset_type;
struct channel *channel_open(enum asset_type type, int no);
// Takes ownership of dfile.
struct channel *channel_open_archive_data(struct archive_data *dfile);
// Takes ownership of dfile. Metadata is not applied if metadata_no is negative.
struct channel *channel_open_archive_data(struct archive_data *dfile,
enum asset_type type, int metadata_no);
struct channel *channel_open_file(const char *path);
void channel_close(struct channel *ch);
int channel_play(struct channel *ch);
int channel_stop(struct channel *ch);
@@ -78,5 +85,6 @@ int channel_seek(struct channel *ch, int pos);
int channel_reverse_LR(struct channel *ch);
int channel_get_volume(struct channel *ch);
int channel_get_time_length(struct channel *ch);
int channel_get_data_no(struct channel *ch);
#endif /* SYSTEM4_MIXER_H */
+31
View File
@@ -0,0 +1,31 @@
/* Copyright (C) 2023 kichikuou <KichikuouChrome@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
#ifndef SYSTEM4_MOVIE_H
#define SYSTEM4_MOVIE_H
struct movie_context;
struct sact_sprite;
struct movie_context *movie_load(const char *filename);
void movie_free(struct movie_context *mc);
bool movie_play(struct movie_context *mc);
bool movie_draw(struct movie_context *mc, struct sact_sprite *sprite);
bool movie_is_end(struct movie_context *mc);
int movie_get_position(struct movie_context *mc);
bool movie_set_volume(struct movie_context *mc, int volume /* 0-100 */);
#endif /* SYSTEM4_MOVIE_H */
+45
View File
@@ -0,0 +1,45 @@
/*
* Copyright (C) 2021 kichikuou <KichikuouChrome@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#ifndef __MSGQUEUE_H__
#define __MSGQUEUE_H__
#include <stdbool.h>
#include <SDL_mutex.h>
struct msgq_elem;
struct msgq {
SDL_mutex *mutex;
SDL_cond *cond_nonempty;
struct msgq_elem *head;
struct msgq_elem *last;
};
static inline bool msgq_isempty(struct msgq *q) {
return !q->head;
}
struct msgq *msgq_new(void);
void msgq_free(struct msgq *q);
void msgq_enqueue(struct msgq *q, void *msg);
void *msgq_dequeue(struct msgq *q);
void *msgq_dequeue_timeout(struct msgq *q, uint32_t timeout_ms);
#endif // __MSGQUEUE_H__
+156 -28
View File
@@ -23,7 +23,9 @@ struct page;
struct string;
// parts.c
void PE_enable_multi_controller(void);
bool PE_Init(void);
void PE_Reset(void);
void PE_Update(int passed_time, bool message_window_show);
void PE_UpdateComponent(int passed_time);
void PE_UpdateParts(int passed_time, bool is_skip, bool message_window_show);
@@ -31,8 +33,11 @@ void PE_SetDelegateIndex(int parts_no, int delegate_index);
int PE_GetDelegateIndex(int parts_no);
bool PE_SetPartsCG(int parts_no, struct string *cg_name, int sprite_deform, int state);
bool PE_SetPartsCG_by_index(int parts_no, int cg_no, int sprite_deform, int state);
bool PE_SetPartsCG_by_string_index(int parts_no, struct string *cg_no,
int sprite_deform, int state);
void PE_GetPartsCGName(int parts_no, struct string **cg_name, int state);
bool PE_SetPartsCGSurfaceArea(int parts_no, int x, int y, int w, int h, int state);
void PE_GetPartsCGSurfaceArea(int parts_no, int *x, int *y, int *w, int *h, int state);
int PE_GetPartsCGNumber(int parts_no, int state);
bool PE_SetLoopCG_by_index(int parts_no, int cg_no, int nr_frames, int frame_time, int state);
bool PE_SetLoopCG(int parts_no, struct string *cg_name, int start_no, int nr_frames,
@@ -40,12 +45,15 @@ bool PE_SetLoopCG(int parts_no, struct string *cg_name, int start_no, int nr_fra
bool PE_SetLoopCGSurfaceArea(int parts_no, int x, int y, int w, int h, int state);
bool PE_SetHGaugeCG(int parts_no, struct string *cg_name, int state);
bool PE_SetHGaugeCG_by_index(int parts_no, int cg_no, int state);
bool PE_SetHGaugeRate(int parts_no, int numerator, int denominator, int state);
bool PE_SetHGaugeRate(int parts_no, float numerator, float denominator, int state);
bool PE_SetHGaugeRate_int(int parts_no, int numerator, int denominator, int state);
bool PE_SetHGaugeSurfaceArea(int parts_no, int x, int y, int w, int h, int state);
bool PE_SetVGaugeCG(int parts_no, struct string *cg_name, int state);
bool PE_SetVGaugeCG_by_index(int parts_no, int cg_no, int state);
bool PE_SetVGaugeRate(int parts_no, int numerator, int denominator, int state);
bool PE_SetVGaugeRate(int parts_no, float numerator, float denominator, int state);
bool PE_SetVGaugeRate_int(int parts_no, int numerator, int denominator, int state);
bool PE_SetVGaugeSurfaceArea(int parts_no, int x, int y, int w, int h, int state);
bool PE_SetNumeralCG(int parts_no, struct string *cg_name, int state);
bool PE_SetNumeralCG_by_index(int parts_no, int cg_no, int state);
bool PE_SetNumeralLinkedCGNumberWidthWidthList_by_index(int parts_no, int cg_no,
int w0, int w1, int w2, int w3, int w4, int w5, int w6, int w7, int w8,
@@ -58,52 +66,80 @@ bool PE_SetNumeralShowComma(int parts_no, bool show_comma, int state);
bool PE_SetNumeralSpace(int parts_no, int space, int state);
bool PE_SetNumeralLength(int parts_no, int length, int state);
bool PE_SetNumeralSurfaceArea(int parts_no, int x, int y, int w, int h, int state);
bool PE_SetPartsRectangleDetectionSize(int PartsNumber, int Width, int Height, int State);
bool PE_SetPartsFlash(int PartsNumber, struct string *pIFlashFileName, int State);
bool PE_IsPartsFlashEnd(int PartsNumber, int State);
int PE_GetPartsFlashCurrentFrameNumber(int PartsNumber, int State);
bool PE_BackPartsFlashBeginFrame(int PartsNumber, int State);
bool PE_StepPartsFlashFinalFrame(int PartsNumber, int State);
void PE_ReleaseParts(int parts_no);
void PE_ReleaseAllParts(void);
void PE_ReleaseAllPartsWithoutSystem(void);
void PE_ReleaseAllWithoutSystem(struct page **erase_number_list);
void PE_SetPos(int parts_no, int x, int y);
void PE_SetZ(int parts_no, int z);
void PE_SetShow(int parts_no, bool show);
void PE_SetAlpha(int parts_no, int alpha);
void PE_SetPartsDrawFilter(int PartsNumber, int DrawFilter);
void PE_SetAddColor(int parts_no, int r, int g, int b);
void PE_SetMultiplyColor(int parts_no, int r, int g, int b);
int PE_GetPartsX(int parts_no);
int PE_GetPartsY(int parts_no);
void PE_SetZ(int parts_no, int z);
int PE_GetPartsZ(int parts_no);
void PE_SetShow(int parts_no, bool show);
bool PE_GetPartsShow(int parts_no);
void PE_SetAlpha(int parts_no, int alpha);
int PE_GetPartsAlpha(int parts_no);
void PE_SetPartsDrawFilter(int parts_no, int draw_filter);
int PE_GetPartsDrawFilter(int parts_no);
void PE_SetAddColor(int parts_no, int r, int g, int b);
void PE_GetAddColor(int parts_no, int *r, int *g, int *b);
void PE_SetMultiplyColor(int parts_no, int r, int g, int b);
void PE_GetMultiplyColor(int parts_no, int *r, int *g, int *b);
int PE_GetPartsWidth(int parts_no, int state);
int PE_GetPartsHeight(int parts_no, int state);
int PE_GetPartsUpperLeftPosX(int parts_no, int state);
int PE_GetPartsUpperLeftPosY(int parts_no, int state);
int PE_GetPartsHeight(int parts_no, int state);
bool PE_GetPartsShow(int parts_no);
int PE_GetPartsAlpha(int parts_no);
void PE_SetPartsOriginPosMode(int parts_no, int origin_pos_mode);
int PE_GetPartsOriginPosMode(int parts_no);
void PE_SetParentPartsNumber(int parts_no, int parent_parts_no);
bool PE_SetPartsGroupNumber(int PartsNumber, int GroupNumber);
int PE_GetParentPartsNumber(int parts_no);
bool PE_SetPartsGroupNumber(int parts_no, int group_no);
void PE_SetPartsMessageWindowShowLink(int parts_no, bool message_window_show_link);
bool PE_GetPartsMessageWindowShowLink(int PartsNumber);
bool PE_GetPartsMessageWindowShowLink(int parts_no);
void PE_SetSpeedupRateByMessageSkip(int parts_no, int rate);
int PE_GetSpeedupRateByMessageSkip(int parts_no);
void PE_SetPartsMagX(int parts_no, float scale_x);
float PE_GetPartsMagX(int parts_no);
void PE_SetPartsMagY(int parts_no, float scale_y);
float PE_GetPartsMagY(int parts_no);
void PE_SetPartsRotateX(int parts_no, float rot_x);
void PE_SetPartsRotateY(int parts_no, float rot_y);
void PE_SetPartsRotateZ(int parts_no, float rot_z);
void PE_SetPartsAlphaClipperPartsNumber(int PartsNumber, int AlphaClipperPartsNumber);
void PE_SetPartsPixelDecide(int PartsNumber, bool PixelDecide);
bool PE_SetThumbnailReductionSize(int ReductionSize);
float PE_GetPartsRotateZ(int parts_no);
void PE_SetPartsAlphaClipperPartsNumber(int parts_no, int alpha_clipper_parts_no);
void PE_SetPartsPixelDecide(int PartsNumber, bool pixel_decide);
bool PE_SetThumbnailReductionSize(int reduction_size);
bool PE_SetThumbnailMode(bool Mode);
void PE_SetComponentType(int parts_no, int type, int state);
int PE_GetComponentType(int parts_no, int state);
void PE_SetInputState(int parts_no, int state);
int PE_GetInputState(int parts_no);
bool PE_SetPartsRectangleDetectionSize(int parts_no, int w, int h, int state);
bool PE_SetPartsCGDetectionSize(int parts_no, struct string *cg_name, int state);
bool PE_Save(struct page **buffer);
bool PE_SaveWithoutHideParts(struct page **buffer);
bool PE_Load(struct page **buffer);
int PE_AddController(int index);
void PE_RemoveController(struct page **erase_number_list, int index);
bool PE_CreateParts3DLayerPluginID(int parts_no, int state);
int PE_GetParts3DLayerPluginID(int parts_no, int state);
bool PE_ReleaseParts3DLayerPluginID(int parts_no, int state);
// GUIEngine
int PE_GetFreeNumber(void);
bool PE_IsExist(int parts_no);
// PartsFunc interface
void PE_set_active_controller(int controller_no);
int PE_get_active_controller(void);
int PE_get_system_controller(void);
int PE_get_nr_controllers(void);
void PE_parts_set_want_save(int parts_no, bool want_save);
bool PE_save_thumbnail(struct string *filename, int reduction_factor);
bool PE_init_parts_movie(int parts_no, int width, int height, int bg_r, int bg_g, int bg_b, int state);
int PE_get_movie_sprite(int parts_no, int state);
float PE_parts_get_absolute_x(int parts_no);
float PE_parts_get_absolute_y(int parts_no);
int PE_parts_get_absolute_z(int parts_no);
void PE_parts_set_lock_input_state(int parts_no, bool lock);
// construction.c
bool PE_AddCreateToPartsConstructionProcess(int parts_no, int w, int h, int state);
@@ -114,10 +150,16 @@ bool PE_AddFillToPartsConstructionProcess(int parts_no, int x, int y, int w, int
bool PE_AddFillAlphaColorToPartsConstructionProcess(int parts_no, int x, int y, int w, int h,
int r, int g, int b, int a, int state);
bool PE_AddFillAMapToPartsConstructionProcess(int parts_no, int x, int y, int w, int h, int a, int state);
bool PE_AddFillWithAlphaToPartsConstructionProcess(int parts_no, int x, int y, int w, int h,
int r, int g, int b, int a, int state);
bool PE_AddDrawRectToPartsConstructionProcess(int parts_no, int x, int y, int w, int h,
int r, int g, int b, int state);
bool PE_AddDrawCutCGToPartsConstructionProcess(int parts_no, struct string *cg_name,
int dx, int dy, int dw, int dh, int sx, int sy, int sw, int sh, int interp_type, int state);
bool PE_AddCopyCutCGToPartsConstructionProcess(int parts_no, struct string *cg_name,
int dx, int dy, int dw, int dh, int sx, int sy, int sw, int sh, int interp_type, int state);
bool PE_AddGrayFilterToPartsConstructionProcess(int parts_no, int x, int y, int w, int h,
bool full_size, int state);
bool PE_AddCopyTextToPartsConstructionProcess(int parts_no, int x, int y, struct string *text,
int type, int size, int r, int g, int b, float bold_weight,
int edge_r, int edge_g, int edge_b, float edge_weight,
@@ -127,15 +169,20 @@ bool PE_AddDrawTextToPartsConstructionProcess(int parts_no, int x, int y, struct
int edge_r, int edge_g, int edge_b, float edge_weight,
int char_space, int line_space, int state);
bool PE_BuildPartsConstructionProcess(int parts_no, int state);
bool PE_ClearPartsConstructionProcess(int parts_no, int state);
bool PE_SetPartsConstructionSurfaceArea(int parts_no, int x, int y, int w, int h, int state);
// input.c
void PE_UpdateInputState(int passed_time);
void PE_SetPassCursor(int parts_no, bool pass);
bool PE_GetPartsPassCursor(int parts_no);
void PE_SetClickable(int parts_no, bool clickable);
bool PE_GetPartsClickable(int parts_no);
void PE_SetPartsGroupDecideOnCursor(int GroupNumber, bool DecideOnCursor);
void PE_SetPartsGroupDecideClick(int GroupNumber, bool DecideClick);
void PE_SetDrag(int parts_no, bool enable);
void PE_SetPartsGroupDecideOnCursor(int group_no, bool decide_on_cursor);
void PE_SetPartsGroupDecideClick(int group_no, bool decide_click);
void PE_SetOnCursorShowLinkPartsNumber(int parts_no, int link_parts_no);
int PE_GetOnCursorShowLinkPartsNumber(int parts_no);
bool PE_SetPartsOnCursorSoundNumber(int parts_no, int sound_no);
bool PE_SetPartsClickSoundNumber(int parts_no, int sound_no);
bool PE_SetClickMissSoundNumber(int sound_no);
@@ -144,6 +191,19 @@ void PE_EndInput(void);
int PE_GetClickPartsNumber(void);
bool PE_IsCursorIn(int parts_no, int mouse_x, int mouse_y, int state);
// message.c
void PE_ReleaseMessage(void);
void PE_PopMessage(void);
int PE_GetMessageType(void);
int PE_GetMessagePartsNumber(void);
int PE_GetMessageDelegateIndex(void);
int PE_GetMessageVariableCount(void);
int PE_GetMessageVariableType(int index);
int PE_GetMessageVariableInt(int index);
float PE_GetMessageVariableFloat(int index);
bool PE_GetMessageVariableBool(int index);
void PE_GetMessageVariableString(int index, struct string **out);
// motion.c
void PE_AddMotionPos(int parts_no, int begin_x, int begin_y, int end_x, int end_y, int begin_t, int end_t);
void PE_AddMotionPos_curve(int parts_no, int begin_x, int begin_y, int end_x, int end_y,
@@ -152,27 +212,49 @@ void PE_AddMotionAlpha(int parts_no, int begin_a, int end_a, int begin_t, int en
void PE_AddMotionAlpha_curve(int parts_no, int begin_a, int end_a, int begin_t, int end_t,
struct string *curve_name);
void PE_AddMotionCG_by_index(int parts_no, int begin_cg_no, int nr_cg, int begin_t, int end_t);
void PE_AddMotionHGaugeRate(int parts_no, int begin_numerator, int begin_denominator,
int end_numerator, int end_denominator, int begin_t, int end_t);
void PE_AddMotionVGaugeRate(int parts_no, int begin_numerator, int begin_denominator,
int end_numerator, int end_denominator, int begin_t, int end_t);
void PE_AddMotionHGaugeRate(int parts_no, float begin_numerator, float begin_denominator,
float end_numerator, float end_denominator, int begin_t, int end_t);
void PE_AddMotionHGaugeRate_curve(int parts_no, float begin_numerator, float begin_denominator,
float end_numerator, float end_denominator, int begin_t, int end_t,
struct string *curve_name);
void PE_AddMotionVGaugeRate(int parts_no, float begin_numerator, float begin_denominator,
float end_numerator, float end_denominator, int begin_t, int end_t);
void PE_AddMotionVGaugeRate_curve(int parts_no, float begin_numerator, float begin_denominator,
float end_numerator, float end_denominator, int begin_t, int end_t,
struct string *curve_name);
void PE_AddMotionNumeralNumber(int parts_no, int begin_n, int end_n, int begin_t, int end_t);
void PE_AddMotionNumeralNumber_curve(int parts_no, int begin_n, int end_n, int begin_t,
int end_t, struct string *curve_name);
void PE_AddMotionMagX(int parts_no, float begin, float end, int begin_t, int end_t);
void PE_AddMotionMagX_curve(int parts_no, float begin, float end, int begin_t, int end_t,
struct string *curve_name);
void PE_AddMotionMagY(int parts_no, float begin, float end, int begin_t, int end_t);
void PE_AddMotionMagY_curve(int parts_no, float begin, float end, int begin_t, int end_t,
struct string *curve_name);
void PE_AddMotionRotateX(int parts_no, float begin, float end, int begin_t, int end_t);
void PE_AddMotionRotateX_curve(int parts_no, float begin, float end, int begin_t, int end_t,
struct string *curve_name);
void PE_AddMotionRotateY(int parts_no, float begin, float end, int begin_t, int end_t);
void PE_AddMotionRotateY_curve(int parts_no, float begin, float end, int begin_t, int end_t,
struct string *curve_name);
void PE_AddMotionRotateZ(int parts_no, float begin, float end, int begin_t, int end_t);
void PE_AddMotionRotateZ_curve(int parts_no, float begin, float end, int begin_t, int end_t,
struct string *curve_name);
void PE_AddMotionVibrationSize(int parts_no, int begin_w, int begin_h, int begin_t, int end_t);
void PE_AddMotionSound(int sound_no, int begin_t);
void PE_AddWholeMotionVibrationSize(int begin_w, int begin_h, int begin_t, int end_t);
void PE_BeginMotion(void);
void PE_EndMotion(void);
void PE_SetMotionTime(int t);
void PE_SeekEndMotion(void);
void PE_UpdateMotionTime(int time, bool skip);
bool PE_IsMotion(void);
int PE_GetMotionEndTime(void);
void PE_PauseMotion(bool pause);
// text.c
bool PE_SetText(int parts_no, struct string *text, int state);
struct string *PE_GetText(int parts_no, int state);
bool PE_AddPartsText(int parts_no, struct string *text, int state);
bool PE_SetPartsTextSurfaceArea(int parts_no, int x, int y, int w, int h, int state);
bool PE_SetFont(int parts_no, int type, int size, int r, int g, int b, float bold_weight, int edge_r, int edge_g, int edge_b, float edge_weight, int state);
@@ -185,4 +267,50 @@ bool PE_SetPartsFontEdgeWeight(int parts_no, float edge_weight, int state);
bool PE_SetTextCharSpace(int parts_no, int char_space, int state);
bool PE_SetTextLineSpace(int parts_no, int line_space, int state);
// flash.c
bool PE_ExistsFlashFile(struct string *flash_filename);
bool PE_SetPartsFlash(int parts_no, struct string *flash_filename, int state);
bool PE_IsPartsFlashEnd(int parts_no, int state);
int PE_GetPartsFlashCurrentFrameNumber(int parts_no, int state);
bool PE_BackPartsFlashBeginFrame(int parts_no, int state);
bool PE_StepPartsFlashFinalFrame(int parts_no, int state);
bool PE_SetPartsFlashAndStop(int parts_no, struct string *flash_filename, int state);
bool PE_StopPartsFlash(int parts_no, int state);
bool PE_StartPartsFlash(int parts_no, int state);
bool PE_GoFramePartsFlash(int parts_no, int frame_no, int state);
int PE_GetPartsFlashEndFrame(int parts_no, int state);
// flat.c
bool PE_ExistsFlatFile(struct string *filename);
bool PE_SetPartsFlat(int parts_no, struct string *filename, int state);
bool PE_IsPartsFlatEnd(int parts_no, int state);
int PE_GetPartsFlatCurrentFrameNumber(int parts_no, int state);
bool PE_BackPartsFlatBeginFrame(int parts_no, int state);
bool PE_StepPartsFlatFinalFrame(int parts_no, int state);
bool PE_SetPartsFlatSurfaceArea(int parts_no, int x, int y, int w, int h, int state);
bool PE_SetPartsFlatAndStop(int parts_no, struct string *filename, int state);
bool PE_StopPartsFlat(int parts_no, int state);
bool PE_StartPartsFlat(int parts_no, int state);
bool PE_GoFramePartsFlat(int parts_no, int frame_no, int state);
int PE_GetPartsFlatEndFrame(int parts_no, int state);
// layoutbox.c
void PE_SetLayoutBoxLayoutType(int parts_no, int type);
int PE_GetLayoutBoxLayoutType(int parts_no);
void PE_SetLayoutBoxReturn(int parts_no, bool return_flag, int return_size);
bool PE_IsLayoutBoxReturn(int parts_no);
int PE_GetLayoutBoxReturnSize(int parts_no);
void PE_SetLayoutBoxAlign(int parts_no, int align);
int PE_GetLayoutBoxAlign(int parts_no);
void PE_SetComponentMargin(int parts_no, int top, int bottom, int left, int right);
int PE_GetComponentMarginTop(int parts_no);
int PE_GetComponentMarginBottom(int parts_no);
int PE_GetComponentMarginLeft(int parts_no);
int PE_GetComponentMarginRight(int parts_no);
void PE_set_layoutbox_padding(int parts_no, int top, int bottom, int left, int right);
int PE_get_layoutbox_padding_top(int parts_no);
int PE_get_layoutbox_padding_bottom(int parts_no);
int PE_get_layoutbox_padding_left(int parts_no);
int PE_get_layoutbox_padding_right(int parts_no);
#endif /* SYSTEM4_PARTS_H */
+4361
View File
File diff suppressed because it is too large Load Diff
+6 -1
View File
@@ -17,12 +17,17 @@
#ifndef SYSTEM4_PLUGIN_H
#define SYSTEM4_PLUGIN_H
#include <stdbool.h>
typedef struct cJSON cJSON;
struct sact_sprite;
struct draw_plugin {
const char *name;
void (*free)(struct draw_plugin *);
void (*update)(struct sact_sprite *);
void (*debug_print)(struct sact_sprite *, int indent);
void (*render)(struct sact_sprite *);
cJSON *(*to_json)(struct sact_sprite *, bool);
};
#endif /* SYSTEM4_PLUGIN_H */
+114 -5
View File
@@ -19,13 +19,24 @@
#define RE_NR_BACK_CGS 16
#define RE_NR_INSTANCE_TARGETS 2
#define RE_NR_LIGHT_PARAMS 41 // .lit parameter count
#include <cglm/types.h>
#include "gfx/gfx.h"
#include "plugin.h"
typedef struct cJSON cJSON;
struct hash_table;
struct billboard_texture;
struct iarray_reader;
struct iarray_writer;
enum RE_plugin_version {
RE_REIGN_PLUGIN, // Toushin Toshi 3
RE_TAPIR_PLUGIN, // Rance Quest
RE_SEAL_PLUGIN, // Rance 9
};
enum RE_instance_type {
RE_ITYPE_UNINITIALIZED = 0,
@@ -35,6 +46,7 @@ enum RE_instance_type {
RE_ITYPE_DIRECTIONAL_LIGHT = 4,
RE_ITYPE_SPECULAR_LIGHT = 6,
RE_ITYPE_PARTICLE_EFFECT = 8,
RE_ITYPE_PATH_LINE = 9,
};
enum RE_motion_state {
@@ -49,12 +61,41 @@ enum RE_fog_type {
RE_FOG_LIGHT_SCATTERING = 2,
};
// Indices into light_params. Vector entries name their first component.
enum seal_light_param {
SEAL_LP_TONEMAP_EXPOSURE_BIAS = 0,
SEAL_LP_TONEMAP_WHITE_POINT = 1,
SEAL_LP_TONEMAP_A = 2,
SEAL_LP_TONEMAP_B = 3,
SEAL_LP_TONEMAP_C = 4,
SEAL_LP_TONEMAP_D = 5,
SEAL_LP_TONEMAP_E = 6,
SEAL_LP_TONEMAP_F = 7,
SEAL_LP_HEMI_VEC = 8, // x,y,z
SEAL_LP_HEMI_SKY_COLOR = 11, // r,g,b
SEAL_LP_HEMI_MID_COLOR = 14, // r,g,b
SEAL_LP_HEMI_GROUND_COLOR = 17, // r,g,b
SEAL_LP_LS_BETA_R = 20,
SEAL_LP_LS_BETA_M = 21,
SEAL_LP_LS_G = 22,
SEAL_LP_LS_DISTANCE = 23,
SEAL_LP_LS_LIGHT_VEC = 24, // x,y,z
SEAL_LP_LS_LIGHT_COLOR = 27, // r,g,b
SEAL_LP_LS_SUN_COLOR = 30, // r,g,b
};
enum RE_draw_type {
RE_DRAW_TYPE_NORMAL = 0,
RE_DRAW_TYPE_ADDITIVE = 1,
RE_DRAW_TYPE_MAX = RE_DRAW_TYPE_ADDITIVE
};
enum RE_draw_options {
RE_DRAW_OPTION_EDGE = 0,
RE_DRAW_OPTION_LIGHTING = 1,
RE_DRAW_OPTION_MAX
};
struct RE_options {
int anti_aliasing;
int wait_vsync;
@@ -65,6 +106,12 @@ struct RE_camera {
vec3 pos;
float pitch, roll, yaw; // in degrees
float quake_pitch, quake_yaw;
// Per-frame full override from an 3de "camera" object. Cleared at the
// start of every RE_build_model tick and re-asserted by s3de_effect_update
// if any active camera object selects this frame.
bool override_active;
vec3 override_pos;
float override_pitch, override_yaw, override_roll;
};
struct RE_back_cg {
@@ -80,15 +127,17 @@ struct RE_back_cg {
struct RE_plugin {
struct draw_plugin plugin;
enum RE_plugin_version version;
int sprite;
int nr_instances;
struct RE_instance **instances;
struct archive *aar;
struct hash_table *model_cache;
struct hash_table *pae_cache;
struct hash_table *effect_cache;
struct RE_renderer *renderer;
struct RE_camera camera;
mat4 proj_transform;
int viewport_x, viewport_y, viewport_width, viewport_height;
struct RE_back_cg back_cg[RE_NR_BACK_CGS];
@@ -126,30 +175,47 @@ struct RE_plugin {
float post_effect_filter_y;
float post_effect_filter_cb;
float post_effect_filter_cr;
int draw_options[RE_DRAW_OPTION_MAX];
// TapirEngine
bool suspended;
// SealEngine
int mag_speed;
float light_params[RE_NR_LIGHT_PARAMS];
float edge_length;
float edge_reduction_rate;
vec3 edge_color;
};
struct RE_instance {
struct RE_plugin *plugin;
struct model *model;
struct particle_effect *effect;
struct s3de_effect *s3de_effect;
struct motion *motion;
struct motion *next_motion;
struct height_detector *height_detector;
enum RE_instance_type type;
struct string *name;
int target[RE_NR_INSTANCE_TARGETS];
vec3 pos;
float pitch, roll, yaw; // in degrees
vec3 scale;
float alpha;
float grayscale_rate;
bool draw;
bool draw_edge;
bool draw_shadow;
bool make_shadow;
float shadow_volume_bone_radius;
bool draw_bump;
float fps;
bool use_mag_speed;
bool motion_blend;
float motion_blend_rate;
vec3 diffuse; // color multiplier for meshes, light color for lights
vec3 ambient;
vec3 column_pos;
float column_height;
@@ -158,41 +224,69 @@ struct RE_instance {
// Billboards
enum RE_draw_type draw_type;
vec3 vertex_pos[4];
vec2 vertex_uv[4];
struct billboard_texture **billboard_frames;
int nr_billboard_frames;
// Lights
vec3 vec;
vec3 diffuse;
vec3 globe_diffuse;
float *light_params;
// Private
bool local_transform_needs_update;
mat4 local_transform;
mat3 normal_transform;
mat4 *bone_transforms; // model->nr_bones elements
mat3x4 *bone_transforms; // row-major, model->nr_bones elements
GLuint bone_transforms_ubo;
vec4 bounding_sphere;
struct RE_instance *shadow_volume_instance;
float z_from_camera;
int texture_animation_index;
};
struct RE_plugin *RE_plugin_new(void);
#define RE_MAX_PLUGINS 2
struct RE_plugin *RE_get_plugin(int handle);
struct RE_plugin *RE_plugin_new(enum RE_plugin_version version);
void RE_plugin_free(struct RE_plugin *plugin);
bool RE_plugin_bind(struct RE_plugin *plugin, int sprite);
bool RE_plugin_unbind(struct RE_plugin *plugin);
bool RE_plugin_suspend(struct RE_plugin *plugin);
bool RE_plugin_resume(struct RE_plugin *plugin);
bool RE_build_model(struct RE_plugin *plugin, int elapsed_ms);
void RE_update_model(struct RE_plugin *plugin);
bool RE_set_viewport(struct RE_plugin *plugin, int x, int y, int width, int height);
bool RE_set_projection(struct RE_plugin *plugin, float width, float height, float near, float far, float deg);
int RE_create_instance(struct RE_plugin *plugin);
bool RE_release_instance(struct RE_plugin *plugin, int instance);
bool RE_instance_set_type(struct RE_instance *instance, int type);
bool RE_instance_data_exists(struct RE_instance *instance, const char *name);
bool RE_instance_load(struct RE_instance *instance, const char *name);
bool RE_instance_motion_exists(struct RE_instance *instance, const char *name);
bool RE_instance_load_motion(struct RE_instance *instance, const char *name);
bool RE_instance_load_next_motion(struct RE_instance *instance, const char *name);
bool RE_instance_free_next_motion(struct RE_instance *instance);
bool RE_instance_set_mesh_show(struct RE_instance *instance, const char *mesh_name, bool show);
bool RE_instance_set_vertex_pos(struct RE_instance *instance, int index, float x, float y, float z);
bool RE_instance_set_vertex_uv(struct RE_instance *instance, int index, float u, float v);
int RE_instance_get_bone_index(struct RE_instance *instance, const char *name);
bool RE_instance_trans_local_pos_to_world_pos_by_bone(struct RE_instance *instance, int bone, vec3 offset, vec3 out);
float RE_instance_calc_height(struct RE_instance *instance, float x, float z);
float RE_instance_calc_2d_detection_height(struct RE_instance *instance, float x, float z);
bool RE_instance_calc_2d_detection(struct RE_instance *instance, float x0, float y0, float z0, float x1, float y1, float z1, float *x2, float *y2, float *z2, float radius);
bool RE_instance_set_debug_draw_shadow_volume(struct RE_instance *instance, bool draw);
bool RE_instance_find_path(struct RE_instance *instance, vec3 start, vec3 goal);
const vec3 *RE_instance_get_path_line(struct RE_instance *instance, int *nr_path_points);
bool RE_instance_optimize_path_line(struct RE_instance *instance);
bool RE_instance_calc_path_finder_intersect_eye_vec(struct RE_instance *instance, int mouse_x, int mouse_y, vec3 out);
bool RE_plugin_transform_pos_to_view_pos(struct RE_plugin *plugin, float x, float y, float z, int *view_x, int *view_y);
bool RE_plugin_get_camera_z_vector(struct RE_plugin *plugin, vec3 out);
void RE_plugin_reset_light_param(struct RE_plugin *plugin);
bool RE_plugin_set_fog_type(struct RE_plugin *plugin, int type);
int RE_plugin_get_fog_type(struct RE_plugin *plugin);
int RE_motion_get_state(struct motion *motion);
bool RE_motion_set_state(struct motion *motion, int state);
@@ -270,6 +364,21 @@ bool RE_back_cg_set(struct RE_back_cg *bcg, int no);
bool RE_back_cg_set_name(struct RE_back_cg *bcg, struct string *name, struct archive *aar);
void RE_render(struct sact_sprite *sp);
void RE_debug_print(struct sact_sprite *sp, int indent);
cJSON *RE_to_json(struct sact_sprite *sp, bool verbose);
// save.c
void RE_plugin_serialize(struct RE_plugin *plugin, struct iarray_writer *w);
void RE_plugin_deserialize(struct RE_plugin *plugin, struct iarray_reader *r, int version);
// Exposed for PartsEngine 3DLayer
int ReignEngine_create_plugin(enum RE_plugin_version version);
bool ReignEngine_ReleasePlugin(int handle);
bool ReignEngine_BindPlugin(int handle, int sprite);
// Exposed for MarmotModelEngine
void ReignEngine_update_models(void);
// debug.c
void re_debug_init(void);
#endif /* SYSTEM4_REIGN_H */
+23 -2
View File
@@ -20,11 +20,19 @@
#include <stdbool.h>
#include "sprite.h"
enum sprite_engine_type {
UNINITIALIZED_SPRITE_ENGINE,
SACT2_SPRITE_ENGINE,
SACTDX_SPRITE_ENGINE,
STOAT_SPRITE_ENGINE,
CHIPMUNK_SPRITE_ENGINE,
};
struct sact_sprite *sact_get_sprite(int sp);
struct sact_sprite *sact_try_get_sprite(int sp);
struct sact_sprite *sact_create_sprite(int sp_no, int width, int height, int r, int g, int b, int a);
void sact_ModuleFini(void);
int sact_Init(void *_, int cg_cache_size);
int sact_init(int cg_cache_size, enum sprite_engine_type engine);
#define sact_SetWP scene_set_wp
#define sact_SetWP_Color scene_set_wp_color
int sact_GetScreenWidth(void);
@@ -42,6 +50,7 @@ int sact_SP_SetCGFromFile(int sp, struct string *filename);
int sact_SP_SaveCG(int sp, struct string *filename);
int sact_SP_Create(int sp, int width, int height, int r, int g, int b, int a);
int sact_SP_CreatePixelOnly(int sp, int width, int height);
int sact_SP_CreateCustom(int sp);
int sact_SP_Delete(int sp);
int sact_SP_DeleteAll(void);
int sact_SP_SetPos(int sp_no, int x, int y);
@@ -50,7 +59,7 @@ int sact_SP_SetY(int sp_no, int y);
int sact_SP_SetZ(int sp, int z);
int sact_SP_GetBlendRate(int sp_no);
int sact_SP_SetBlendRate(int sp_no, int rate);
int sact_SP_SetShow(int sp_no, bool show);
int sact_SP_SetShow(int sp_no, int show);
int sact_SP_SetDrawMethod(int sp_no, int method);
int sact_SP_GetDrawMethod(int sp_no);
int sact_SP_IsUsing(int sp_no);
@@ -82,6 +91,8 @@ int sact_SP_IsPtInRect(int sp_no, int x, int y);
int sact_CG_GetMetrics(int cg_no, struct page **page);
int sact_SP_GetAMapValue(int sp_no, int x, int y);
int sact_SP_GetPixelValue(int sp_no, int x, int y, int *r, int *g, int *b);
int sact_SP_SetBrightness(int sp_no, int brightness);
int sact_SP_GetBrightness(int sp_no);
int sact_GAME_MSG_GetNumOf(void);
void sact_IntToZenkaku(struct string **s, int value, int figures, int zero_pad);
void sact_IntToHankaku(struct string **s, int value, int figures, int zero_pad);
@@ -92,6 +103,7 @@ int sact_Joypad_IsKeyDown(int num, int key);
bool sact_Joypad_GetAnalogStickStatus(int num, int type, float *degree, float *power);
bool sact_Joypad_GetDigitalStickStatus(int num, int type, bool *left, bool *right, bool *up, bool *down);
int sact_Key_ClearFlag(void);
void sact_Key_ClearFlagNoCtrl(void);
int sact_Key_IsDown(int keycode);
int sact_CG_IsExist(int cg_no);
void sact_System_GetDate(int *year, int *month, int *mday, int *wday);
@@ -100,8 +112,14 @@ void sact_CG_BlendAMapBin(int dst, int dx, int dy, int src, int sx, int sy, int
int sact_TRANS_Begin(int type);
int sact_TRANS_Update(float rate);
int sact_TRANS_End(void);
bool sact_VIEW_SetMode(int mode);
int sact_VIEW_GetMode(void);
bool sact_DX_GetUsePower2Texture(void);
void sact_DX_SetUsePower2Texture(bool use);
extern struct text_style text_sprite_ts;
int StoatSpriteEngine_SP_SetDrawMethod(int sp_no, int method);
int StoatSpriteEngine_SP_GetDrawMethod(int sp_no);
bool StoatSpriteEngine_SP_SetTextSprite(int sp_no, struct string *text);
void StoatSpriteEngine_SP_SetTextSpriteType(int type);
void StoatSpriteEngine_SP_SetTextSpriteSize(int size);
@@ -110,6 +128,9 @@ void StoatSpriteEngine_SP_SetTextSpriteBoldWeight(float weight);
void StoatSpriteEngine_SP_SetTextSpriteEdgeWeight(float weight);
void StoatSpriteEngine_SP_SetTextSpriteEdgeColor(int r, int g, int b);
bool StoatSpriteEngine_SP_SetDashTextSprite(int sp_no, int width, int height);
void StoatSpriteEngine_FPS_SetShow(bool show);
bool StoatSpriteEngine_FPS_GetShow(void);
float StoatSpriteEngine_FPS_Get(void);
//int StoatSpriteEngine_SP_SetBrightness(int sp_no, int brightness);
//int StoatSpriteEngine_SP_GetBrightness(int sp_no);
int StoatSpriteEngine_SYSTEM_IsResetOnce(void);
+2 -5
View File
@@ -20,14 +20,11 @@
#include "cJSON.h"
#include "vm.h"
cJSON *page_to_json(struct page *page);
cJSON *vm_value_to_json(enum ain_data_type type, union vm_value val);
void json_load_page(struct page *page, cJSON *vars, bool call_dtors);
union vm_value json_to_vm_value(enum ain_data_type type, enum ain_data_type struct_type, int array_rank, cJSON *json);
int save_json(const char *filename, cJSON *json);
int save_globals(const char *keyname, const char *filename);
int save_group(const char *keyname, const char *filename, const char *group_name, int *n);
cJSON *load_json(const char *filename);
int save_globals(const char *keyname, const char *filename, const char *group_name, int *n);
int load_globals(const char *keyname, const char *filename, const char *group_name, int *n);
int delete_save_file(const char *filename);
+6 -1
View File
@@ -20,6 +20,7 @@
#include <stdbool.h>
#include "queue.h"
typedef struct cJSON cJSON;
struct texture;
struct sprite {
@@ -37,10 +38,12 @@ struct sprite {
// the current scene. A sprite should be in the scene if there is pixel
// or text data attached to it and it is not hidden.
bool in_scene;
// Unique ID
int id;
// The rendering function.
void (*render)(struct sprite*);
// Debug printing function
void (*debug_print)(struct sprite*);
cJSON *(*to_json)(struct sprite*, bool);
};
extern bool scene_is_dirty;
@@ -55,6 +58,8 @@ void scene_set_sprite_z(struct sprite *sp, int z);
void scene_set_sprite_z2(struct sprite *sp, int z, int z2);
void scene_print(void);
cJSON *scene_to_json(bool verbose);
struct sprite *scene_get(int id);
static inline void scene_sprite_dirty(struct sprite *sp)
{
+29 -4
View File
@@ -35,8 +35,16 @@ struct sact_sprite {
struct texture texture;
// If no CG is attached to the sprite, the solid color to fill with.
SDL_Color color;
// Shader params
int blend_rate;
SDL_Color multiply_color;
SDL_Color add_color;
// Draw method (blend mode)
enum draw_method draw_method;
// The position and dimensions of the sprite.
Rectangle rect;
// The visible area of the sprite
Rectangle surface_area;
// Arbitrary text can be attached to the sprite. This is rendered on a
// separate texture and overlayed.
struct {
@@ -46,15 +54,29 @@ struct sact_sprite {
Point pos;
int char_space;
int line_space;
int current_line_height;
} text;
// The sprite handle
int no;
// The CG number attached to the sprite.
int cg_no;
// The sprite is suspended. The exact meaning of this is unknown.
bool suspended;
// (optional) Draw plugin bound to this sprite.
struct draw_plugin *plugin;
};
/*
* XXX: There are two different sprite renderers:
* * SACT2 - blend rate and brightness (stored in multiply_color field)
* * ChipmunkSpriteEngine - blend rate, add color, multiply color, surface area
* (uses parts shader)
*
* The initialization function determines which renderer is used.
*/
void sprite_init_sact(void);
void sprite_init_chipmunk(void);
static inline void sprite_dirty(struct sact_sprite *sp)
{
scene_sprite_dirty(&sp->sp);
@@ -69,14 +91,19 @@ int sprite_set_cg_2x_from_asset(struct sact_sprite *sp, int cg_no);
int sprite_set_cg_by_name(struct sact_sprite *sp, const char *name);
int sprite_set_cg_from_file(struct sact_sprite *sp, const char *path);
int sprite_save_cg(struct sact_sprite *sp, const char *path);
void sprite_init(struct sact_sprite *sp, int w, int h, int r, int g, int b, int a);
void sprite_init(struct sact_sprite *sp);
void sprite_init_color(struct sact_sprite *sp, int w, int h, int r, int g, int b, int a);
void sprite_init_custom(struct sact_sprite *sp);
void sprite_set_pos(struct sact_sprite *sp, int x, int y);
void sprite_set_x(struct sact_sprite *sp, int x);
void sprite_set_y(struct sact_sprite *sp, int y);
static inline void sprite_set_z(struct sact_sprite *sp, int z) { scene_set_sprite_z(&sp->sp, z); }
static inline void sprite_set_z2(struct sact_sprite *sp, int z, int z2) { scene_set_sprite_z2(&sp->sp, z, z2); }
int sprite_get_blend_rate(struct sact_sprite *sp);
static inline int sprite_get_blend_rate(struct sact_sprite *sp) { return sp->blend_rate; }
void sprite_set_blend_rate(struct sact_sprite *sp, int rate);
void sprite_set_multiply_color(struct sact_sprite *sp, int r, int g, int b);
void sprite_set_add_color(struct sact_sprite *sp, int r, int g, int b);
void sprite_set_surface_area(struct sact_sprite *sp, int x, int y, int w, int h);
static inline void sprite_set_show(struct sact_sprite *sp, bool show) { scene_set_sprite_show(&sp->sp, show); }
int sprite_set_draw_method(struct sact_sprite *sp, enum draw_method method);
enum draw_method sprite_get_draw_method(struct sact_sprite *sp);
@@ -110,6 +137,4 @@ void sprite_get_pixel_value(struct sact_sprite *sp, int x, int y, int *r, int *g
void sprite_bind_plugin(struct sact_sprite *sp, struct draw_plugin *plugin);
void sprite_call_plugins(void);
void sprite_print(struct sact_sprite *sp);
#endif /* SYSTEM4_SPRITE_H */
+9 -9
View File
@@ -39,6 +39,11 @@ enum {
STS_MIXER_SAMPLE_FORMAT_FLOAT // floats
};
enum {
STS_STREAM_COMPLETE = 0,
STS_STREAM_CONTINUE = 1
};
////////////////////////////////////////////////////////////////////////////////
//
@@ -66,7 +71,7 @@ typedef struct {
// The callback which will be called when the stream needs more data.
typedef int (*sts_mixer_stream_callback)(sts_mixer_sample_t* sample, void* userdata);
typedef struct {
typedef struct sts_mixer_stream_t {
void* userdata; // a userdata pointer which will passed to the callback
sts_mixer_stream_callback callback; // this callback will be called when the stream needs more data
sts_mixer_sample_t sample; // the current stream "sample" which holds the current piece of audio
@@ -160,11 +165,6 @@ enum {
STS_MIXER_VOICE_STREAMING
};
enum {
STS_STREAM_COMPLETE = 0,
STS_STREAM_CONTINUE = 1
};
static float sts_mixer__clamp(const float value, const float min, const float max) {
if (value < min) return min;
else if (value > max) return max;
@@ -329,14 +329,14 @@ void sts_mixer_mix_audio(sts_mixer_t* mixer, void* output, unsigned int samples)
voice->position = 0.0f;
position = 0;
}
left += sts_mixer__clamp_sample(sts_mixer__get_sample(&voice->stream->sample, position) * voice->gain);
right += sts_mixer__clamp_sample(sts_mixer__get_sample(&voice->stream->sample, position + 1) * voice->gain);
// added in xsystem4: allow stopping stream via callback return value
if (status == STS_STREAM_COMPLETE) {
sts_mixer_stop_voice(mixer, i);
} else {
left += sts_mixer__clamp_sample(sts_mixer__get_sample(&voice->stream->sample, position) * voice->gain);
right += sts_mixer__clamp_sample(sts_mixer__get_sample(&voice->stream->sample, position + 1) * voice->gain);
voice->position += (float)voice->stream->sample.frequency * advance;
}
}
}
}
+274
View File
@@ -0,0 +1,274 @@
/* Copyright (C) 2023 kichikuou <KichikuouChrome@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
#ifndef SYSTEM4_SWF_H
#define SYSTEM4_SWF_H
#include <stdbool.h>
#include <stdint.h>
#include <stddef.h>
typedef int32_t fixed32; // 32-bit 16.16 fixed-point number
typedef int16_t fixed16; // 16-bit 8.8 fixed-point number
typedef uint16_t fixedu16;
typedef uint32_t rgb_t; // 0x00BBGGRR
typedef uint32_t rgba_t; // 0xAABBGGRR
static inline float twips_to_float(int32_t twips) {
return twips / 20.0f;
}
static inline float fixed32_to_float(fixed32 f32) {
return f32 / 65536.0f;
}
static inline float fixed16_to_float(fixed16 f16) {
return f16 / 256.0f;
}
static inline fixed16 fixed16_mul(fixed16 a, fixed16 b) {
return (int32_t)a * (int32_t)b / 256;
}
struct swf_rect {
// in twips (1/20 pixel)
int32_t x_min;
int32_t x_max;
int32_t y_min;
int32_t y_max;
};
struct swf {
uint8_t version;
uint32_t file_length;
struct swf_rect frame_size;
fixedu16 frame_rate;
uint16_t frame_count;
struct swf_tag *tags;
};
struct swf_matrix {
fixed32 scale_x;
fixed32 scale_y;
fixed32 rotate_skew_0;
fixed32 rotate_skew_1;
int32_t translate_x;
int32_t translate_y;
};
struct swf_cxform_with_alpha {
int16_t add_terms[4]; // red, green, blue, alpha
fixed16 mult_terms[4]; // red, green, blue, alpha
};
// We only support clipped bitmap fill.
struct swf_fill_style {
uint16_t bitmap_id;
bool smoothed;
struct swf_matrix matrix;
};
struct swf_sound_spec {
uint16_t rate;
uint8_t sample_size; // 8 or 16 (bits)
uint8_t channels;
};
// Tags
enum swf_tag_type {
TAG_END = 0,
TAG_SHOW_FRAME = 1,
TAG_DEFINE_SHAPE = 2,
TAG_SET_BACKGROUND_COLOR = 9,
TAG_DO_ACTION = 12,
TAG_DEFINE_SOUND = 14,
TAG_START_SOUND = 15,
TAG_DEFINE_BITS_LOSSLESS = 20,
TAG_PLACE_OBJECT2 = 26,
TAG_REMOVE_OBJECT2 = 28,
TAG_DEFINE_BITS_LOSSLESS2 = 36,
TAG_DEFINE_SPRITE = 39,
TAG_SOUND_STREAM_HEAD2 = 45,
TAG_FILE_ATTRIBUTES = 69,
TAG_PLACE_OBJECT3 = 70,
};
struct swf_tag {
int type;
struct swf_tag *next;
};
struct swf_tag_define_bits_lossless {
struct swf_tag t; // TAG_DEFINE_BITS_LOSSLESS or TAG_DEFINE_BITS_LOSSLESS2
uint16_t character_id;
uint8_t format;
uint16_t width;
uint16_t height;
uint8_t *data;
};
// We only support simple rectangle shapes with a fill style.
struct swf_tag_define_shape {
struct swf_tag t;
uint16_t shape_id;
struct swf_rect bounds;
struct swf_fill_style fill_style;
};
enum swf_sound_format {
SWF_SOUND_UNCOMPRESSED_LE = 3,
};
struct swf_tag_define_sound {
struct swf_tag t;
uint16_t sound_id;
uint8_t format;
struct swf_sound_spec spec;
uint32_t sample_count;
uint8_t *data;
uint32_t data_len;
};
struct swf_tag_define_sprite {
struct swf_tag t;
uint16_t sprite_id;
uint16_t frame_count;
struct swf_tag *tags;
};
struct swf_tag_do_action {
struct swf_tag t;
struct swf_action *actions;
};
enum place_object_flags {
PLACE_FLAG_RESERVED_BITS = 0xffff - ((1 << 11) - 1),
PLACE_FLAG_HAS_CACHE_AS_BITMAP = 1 << 10,
PLACE_FLAG_HAS_BLEND_MODE = 1 << 9,
PLACE_FLAG_HAS_FILTER_LIST = 1 << 8,
PLACE_FLAG_HAS_CLIP_ACTIONS = 1 << 7,
PLACE_FLAG_HAS_CLIP_DEPTH = 1 << 6,
PLACE_FLAG_HAS_NAME = 1 << 5,
PLACE_FLAG_HAS_RATIO = 1 << 4,
PLACE_FLAG_HAS_COLOR_TRANSFORM = 1 << 3,
PLACE_FLAG_HAS_MATRIX = 1 << 2,
PLACE_FLAG_HAS_CHARACTER = 1 << 1,
PLACE_FLAG_MOVE = 1 << 0,
};
struct swf_tag_place_object {
struct swf_tag t; // TAG_PLACE_OBJECT2 or TAG_PLACE_OBJECT3
uint16_t flags;
uint16_t depth;
uint16_t character_id;
struct swf_matrix matrix;
struct swf_cxform_with_alpha color_transform;
uint16_t ratio;
char *name;
uint8_t blend_mode;
uint8_t bitmap_cache;
};
struct swf_tag_remove_object2 {
struct swf_tag t;
uint16_t depth;
};
struct swf_tag_set_background_color {
struct swf_tag t;
rgb_t background_color;
};
struct swf_tag_sound_stream_head {
struct swf_tag t;
struct swf_sound_spec playback_spec;
uint8_t compression;
struct swf_sound_spec stream_spec;
uint16_t sample_count;
int16_t latency_seek;
};
enum start_sound_flags {
SOUND_INFO_RESERVED_BITS = 0xff - ((1 << 6) - 1),
SOUND_INFO_SYNC_STOP = 1 << 5,
SOUND_INFO_SYNC_NO_MULTIPLE = 1 << 4,
SOUND_INFO_HAS_ENVELOPE = 1 << 3,
SOUND_INFO_HAS_LOOPS = 1 << 2,
SOUND_INFO_HAS_OUT_POINT = 1 << 1,
SOUND_INFO_HAS_IN_POINT = 1 << 0,
};
struct swf_tag_start_sound {
struct swf_tag t;
uint16_t sound_id;
uint8_t flags;
uint32_t in_point;
uint32_t out_point;
uint16_t loop_count;
};
// Actions
enum swf_action_type {
// Actions without payload.
ACTION_END = 0x00,
ACTION_PLAY = 0x06,
ACTION_STOP = 0x07,
ACTION_POP = 0x17,
ACTION_CALL_FUNCTION = 0x3d,
// Actions with payloads.
ACTION_GOTO_FRAME = 0x81,
ACTION_CONSTANT_POOL = 0x88,
ACTION_PUSH = 0x96,
};
struct swf_action {
uint8_t code;
struct swf_action *next;
};
struct swf_action_constant_pool {
struct swf_action a;
uint16_t count;
char *constant_pool[];
};
struct swf_action_goto_frame {
struct swf_action a;
uint16_t frame;
};
enum swf_action_push_type {
ACTION_PUSH_INTEGER = 7,
ACTION_PUSH_CONSTANT8 = 8,
};
struct swf_action_push {
struct swf_action a;
uint16_t count;
struct {
enum swf_action_push_type type;
uint32_t value;
} values[];
};
struct swf *swf_load(uint8_t *data, size_t size);
void swf_free(struct swf *swf);
struct swf *aff_load(uint8_t *data, size_t size);
#endif /* SYSTEM4_SWF_H */
+48
View File
@@ -26,6 +26,11 @@ enum ain_data_type;
struct page;
struct string;
// xsystem4-specific system calls (used for hacks)
enum vm_extra_syscall {
VM_XSYS_KEY_IS_DOWN = 0x80000000,
};
// Non-heap values. Stored in pages and on the stack.
union vm_value {
int32_t i;
@@ -88,8 +93,12 @@ static inline void stack_push_value(union vm_value v)
#define stack_set(n, v) (stack_set_value((n), vm_value_cast(v)))
#define stack_push(v) (stack_push_value(vm_value_cast(v)))
union vm_value stack_pop(void);
union vm_value stack_peek(int n);
union vm_value *stack_peek_var(void);
union vm_value local_get(int varno);
union vm_value global_get(int varno);
union vm_value member_get(int varno);
void global_set(int varno, union vm_value val, bool call_dtors);
struct page *local_page(void);
struct page *get_local_page(int frame_no);
@@ -102,6 +111,7 @@ union vm_value vm_copy(union vm_value v, enum ain_data_type type);
int vm_execute_ain(struct ain *program);
void vm_call(int fno, int struct_page);
int vm_time(void);
void vm_sleep(int ms);
void hll_call(int libno, int fno);
bool library_exists(int libno);
@@ -109,14 +119,35 @@ bool library_function_exists(int libno, int fno);
void init_libraries(void);
void exit_libraries(void);
// NOTE: This can probably be merged with ain_data_type, since the values are
// disjoint.
enum string_format_type {
STRFMT_INT = 2,
STRFMT_FLOAT = 3,
STRFMT_STRING = 4,
STRFMT_BOOL = 48,
STRFMT_LONG_INT = 56,
};
struct string *string_format(struct string *fmt, union vm_value arg, enum string_format_type type);
void vm_stack_trace(void);
_Noreturn void _vm_error(const char *fmt, ...);
_Noreturn void vm_exit(int code);
_Noreturn void vm_reset(void);
extern bool vm_reset_once;
#if defined(__ANDROID__) || defined(RELEASE)
// Report the error with a message box and exit.
#define VM_ERROR ERROR
#else
#define VM_ERROR(fmt, ...) \
_vm_error("*ERROR*(%s:%s:%d): " fmt "\n", __FILE__, __func__, __LINE__, ##__VA_ARGS__)
#endif
#ifdef VM_PRIVATE
#include "system4/little_endian.h"
#include "system4/ain.h"
struct function_call {
int32_t fno;
@@ -131,6 +162,23 @@ extern int32_t call_stack_ptr;
extern size_t instr_ptr;
// Read argument N for the current instruction.
static inline int32_t get_argument(int n)
{
return LittleEndian_getDW(ain->code, instr_ptr + 2 + n*4);
}
// XXX: not strictly portable
static inline float get_argument_float(int n)
{
union vm_value v;
v.i = LittleEndian_getDW(ain->code, instr_ptr + 2 + n*4);
return v.f;
}
uint32_t get_switch_address(int no, int val);
uint32_t get_strswitch_address(int no, struct string *str);
int vm_save_image(const char *key, const char *path);
void vm_load_image(const char *key, const char *path);
struct page *vm_load_image_comments(const char *key, const char *path, int *success);
+4 -9
View File
@@ -33,6 +33,7 @@ enum vm_pointer_type {
// Heap-backed objects. Reference counted.
struct vm_pointer {
int ref;
uint32_t seq;
enum vm_pointer_type type;
union {
struct string *s;
@@ -60,6 +61,8 @@ void heap_ref(int slot);
void heap_unref(int slot);
void exit_unref(int slot);
uint32_t heap_get_seq(int slot);
bool heap_index_valid(int index);
bool page_index_valid(int index);
bool string_index_valid(int index);
@@ -75,17 +78,9 @@ int32_t heap_alloc_string(struct string *s);
void heap_describe_slot(int slot);
/*
* Guarantee `headroom` free slots are available on the heap.
*
* XXX: this is a hack to fix an issue with HLL calls where a pointer into the
* heap can be made invalid by a heap reallocation triggered within the
* body of the HLL function.
*/
void heap_guarantee(unsigned headroom);
#ifdef VM_PRIVATE
extern uint32_t heap_next_seq;
extern int32_t *heap_free_stack;
extern size_t heap_free_ptr;
+15 -9
View File
@@ -50,8 +50,8 @@ enum page_type {
* Multi-dimensional arrays are implemented as a tree of pages (meaning the
* whole array is NOT contiguous in memory).
*
* Delegates: each delegate object is backed by a page storing object/function
* pairs.
* Delegates: each delegate object is backed by a page storing (object,
* function, seq) triples.
*/
struct page {
enum page_type type;
@@ -66,11 +66,17 @@ struct page {
int index;
enum ain_data_type a_type;
};
// array-specific metadata
struct {
int struct_type;
int rank;
} array;
union {
// local-specific metadata
struct {
int struct_ptr;
} local;
// array-specific metadata
struct {
int struct_type;
int rank;
} array;
};
int nr_vars;
union vm_value values[];
};
@@ -97,7 +103,7 @@ static inline void _page_set_var(struct page *page, int i, union vm_value v)
// variables
union vm_value variable_initval(enum ain_data_type type);
void variable_fini(union vm_value v, enum ain_data_type type);
void variable_fini(union vm_value v, enum ain_data_type type, bool call_dtor);
enum ain_data_type variable_type(struct page *page, int varno, int *struct_type, int *array_rank);
void variable_set(struct page *page, int varno, enum ain_data_type type, union vm_value val);
@@ -139,6 +145,6 @@ struct page *delegate_append(struct page *dst, int obj, int fun);
struct page *delegate_plusa(struct page *dst, struct page *add);
struct page *delegate_minusa(struct page *dst, struct page *minus);
struct page *delegate_clear(struct page *page);
void delegate_get(struct page *page, int i, int *obj_out, int *fun_out);
bool delegate_get(struct page *page, int i, int *obj_out, int *fun_out);
#endif /* SYSTEM4_PAGE_H */
+22 -3
View File
@@ -20,9 +20,16 @@
#include <stddef.h>
#include <stdbool.h>
enum resume_save_format {
SAVE_FORMAT_JSON,
SAVE_FORMAT_RSM,
};
struct config {
char *game_name;
char *boot_name;
char *ain_filename;
char *vm_name;
char *game_dir;
char *save_dir;
char *home_dir;
@@ -43,6 +50,8 @@ struct config {
bool echo;
float text_x_scale;
bool manual_text_x_scale;
enum resume_save_format save_format;
int msgskip_delay;
};
extern struct config config;
@@ -56,15 +65,24 @@ const char *display_utf0(const char *utf);
const char *display_utf1(const char *utf);
const char *display_utf2(const char *utf);
void indent_printf(int indent, const char *fmt, ...);
void indent_message(int indent, const char *fmt, ...);
void log_message(const char *log, const char *fmt, ...);
#define UNIMPLEMENTED(fmt, ...) \
sys_warning("unimplemented: %s" fmt "\n", __func__, ##__VA_ARGS__)
bool is_absolute_path(const char *path);
char *unix_path(const char *path);
char *gamedir_path(const char *path);
char *gamedir_path_icase(const char *path);
char *savedir_path(const char *path);
void get_date(int *year, int *month, int *mday, int *wday);
void get_time(int *hour, int *min, int *sec, int *ms);
void screenshot_save(void);
#ifndef XSYS4_DATA_DIR
#define XSYS4_DATA_DIR "/usr/local/share/xsystem4"
#endif
@@ -75,7 +93,8 @@ extern bool game_daibanchou_en;
extern bool game_rance02_mg;
extern bool game_rance6_mg;
extern bool game_rance7_mg;
extern bool id_indexed_afa;
extern bool game_rance8;
extern bool game_rance8_mg;
extern bool game_dungeons_and_dolls;
#endif /* XSYSTEM4_H */
+26 -11
View File
@@ -1,18 +1,33 @@
project('system4', 'c',
meson_version: '>= 0.59',
default_options : ['c_std=c11'])
add_project_arguments('-D_DEFAULT_SOURCE', language : 'c')
add_project_arguments('-DXSYS4_DATA_DIR="' + get_option('prefix') / get_option('datadir') / 'xsystem4"', language : 'c')
zlib = dependency('zlib')
if get_option('buildtype').startswith('release')
add_project_arguments('-DRELEASE', language : 'c')
endif
static_libs = false
if host_machine.system() == 'windows'
static_libs = true
endif
zlib = dependency('zlib', static : static_libs)
libm = meson.get_compiler('c').find_library('m', required: false)
sdl2 = dependency('sdl2')
ft2 = dependency('freetype2')
ffi = dependency('libffi')
tj = dependency('libturbojpeg')
webp = dependency('libwebp')
png = dependency('libpng')
cglm = dependency('cglm', fallback : ['cglm', 'cglm_dep'])
sndfile = dependency('sndfile')
sdl2 = dependency('sdl2', static : static_libs)
ft2 = dependency('freetype2', static : static_libs)
ffi = dependency('libffi', static : static_libs)
tj = dependency('libturbojpeg', static : static_libs)
webp = dependency('libwebp', static : static_libs)
png = dependency('libpng', static : static_libs)
cglm = dependency('cglm', version : '>=0.9.2', fallback : ['cglm', 'cglm_dep'])
sndfile = dependency('sndfile', static : static_libs)
avcodec = dependency('libavcodec', version : '>=59.37.100', required: false, static : static_libs)
avformat = dependency('libavformat', required: false, static : static_libs)
avutil = dependency('libavutil', version : '>=57.28.100', required: false, static : static_libs)
swscale = dependency('libswscale', required: false, static : static_libs)
gles = dependency('glesv2', version : '>=3', required: get_option('opengles'))
if gles.found()
@@ -24,8 +39,8 @@ else
gl_deps = [gl, glew]
endif
chibi = dependency('chibi-scheme', required : false)
readline = dependency('readline', required : false)
chibi = dependency('chibi-scheme', required : false, static : static_libs)
readline = dependency('readline', required : false, static : static_libs)
flex = find_program('flex')
bison = find_program('bison')
+140
View File
@@ -0,0 +1,140 @@
Updates to the System 4 language since Evenicle
===============================================
SLC's System 4 decompiler/compiler was last updated to work with Evenicle. There have been
significant changes to the System 4 language since. What follows is a list of features which
have been added.
Namespaces
----------
Added in Tsumamigui 3. This is purely a compile time feature. If you look at the global
variable and function names, you will notice lots of `::`, e.g. `time::detail::g_PrevPlayTime`.
Lambdas
-------
Added in Heartful Maman. I'm not sure how these work, but if you look at the disassembled
code there are now functions embedded within functions with names like `<lambda ...>`.
Generic Arrays
--------------
Added in Ixseal. The old array types have been replaced with a new generic array type, with
the syntax `array<type>`. The newly added types 79 and 80 were added to support this feature
(type 79 is the regular array type, and type 80 is the reference-to-array type).
There also appears to be a `foreach` loop construct added which operates on the new arrays.
I believe the newly added type 82 is some kind of iterator type which is used in these loops.
The syntax is likely something like:
foreach (var : array) {
// do somthing with var
}
where `var` is a type 82.
Array methods are now implemented via the `Array` library rather than as dedicated bytecode
instructions.
Properties (Getters/Setters)
----------------------------
Added in Ixseal. Some struct/class members now have their names surrounded in angle brackets,
e.g. `<PropertyName>`. These members have get/set methods defined for them, with names like
`ClassName@PropertyName::get`/`ClassName@PropertyName::set`. Most likely these methods are
automatically generated.
Interfaces & vtables
--------------------
Added in Ixseal. If you look at the struct declarations, you will find empty structs with
names like `IParts`. Embedded in the struct data in the ain file there is a list of interfaces
for each struct, listing the implemented interfaces, along with indices into the struct's
vtable corresponding to the location of the methods for that interface.
All structures which implement an interface have an `array<int>` as their first member with
the name `<vtable>`. This is a table listing the virtual (interface) methods of the struct.
`CALLMETHOD` now takes the function index as a stack-passed argument, rather than a static
instruction argument. The instruction argument to `CALLMETHOD` is changed to be the number of
arguments that are passed to the method. The calling convention is as follows:
PUSH <struct page>
PUSH <function index>
PUSH <argument 0>
...
PUSH <argument n>
CALLMETHOD <n>
This new calling convention enables calling compile-time-indeterminate methods through the
vtable.
To support variables which represent an abstract *instance of an interface*, the new type 89
was added. This is a 2-valued type in which the first value is a struct page, and the second
value is an index into the struct's vtable corresponding to the location of the interface's
methods. Thus, methods can be called on interface objects as follows:
PUSH <page> ; [A] (A is page of type-89 variable)
PUSH <var> ; [A,B] (B is index of type-89 variable)
REFREF ; [C,D] (C is page of object; D is index into object's vtable)
DUP_U2 ; [C,D,C]
PUSH 0 ; [C,D,C,0]
REF ; [C,D,E] (E is the vtable of object C)
SWAP ; [C,E,D]
PUSH <n> ; [C,E,D,n]
ADD ; [C,E,D+n]
REF ; [C,F] (F is global index of method)
PUSH <arg 0> ; [C,F,a0] (a0 is the first argument)
...
PUSH <arg n> ; [C,F,a0,...,an] (an is the last argument)
CALLMETHOD <n> ; [stack now contains return value of method]
Generic Structures
------------------
Added in Rance X. This is purely a compile time feature. If you look at the struct names you
will find names like `MapPair<int, QuestMapPosition>`, where the type names inside the angled
brackets appear again in the struct members.
Function Overloading
--------------------
Added in Rance X. This is purely a compile time feature. If you look at the function
signatures you will notice duplicate names with differing argument lists. In fact, there are
even duplicate function names with *exactly the same argument list*. I'm not sure why.
Enums
-----
Added in Rance X. Enum types have the following automatically generated static methods:
* `string EnumType@String(EnumType value)`
* `EnumType EnumType::Parse(string value)`
* `EnumType EnumType::Parse(int value)`
* `array<EnumType> EnumType::GetList(void)`
* `bool EnumType::IsExist(int value)`
* `int EnumType::NumOf(void)`
There are 3 new types associated with enums. Types 92 and 93 are the regular enum and
reference-to-enum types, respectively. They store an index into the enum table in the struct
type field of their type descriptor.
Type 91 is only used in the return value from the EnumType::Parse methods. It's wrapped in an option
type (new type 86).
Option Types
------------
Added in Rance X. The new type 86 serves this function. Type 86 is a 2-valued type where the first
value is the wrapped value, and the second value indicates sucess/failure.
In Rance X, a value of -1 as the second value indicates failure, and a value of 0 indicates success.
In Evenicle 2 and later games, a value of 1 as the second value indicates failure.
Unclear
-------
Variables in the ain file now have two names. Usually these names are the same string, but
occasionally there are minor differences between them, and the differences don't reveal much
about what the purpose of the second name is.
File diff suppressed because it is too large Load Diff
View File
+5 -3
View File
@@ -15,12 +15,14 @@
*/
uniform sampler2D tex;
uniform vec4 color;
uniform vec4 color; // .a is the discard threshold
in vec2 tex_coord;
out vec4 frag_color;
void main() {
vec4 texel = texture(tex, tex_coord);
frag_color = vec4(color.rgb, texel.r * color.a);
vec4 texel = texture(tex, tex_coord);
if (texel.r < color.a)
discard;
frag_color = vec4(color.rgb, texel.r);
}
+26
View File
@@ -0,0 +1,26 @@
/* Copyright (C) 2023 kichikuou <KichikuouChrome@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
uniform sampler2D tex;
in vec2 tex_coord;
out vec4 frag_color;
void main() {
vec4 texel = texture(tex, tex_coord);
float gray = dot(texel.rgb, vec3(0.299, 0.587, 0.114));
frag_color = vec4(vec3(gray), texel.a);
}
+6 -3
View File
@@ -16,7 +16,7 @@
uniform sampler2D tex;
uniform float threshold;
uniform vec4 color;
uniform vec4 color; // .a is the discard threshold
in vec2 tex_coord;
out vec4 frag_color;
@@ -26,15 +26,16 @@ void main() {
// edge pixels
int size = int(floor(threshold));
int cutoff = size + 1;
float edge_weight = fract(threshold);
float edge_weight = fract(threshold) / 4.0;
vec2 tex_size = vec2(textureSize(tex, 0).xy);
float t = ceil(threshold);
float a_out = 0.0;
for (int x = -cutoff; x <= cutoff; x++) {
for (int y = -cutoff; y <= cutoff; y++) {
float d = distance(vec2(x, y), vec2(0, 0));
if (d > threshold)
if (d > t)
continue;
float a = texture(tex, tex_coord + vec2(x, y) / tex_size).r;
if (d > float(size))
@@ -43,5 +44,7 @@ void main() {
}
}
if (a_out < color.a)
discard;
frag_color = vec4(color.rgb, min(a_out, 1.0));
}
+17 -3
View File
@@ -15,7 +15,10 @@
*/
uniform sampler2D tex;
uniform sampler2D light_texture;
uniform bool use_lightmap;
uniform float alpha_mod;
uniform bool use_fog;
in float dist;
in vec2 tex_coord;
@@ -26,7 +29,18 @@ const vec3 FOG_COLOR = vec3(0.0, 0.0, 0.0);
void main() {
vec4 texel = texture(tex, tex_coord);
float fog_factor = (FOG_MAX_DIST - dist) / FOG_MAX_DIST;
fog_factor = clamp(fog_factor, 0.3, 1.0);
frag_color = vec4(mix(FOG_COLOR, vec3(texel), fog_factor), texel.a * alpha_mod);
float light_factor = 1.0;
if (use_lightmap) {
light_factor = texture(light_texture, tex_coord).a;
}
if (use_fog) {
float fog_factor = (FOG_MAX_DIST - dist) / FOG_MAX_DIST;
fog_factor = clamp(fog_factor, 0.3, 1.0);
frag_color = vec4(mix(FOG_COLOR, texel.rgb * light_factor, fog_factor), texel.a * alpha_mod);
} else {
if (texel.a < 0.01) {
discard;
}
frag_color = vec4(texel.rgb * light_factor, texel.a * alpha_mod);
}
}
+3 -1
View File
@@ -17,6 +17,8 @@
uniform mat4 local_transform;
uniform mat4 view_transform;
uniform mat4 proj_transform;
uniform vec2 uv_offset;
uniform vec2 uv_scale;
in vec3 vertex_pos;
in vec2 vertex_uv;
@@ -27,5 +29,5 @@ void main() {
vec4 pos = view_transform * local_transform * vec4(vertex_pos, 1.0);
dist = abs(pos.z);
gl_Position = proj_transform * pos;
tex_coord = vertex_uv;
tex_coord = vertex_uv * uv_scale + uv_offset;
}
+39
View File
@@ -0,0 +1,39 @@
/* Copyright (C) 2023 kichikuou <KichikuouChrome@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
uniform sampler2D tex;
uniform float amp;
uniform float t;
const float PI = 3.14159265;
in vec2 tex_coord;
out vec4 frag_color;
vec4 sample_texture(float offset_x) {
return texture(tex, vec2(tex_coord.x + offset_x, tex_coord.y));
}
void main() {
float a = amp * cos((tex_coord.y + fract(t / 8.0)) * 16.0 * PI);
float p1 = 6.0 * tex_coord.y + 1.5;
float p2 = 4.0 * tex_coord.y + 2.0;
float offset1 = cos(p1 * 2.0 * PI) * a;
float offset2 = cos(p2 * 2.0 * PI) * a;
frag_color = mix(sample_texture(offset1), sample_texture(offset2), 0.5);
}
+36
View File
@@ -0,0 +1,36 @@
/* Copyright (C) 2026 Nunuhara Cabbage <nunuhara@haniwa.technology>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
uniform sampler2D tex; // the new scene
uniform sampler2D old; // the old scene
uniform vec2 resolution; // the screen resolution
uniform float progress; // effect progress (0..1)
in vec2 tex_coord;
out vec4 frag_color;
#define EFFECT_HEIGHT 210.0
void main() {
// start position of effect
float top = ((resolution.y + EFFECT_HEIGHT) * (1.0 - progress)) - EFFECT_HEIGHT;
// current pixel y-coordinate
float p = tex_coord.y * resolution.y;
// calculate alpha value
float alpha = 1.0 - clamp((p - top) / EFFECT_HEIGHT, 0.0, 1.0);
vec3 col = mix(texture(tex, tex_coord).rgb, texture(old, tex_coord).rgb, alpha);
frag_color = vec4(col, 1.0);
}
+18 -35
View File
@@ -22,47 +22,30 @@ uniform float progress; // effect progress (0..1)
in vec2 tex_coord;
out vec4 frag_color;
#define MAX_STRIDE 128.0
#define MAX_CHUNK 128.0
vec3 get_pixel(vec2 xy) {
return mix(texture(old, xy).rgb, texture(tex, xy).rgb, progress);
}
void main() {
// size of each chunk
float stride = MAX_STRIDE * (1.0 - abs(progress * 2.0 - 1.0)); // progress=(0..0.5..1) -> stride=(0..max..0)
// offset of frag coordinate relative to chunk
vec2 offset = mod(gl_FragCoord.xy, stride);
// the chunk coordinate
vec2 chunk = tex_coord - offset / resolution;
// coordinate of chunk center
vec2 center = chunk + vec2(stride/2.0, stride/2.0) / resolution;
// FIXME: In this implementation, the anchor point is at the top left of the screen.
// It should be anchored at the center to match SACT2.dll.
frag_color = vec4(get_pixel(center), 1.0);
}
/* NOTE: This is an alternate implementation which computes an average for each chunk.
SACT2.dll does not do this.
#define SAMPLES 8.0
#define MAX_STRIDE 16.0
vec3 get_pixel(vec2 xy) {
return mix(texture(old, xy).xyz, texture(tex, xy).xyz, progress);
float triangle(float f) {
return 1.0 - abs(f * 2.0 - 1.0);
}
void main() {
float stride = MAX_STRIDE * (1.0 - abs(progress * 2.0 - 1.0)); // progress=(0..0.5..1) -> stride=(0..max..0)
vec3 avg = vec3(0, 0, 0);
vec2 xy = floor(gl_FragCoord.xy / (SAMPLES * stride)) * (SAMPLES * stride);
for (float j = 0.0; j < SAMPLES; j += 1.0) {
for (float i = 0.0; i < SAMPLES; i+= 1.0) {
avg += get_pixel((xy + stride * vec2(i, j)) / resolution);
}
}
avg /= SAMPLES * SAMPLES;
frag_color = vec4(avg, 1.0);
// center of the screen
vec2 center = resolution * 0.5;
// size of each chunk
float chunk_size = floor(triangle(progress) * MAX_CHUNK);
// number of chunks in each screen quadrant (including partial chunks at edges)
vec2 chunks_per_quadrant = floor(center / chunk_size);
// offset from screen to edge of grid (negative or zero)
vec2 grid_off = center - (chunks_per_quadrant * chunk_size);
// offset of pixel in chunk
vec2 chunk_off = mod(gl_FragCoord.xy - grid_off, chunk_size);
// the chunk coordinate
vec2 chunk = tex_coord - vec2(chunk_off) / resolution;
// coordinate of chunk center
vec2 chunk_center = chunk + vec2(chunk_size/2.0, chunk_size/2.0) / resolution;
frag_color = vec4(get_pixel(chunk_center), 1.0);
}
*/
+1 -1
View File
@@ -50,7 +50,7 @@ void main() {
vec2 p = tex_coord * resolution;
vec2 p1 = resolution;
vec2 p2 = vec2((1.0 - progress*2.0) * p1.x, (1.0 - progress*2.0) * p1.y);
vec2 p2 = vec2((1.0 - max(progress, 0.01)*2.0) * p1.x, (1.0 - max(progress, 0.01)*2.0) * p1.y);
vec2 p3 = vec2(p2.x, resolution.y);
vec2 p4 = vec2(resolution.x, p2.y);
+57
View File
@@ -0,0 +1,57 @@
/* Copyright (C) 2019 Nunuhara Cabbage <nunuhara@haniwa.technology>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
uniform sampler2D tex; // the new scene
uniform sampler2D old; // the old scene
uniform vec2 resolution; // the screen resolution
uniform float progress; // effect progress (0..1)
in vec2 tex_coord;
out vec4 frag_color;
#define M_PI 3.1415926535897932384626433832795
#define OLD_PERIOD ((2.0 * M_PI) / 360.0)
#define NEW_PERIOD ((2.0 * M_PI) / 720.0)
#define OLD_SHIFT (-M_PI)
#define NEW_SHIFT (M_PI / 2.0)
vec3 get_pixel(vec2 old_xy, vec2 new_xy) {
// influence of old color is described by: C_old = (1-t)^2
// influence of new color increases linearly: C_new = t
// the resulting blend is not normalized
vec3 old = texture(old, old_xy).rgb;
vec3 new = texture(tex, new_xy).rgb;
float old_weight = (1.0 - progress) * (1.0 - progress);
float new_weight = progress;
return (old * old_weight + new * new_weight);
}
float triangle(float f) {
return 1.0 - abs(f * 2.0 - 1.0);
}
void main() {
// old: x = amp * sin((2pi/360)*y + phase + -pi)
// new: x = amp * sin((2pi/720)*y + phase + pi/2)
vec2 p = tex_coord * resolution;
float amp = triangle(progress) * 80.0; // (0..0.5..1) -> (0..80..0);
float phase = progress * M_PI * 8.0;
float old_off = amp * sin(OLD_PERIOD * p.y + OLD_SHIFT + phase);
float new_off = amp * sin(NEW_PERIOD * p.y + NEW_SHIFT + phase);
vec2 old_xy = fract(vec2(p.x + old_off, p.y) / resolution);
vec2 new_xy = fract(vec2(p.x - new_off, p.y) / resolution);
frag_color = vec4(get_pixel(old_xy, new_xy), 1.0);
}
@@ -0,0 +1,58 @@
/* Copyright (C) 2019 Nunuhara Cabbage <nunuhara@haniwa.technology>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
uniform sampler2D tex; // the new scene
uniform sampler2D old; // the old scene
uniform vec2 resolution; // the screen resolution
uniform float progress; // effect progress (0..1)
in vec2 tex_coord;
out vec4 frag_color;
#define M_PI 3.1415926535897932384626433832795
#define OLD_PERIOD ((2.0 * M_PI) / 360.0)
#define NEW_PERIOD ((2.0 * M_PI) / 720.0)
#define OLD_SHIFT (-M_PI)
#define NEW_SHIFT (M_PI / 2.0)
vec3 get_pixel(vec2 old_xy, vec2 new_xy) {
// influence of old color is described by: C_old = (1-t)^2
// influence of new color increases linearly: C_new = t
// the resulting blend is not normalized
vec3 old = texture(old, old_xy).rgb;
vec3 new = texture(tex, new_xy).rgb;
float old_weight = (1.0 - progress) * (1.0 - progress);
float new_weight = progress;
return (old * old_weight + new * new_weight);
}
float triangle(float f) {
return 1.0 - abs(f * 2.0 - 1.0);
}
void main() {
// old: x = amp * sin((2pi/360)*y + phase + -pi)
// new: x = amp * sin((2pi/720)*y + phase + pi/2)
vec2 p = tex_coord * resolution;
float amp = triangle(progress) * 160.0; // (0..0.5..1) -> (0..160..0);
float phase = progress * M_PI * 8.0;
float old_off_x = amp * sin(OLD_PERIOD * p.y + OLD_SHIFT + phase);
float new_off_x = amp * sin(NEW_PERIOD * p.y + NEW_SHIFT + phase);
float off_y = resolution.y * progress;
vec2 old_xy = fract(vec2(p.x + old_off_x, p.y + off_y) / resolution);
vec2 new_xy = fract(vec2(p.x - new_off_x, p.y + off_y) / resolution);
frag_color = vec4(get_pixel(old_xy, new_xy), 1.0);
}
+37
View File
@@ -0,0 +1,37 @@
/* Copyright (C) 2023 kichikuou <KichikuouChrome@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
uniform sampler2D texture_y;
uniform sampler2D texture_cb;
uniform sampler2D texture_cr;
in vec2 tex_coord;
out vec4 frag_color;
mat4 rec601 = mat4(
1.16438, 0.00000, 1.59603, -0.87079,
1.16438, -0.39176, -0.81297, 0.52959,
1.16438, 2.01723, 0.00000, -1.08139,
0.0, 0.0, 0.0, 1.0
);
void main() {
float y = texture(texture_y, tex_coord).r;
float cb = texture(texture_cb, tex_coord).r;
float cr = texture(texture_cr, tex_coord).r;
frag_color = vec4(y, cb, cr, 1.0) * rec601;
}
+33 -8
View File
@@ -15,26 +15,51 @@
*/
uniform sampler2D tex;
uniform float alpha_mod;
uniform float blend_rate;
uniform vec2 bot_left;
uniform vec2 top_right;
uniform vec3 add_color;
uniform vec3 multiply_color;
uniform int draw_filter;
uniform int use_clipper;
uniform sampler2D clipper_tex;
in vec2 tex_coord;
in vec2 clip_coord;
out vec4 frag_color;
float point_in_rect(vec2 p, vec2 bot_left, vec2 top_right) {
vec2 s = step(bot_left, p) - step(top_right, p);
return s.x * s.y;
const int DRAW_FILTER_MULTIPLY = 2;
const int DRAW_FILTER_SCREEN = 3;
bool inside_rect(vec2 p, vec2 bl, vec2 tr) {
return all(greaterThanEqual(p, bl)) && all(lessThan(p, tr));
}
void main() {
vec2 size = vec2(textureSize(tex, 0));
vec2 bl = bot_left / size;
vec2 tr = top_right / size;
vec2 size = vec2(textureSize(tex, 0));
if (!inside_rect(tex_coord, bot_left / size, top_right / size))
discard;
vec4 tex_color = texture(tex, tex_coord);
vec3 mod_color = (tex_color.rgb + add_color) * multiply_color;
frag_color = vec4(mod_color, tex_color.a * alpha_mod) * point_in_rect(tex_coord, bl, tr);
float alpha = tex_color.a * blend_rate;
if (use_clipper != 0) {
if (!inside_rect(clip_coord, vec2(0.0), vec2(1.0)))
discard;
alpha *= texture(clipper_tex, clip_coord).a;
}
if (draw_filter == DRAW_FILTER_MULTIPLY) {
// result = mix(dst, mod_color*dst, alpha), used with (GL_DST_COLOR, GL_ZERO)
frag_color = vec4(mix(vec3(1.0), mod_color, alpha), 1.0);
} else if (draw_filter == DRAW_FILTER_SCREEN) {
// result = mod_color*alpha + (1 - mod_color*alpha)*dst,
// used with (GL_ONE, GL_ONE_MINUS_SRC_COLOR)
frag_color = vec4(mod_color * alpha, 1.0);
} else {
// normal or additive — blend func handles alpha
frag_color = vec4(mod_color, alpha);
}
}
+13 -17
View File
@@ -14,22 +14,18 @@
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
#include "hll.h"
uniform mat4 world_transform;
uniform mat4 view_transform;
uniform mat4 inv_clipper_transform;
HLL_WARN_UNIMPLEMENTED( , void, DrawMovie2, Release);
HLL_WARN_UNIMPLEMENTED(0, bool, DrawMovie2, Load, possibly_unused struct string *filename);
//bool DrawMovie2_Run(void);
//bool DrawMovie2_Draw(int nSprite);
//bool DrawMovie2_SetVolume(int nVolume);
//bool DrawMovie2_IsEnd(void);
//int DrawMovie2_GetCount(void);
in vec4 vertex_pos;
in vec2 vertex_uv;
out vec2 tex_coord;
out vec2 clip_coord;
HLL_LIBRARY(DrawMovie2,
HLL_EXPORT(Release, DrawMovie2_Release),
HLL_EXPORT(Load, DrawMovie2_Load),
HLL_TODO_EXPORT(Run, DrawMovie2_Run),
HLL_TODO_EXPORT(Draw, DrawMovie2_Draw),
HLL_TODO_EXPORT(SetVolume, DrawMovie2_SetVolume),
HLL_TODO_EXPORT(IsEnd, DrawMovie2_IsEnd),
HLL_TODO_EXPORT(GetCount, DrawMovie2_GetCount)
);
void main() {
vec4 world_pos = world_transform * vertex_pos;
gl_Position = view_transform * world_pos;
tex_coord = vertex_uv;
clip_coord = (inv_clipper_transform * world_pos).xy;
}
+137 -38
View File
@@ -14,19 +14,25 @@
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
#define NR_DIR_LIGHTS 3
#define DIFFUSE_EMISSIVE 0
#define DIFFUSE_NORMAL 1
#define DIFFUSE_LIGHT_MAP 2
#define DIFFUSE_ENV_MAP 3
#define FOG_LINEAR 1
#define FOG_LIGHT_SCATTERING 2
#define ALPHA_BLEND 0
#define ALPHA_TEST 1
#define ALPHA_MAP_BLEND 2
#define ALPHA_MAP_TEST 3
#define FOG_LINEAR 1
#define FOG_LIGHT_SCATTERING 2
#define ENABLE_SPECULAR (ENGINE == REIGN_ENGINE || ENGINE == SEAL_ENGINE)
#define ENABLE_LIGHT_SCATTERING (ENGINE == REIGN_ENGINE || ENGINE == SEAL_ENGINE)
#if ENGINE == REIGN_ENGINE
#define NR_DIR_LIGHTS 3
struct dir_light {
vec3 dir;
@@ -34,8 +40,95 @@ struct dir_light {
vec3 globe_diffuse;
};
uniform sampler2D tex;
uniform dir_light dir_lights[NR_DIR_LIGHTS];
uniform float rim_exponent;
uniform vec3 rim_color;
uniform float fog_near;
uniform float fog_far;
uniform vec3 fog_color;
in vec3 light_dir[NR_DIR_LIGHTS];
uniform vec3 global_ambient;
vec3 compute_diffuse(vec3 norm)
{
vec3 diffuse = vec3(0.0);
for (int i = 0; i < NR_DIR_LIGHTS; i++) {
float half_lambert = dot(norm, -light_dir[i]) * 0.5 + 0.5;
diffuse += mix(dir_lights[i].globe_diffuse, dir_lights[i].diffuse, half_lambert);
}
return diffuse;
}
#elif ENGINE == SEAL_ENGINE
const vec3 global_ambient = vec3(0.0);
// Hemisphere lighting (sky/middle/ground).
uniform vec3 hemi_light_dir;
uniform vec3 hemi_sky_color;
uniform vec3 hemi_mid_color;
uniform vec3 hemi_ground_color;
vec3 compute_diffuse(vec3 norm)
{
float t = 0.5 * dot(norm, hemi_light_dir) + 0.5;
vec3 low_mid = mix(hemi_ground_color, hemi_mid_color, t);
vec3 mid_high = mix(hemi_mid_color, hemi_sky_color, t);
return mix(low_mid, mid_high, t);
}
#else // TAPIR_ENGINE
const vec3 global_ambient = vec3(0.0);
vec3 compute_diffuse(vec3 norm)
{
return vec3(1.0);
}
#endif // ENGINE == REIGN_ENGINE
#if ENABLE_LIGHT_SCATTERING
uniform int fog_type;
in vec3 ls_ex;
in vec3 ls_in;
#endif
#if ENABLE_SPECULAR
uniform sampler2D specular_texture;
uniform vec3 specular_color;
uniform float specular_shininess;
uniform bool use_specular_map;
in vec3 specular_dir;
#endif
#if ENGINE == SEAL_ENGINE
// Uncharted 2 (Hable) filmic tone mapping.
uniform vec4 tonemap_param; // (ExposureBias, WhitePoint, A, B)
uniform vec4 tonemap_param2; // (C, D, E, F)
uniform bool nolighting;
uniform float grayscale_rate;
vec3 hable(vec3 v)
{
float a = tonemap_param.z, b = tonemap_param.w;
float c = tonemap_param2.x, d = tonemap_param2.y;
float e = tonemap_param2.z, f = tonemap_param2.w;
return ((v * (a * v + c * b) + d * e) / (v * (a * v + b) + d * f)) - e / f;
}
vec3 tone_map(vec3 color)
{
vec3 curr = hable(color * tonemap_param.x);
vec3 white = hable(vec3(tonemap_param.y));
return curr / white;
}
#endif
uniform sampler2D tex;
uniform sampler2D blend_tex;
uniform bool use_blend_texture;
uniform sampler2D alpha_texture;
uniform sampler2D light_texture;
uniform sampler2D shadow_texture;
@@ -44,33 +137,23 @@ uniform float alpha_mod;
uniform bool use_normal_map;
uniform sampler2D normal_texture;
uniform vec3 ambient;
uniform dir_light dir_lights[NR_DIR_LIGHTS];
uniform float specular_strength;
uniform float specular_shininess;
uniform bool use_specular_map;
uniform float rim_exponent;
uniform vec3 rim_color;
uniform vec3 instance_ambient;
uniform vec3 diffuse_mod;
uniform int diffuse_type;
uniform float shadow_darkness;
uniform float shadow_bias;
uniform int fog_type;
uniform float fog_near;
uniform float fog_far;
uniform vec3 fog_color;
uniform int alpha_mode;
in vec2 tex_coord;
in vec2 light_tex_coord;
in vec4 color_mod;
in vec3 frag_pos;
in vec4 shadow_frag_pos;
in float dist;
in vec3 eye;
in vec3 normal;
in vec3 light_dir[NR_DIR_LIGHTS];
in vec3 specular_dir;
in vec3 ls_ex;
in vec3 ls_in;
in float blend_weight;
in vec2 blend_tex_coord;
out vec4 frag_color;
void main() {
@@ -83,40 +166,40 @@ void main() {
}
vec3 view_dir = normalize(eye - frag_pos);
vec3 frag_rgb = ambient;
vec3 frag_rgb = global_ambient + instance_ambient;
// Diffuse lighting
vec4 texel;
vec3 diffuse = vec3(1.0);
if (diffuse_type == DIFFUSE_ENV_MAP) {
texel = texture(tex, (vec2(normal.x, -normal.y) + 1.0) / 2.0);
frag_rgb = texel.rgb;
} else {
texel = texture(tex, tex_coord);
if (diffuse_type == DIFFUSE_EMISSIVE) {
frag_rgb = texel.rgb;
} else {
vec3 diffuse = vec3(0.0);
for (int i = 0; i < NR_DIR_LIGHTS; i++) {
float half_lambert = dot(norm, -light_dir[i]) * 0.5 + 0.5;
diffuse += mix(dir_lights[i].globe_diffuse, dir_lights[i].diffuse, half_lambert);
}
if (use_blend_texture) {
texel = mix(texel, texture(blend_tex, blend_tex_coord), blend_weight);
}
if (diffuse_type != DIFFUSE_EMISSIVE) {
diffuse = compute_diffuse(norm);
if (diffuse_type == DIFFUSE_LIGHT_MAP) {
diffuse *= texture(light_texture, light_tex_coord).rgb;
}
frag_rgb += texel.rgb * diffuse;
}
}
frag_rgb += texel.rgb * diffuse * color_mod.rgb * diffuse_mod;
#if ENABLE_SPECULAR
// Specular lighting
if (specular_strength > 0.0) {
if (any(greaterThan(specular_color, vec3(0.0)))) {
vec3 reflect_dir = reflect(specular_dir, norm);
float specular = pow(max(dot(view_dir, reflect_dir), 0.0), specular_shininess) * specular_strength;
float specular = pow(max(dot(view_dir, reflect_dir), 0.0), specular_shininess);
if (use_specular_map) {
specular *= texture(specular_texture, tex_coord).r;
}
frag_rgb += vec3(specular);
frag_rgb += specular_color * specular;
}
#endif
#if ENGINE == REIGN_ENGINE
// Rim lighting
if (rim_exponent > 0.0) {
// Normal map is not used here.
@@ -128,9 +211,14 @@ void main() {
if (fog_type == FOG_LINEAR) {
float fog_factor = clamp((dist - fog_near) / (fog_far - fog_near), 0.0, 1.0);
frag_rgb = mix(frag_rgb, fog_color, fog_factor);
} else if (fog_type == FOG_LIGHT_SCATTERING) {
}
#endif
#if ENABLE_LIGHT_SCATTERING
if (fog_type == FOG_LIGHT_SCATTERING) {
frag_rgb = frag_rgb * ls_ex + ls_in;
}
#endif
// Shadow mapping
if (shadow_darkness > 0.0) {
@@ -149,13 +237,24 @@ void main() {
frag_rgb *= brightness;
}
#if ENGINE == SEAL_ENGINE
if (!nolighting)
frag_rgb = tone_map(frag_rgb);
if (grayscale_rate != 0.0)
frag_rgb = mix(frag_rgb, vec3(dot(frag_rgb, vec3(0.299, 0.587, 0.114))), grayscale_rate);
#endif
// Alpha mapping
float alpha = texel.a * alpha_mod;
float alpha = texel.a * color_mod.a * alpha_mod;
if (alpha_mode == ALPHA_TEST) {
if (alpha < 0.8)
if (alpha < 0.75)
discard;
} else if (alpha_mode == ALPHA_MAP_BLEND) {
alpha *= texture(alpha_texture, tex_coord).r;
} else if (alpha_mode == ALPHA_MAP_TEST) {
if (texture(alpha_texture, tex_coord).r < 0.1)
discard;
}
frag_color = vec4(frag_rgb, alpha);
+71 -27
View File
@@ -14,10 +14,16 @@
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
#define NR_DIR_LIGHTS 3
const float PI = 3.14159265358979323846;
#define FOG_LIGHT_SCATTERING 2
const float PI = 3.14159265358979323846;
#define ENABLE_SPECULAR (ENGINE == REIGN_ENGINE || ENGINE == SEAL_ENGINE)
#define ENABLE_LIGHT_SCATTERING (ENGINE == REIGN_ENGINE || ENGINE == SEAL_ENGINE)
#if ENGINE == REIGN_ENGINE
#define NR_DIR_LIGHTS 3
struct dir_light {
vec3 dir;
@@ -25,59 +31,88 @@ struct dir_light {
vec3 globe_diffuse;
};
uniform mat4 local_transform;
uniform mat4 view_transform;
uniform mat4 proj_transform;
uniform mat3 normal_transform;
const int MAX_BONES = 211; // see 3d_internal.h
const int NR_WEIGHTS = 4;
uniform bool has_bones;
uniform mat4 bone_matrices[MAX_BONES];
uniform bool use_normal_map;
uniform vec3 camera_pos;
uniform dir_light dir_lights[NR_DIR_LIGHTS];
uniform vec3 specular_light_dir;
uniform mat4 shadow_transform;
out vec3 light_dir[NR_DIR_LIGHTS];
const vec2 uv_scroll = vec2(0.0);
#else // ENGINE == REIGN_ENGINE
uniform vec2 uv_scroll;
#endif // ENGINE == REIGN_ENGINE
uniform vec4 uv_tiling;
#if ENABLE_LIGHT_SCATTERING
uniform int fog_type;
uniform vec4 ls_params; // (beta_r, beta_m, g, distance)
uniform vec3 ls_light_dir;
uniform vec3 ls_light_color;
uniform vec3 ls_sun_color;
out vec3 ls_ex;
out vec3 ls_in;
#endif
#if ENABLE_SPECULAR
uniform vec3 specular_light_dir;
out vec3 specular_dir;
#endif
uniform mat4 local_transform;
uniform mat4 view_transform;
uniform mat4 proj_transform;
uniform mat3 normal_transform;
const int MAX_BONES = 308; // see 3d_internal.h
const int NR_WEIGHTS = 4;
uniform bool has_bones;
layout(std140) uniform BoneTransforms {
mat3x4 bone_matrices[MAX_BONES]; // transposed
};
uniform bool use_normal_map;
uniform vec3 camera_pos;
uniform mat4 shadow_transform;
in vec3 vertex_pos;
in vec3 vertex_normal;
in vec2 vertex_uv;
in vec2 vertex_light_uv;
in vec4 vertex_color;
in vec4 vertex_tangent;
in ivec4 vertex_bone_index;
in vec4 vertex_bone_weight;
in float vertex_blend_weight;
in vec2 vertex_blend_uv;
out vec2 tex_coord;
out vec2 light_tex_coord;
out vec4 color_mod;
out vec3 frag_pos;
out vec4 shadow_frag_pos;
out float dist;
out vec3 eye;
out vec3 normal;
out vec3 light_dir[NR_DIR_LIGHTS];
out vec3 specular_dir;
out vec3 ls_ex;
out vec3 ls_in;
out float blend_weight;
out vec2 blend_tex_coord;
void main() {
mat4 local_bone_transform = local_transform;
mat3 normal_bone_transform = normal_transform;
if (has_bones) {
mat4 bone_transform = mat4(0.f);
mat3x4 bone_transform = mat3x4(0.0);
for (int i = 0; i < NR_WEIGHTS; i++) {
if (vertex_bone_index[i] >= 0) {
bone_transform += bone_matrices[vertex_bone_index[i]] * vertex_bone_weight[i];
}
}
local_bone_transform *= bone_transform;
local_bone_transform *= mat4(
vec4(bone_transform[0].x, bone_transform[1].x, bone_transform[2].x, 0.0),
vec4(bone_transform[0].y, bone_transform[1].y, bone_transform[2].y, 0.0),
vec4(bone_transform[0].z, bone_transform[1].z, bone_transform[2].z, 0.0),
vec4(bone_transform[0].w, bone_transform[1].w, bone_transform[2].w, 1.0));
normal_bone_transform *= mat3(bone_transform);
}
@@ -95,8 +130,11 @@ void main() {
vec4 view_pos = view_transform * world_pos;
gl_Position = proj_transform * view_pos;
tex_coord = vertex_uv;
light_tex_coord = vertex_light_uv;
tex_coord = (vertex_uv + uv_scroll) * uv_tiling.xy;
light_tex_coord = vertex_light_uv + uv_scroll;
color_mod = vertex_color;
blend_weight = vertex_blend_weight;
blend_tex_coord = (vertex_blend_uv + uv_scroll) * uv_tiling.zw;
dist = -view_pos.z;
shadow_frag_pos = shadow_transform * world_pos;
@@ -104,11 +142,16 @@ void main() {
// otherwise.
frag_pos = TBN * vec3(world_pos);
eye = TBN * camera_pos;
#if ENABLE_SPECULAR
specular_dir = TBN * specular_light_dir;
#endif
#if ENGINE == REIGN_ENGINE
light_dir[0] = TBN * dir_lights[0].dir;
light_dir[1] = TBN * dir_lights[1].dir;
light_dir[2] = TBN * dir_lights[2].dir;
specular_dir = TBN * specular_light_dir;
#endif
#if ENABLE_LIGHT_SCATTERING
if (fog_type == FOG_LIGHT_SCATTERING) {
float beta_r = ls_params.x;
float beta_m = ls_params.y;
@@ -127,4 +170,5 @@ void main() {
ls_in = (phase_r * beta_r + phase_m * beta_m) / (beta_r + beta_m) * (1.0 - f_ex) * ls_sun_color;
ls_ex = ls_light_color * f_ex;
}
#endif
}
+22
View File
@@ -0,0 +1,22 @@
/* Copyright (C) 2024 kichikuou <KichikuouChrome@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
uniform vec3 outline_color;
out vec4 frag_color;
void main() {
frag_color = vec4(outline_color, 1.0);
}
+57
View File
@@ -0,0 +1,57 @@
/* Copyright (C) 2024 kichikuou <KichikuouChrome@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
uniform mat4 local_transform;
uniform mat4 view_transform;
uniform mat4 proj_transform;
uniform mat3 normal_transform;
const int MAX_BONES = 308; // see 3d_internal.h
const int NR_WEIGHTS = 4;
uniform bool has_bones;
layout(std140) uniform BoneTransforms {
mat3x4 bone_matrices[MAX_BONES]; // transposed
};
uniform float outline_thickness;
in vec3 vertex_pos;
in vec3 vertex_normal;
in ivec4 vertex_bone_index;
in vec4 vertex_bone_weight;
void main() {
mat4 local_bone_transform = local_transform;
mat3 normal_bone_transform = normal_transform;
if (has_bones) {
mat3x4 bone_transform = mat3x4(0.0);
for (int i = 0; i < NR_WEIGHTS; i++) {
if (vertex_bone_index[i] >= 0) {
bone_transform += bone_matrices[vertex_bone_index[i]] * vertex_bone_weight[i];
}
}
local_bone_transform *= mat4(
vec4(bone_transform[0].x, bone_transform[1].x, bone_transform[2].x, 0.0),
vec4(bone_transform[0].y, bone_transform[1].y, bone_transform[2].y, 0.0),
vec4(bone_transform[0].z, bone_transform[1].z, bone_transform[2].z, 0.0),
vec4(bone_transform[0].w, bone_transform[1].w, bone_transform[2].w, 1.0));
normal_bone_transform *= mat3(bone_transform);
}
vec4 pos = local_bone_transform * vec4(vertex_pos, 1.0);
vec3 normal = normalize(normal_bone_transform * vertex_normal);
gl_Position = proj_transform * view_transform * (pos + vec4(normal, 0.0) * outline_thickness);
}
+13 -7
View File
@@ -14,29 +14,35 @@
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
uniform mat4 world_transform;
uniform mat4 local_transform;
uniform mat4 view_transform;
const int MAX_BONES = 211; // see 3d_internal.h
const int MAX_BONES = 308; // see 3d_internal.h
const int NR_WEIGHTS = 4;
uniform bool has_bones;
uniform mat4 bone_matrices[MAX_BONES];
layout(std140) uniform BoneTransforms {
mat3x4 bone_matrices[MAX_BONES]; // transposed
};
in vec3 vertex_pos;
in ivec4 vertex_bone_index;
in vec4 vertex_bone_weight;
void main() {
mat4 world_bone_transform = world_transform;
mat4 local_bone_transform = local_transform;
if (has_bones) {
mat4 bone_transform = mat4(0.f);
mat3x4 bone_transform = mat3x4(0.0);
for (int i = 0; i < NR_WEIGHTS; i++) {
if (vertex_bone_index[i] >= 0) {
bone_transform += bone_matrices[vertex_bone_index[i]] * vertex_bone_weight[i];
}
}
world_bone_transform *= bone_transform;
local_bone_transform *= mat4(
vec4(bone_transform[0].x, bone_transform[1].x, bone_transform[2].x, 0.0),
vec4(bone_transform[0].y, bone_transform[1].y, bone_transform[2].y, 0.0),
vec4(bone_transform[0].z, bone_transform[1].z, bone_transform[2].z, 0.0),
vec4(bone_transform[0].w, bone_transform[1].w, bone_transform[2].w, 1.0));
}
gl_Position = view_transform * world_bone_transform * vec4(vertex_pos, 1.0);
gl_Position = view_transform * local_bone_transform * vec4(vertex_pos, 1.0);
}
-2
View File
@@ -15,12 +15,10 @@
*/
uniform sampler2D tex;
uniform float alpha_mod;
in vec2 tex_coord;
out vec4 frag_color;
void main() {
frag_color = texture(tex, tex_coord);
frag_color.a *= alpha_mod;
}
+2 -1
View File
@@ -18,9 +18,10 @@ uniform mat4 world_transform;
uniform mat4 view_transform;
in vec4 vertex_pos;
in vec2 vertex_uv;
out vec2 tex_coord;
void main() {
gl_Position = view_transform * world_transform * vertex_pos;
tex_coord = vertex_pos.xy;
tex_coord = vertex_uv;
}
+28
View File
@@ -0,0 +1,28 @@
/* Copyright (C) 2023 Nunuhara Cabbage <nunuhara@haniwa.technology>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
uniform sampler2D tex;
uniform float blend_rate;
uniform vec3 multiply_color;
in vec2 tex_coord;
out vec4 frag_color;
void main() {
frag_color = texture(tex, tex_coord);
frag_color.rgb *= multiply_color;
frag_color.a *= blend_rate;
}
+391 -23
View File
@@ -26,7 +26,7 @@
#include "reign.h"
#define NR_DIR_LIGHTS 3
#define MAX_BONES 211 // Maximum in TT3
#define MAX_BONES 308 // Maximum in Rance Quest
typedef struct vec3_range {
vec3 begin;
@@ -40,32 +40,45 @@ struct model {
int nr_materials;
struct material *materials;
int nr_bones;
struct bone *bones;
struct hash_table *bone_map; // bone id in POL/MOT -> struct bone *
struct hash_table *bone_name_map; // bone name -> (struct bone * | NULL)
struct bone *bones; // ordered so that parents precede their children
struct bone **bones_by_pol_index; // POL bone array index -> struct bone *
struct hash_table *bone_map; // bone id in POL -> struct bone *
struct hash_table *mot_cache; // name -> struct mot *
struct collider *collider;
vec3 aabb[2]; // axis-aligned bounding box
bool has_transparent_material;
bool has_transparent_mesh;
};
struct mesh {
char *name;
uint32_t flags;
bool is_transparent;
bool hidden;
GLuint vao;
GLuint attr_buffer;
GLuint index_buffer;
int nr_vertices;
int nr_indices;
int material;
vec3 outline_color;
float outline_thickness;
vec2 uv_scroll;
vec3 specular_color;
float specular_power;
};
struct material {
uint32_t flags;
bool is_transparent;
GLuint color_map;
vec2 uv_tiling;
vec2 blend_uv_tiling;
int nr_color_maps;
GLuint *color_maps;
GLuint specular_map;
GLuint alpha_map;
GLuint light_map;
GLuint normal_map;
GLuint blend_texture;
float specular_strength;
float specular_shininess;
float shadow_darkness;
@@ -87,6 +100,7 @@ struct motion {
float current_frame;
float frame_begin, frame_end;
float loop_frame_begin, loop_frame_end;
int texture_index;
};
// Attribute variable locations
@@ -97,7 +111,10 @@ enum RE_attribute_location {
VATTR_BONE_INDEX,
VATTR_BONE_WEIGHT,
VATTR_LIGHT_UV,
VATTR_COLOR,
VATTR_TANGENT,
VATTR_BLEND_WEIGHT,
VATTR_BLEND_UV,
};
struct shadow_renderer {
@@ -106,19 +123,33 @@ struct shadow_renderer {
GLuint texture;
// Uniform variable locations
GLint world_transform;
GLint local_transform;
GLint view_transform;
GLint has_bones;
GLint bone_matrices;
};
struct outline_renderer {
GLuint program;
// Uniform variable locations
GLint local_transform;
GLint view_transform;
GLint proj_transform;
GLint normal_transform;
GLint has_bones;
GLint outline_color;
GLint outline_thickness;
};
struct RE_renderer {
int viewport_width;
int viewport_height;
GLuint program;
GLuint depth_buffer;
struct shadow_renderer shadow;
struct outline_renderer outline;
// Uniform variable locations
GLint world_transform;
GLint view_transform;
GLint texture;
GLint local_transform;
@@ -126,8 +157,9 @@ struct RE_renderer {
GLint normal_transform;
GLint alpha_mod;
GLint has_bones;
GLint bone_matrices;
GLint ambient;
GLint global_ambient;
GLint instance_ambient;
GLint diffuse_mod;
struct {
GLint dir;
GLint diffuse;
@@ -135,7 +167,7 @@ struct RE_renderer {
GLint ambient;
} dir_lights[NR_DIR_LIGHTS];
GLint specular_light_dir;
GLint specular_strength;
GLint specular_color;
GLint specular_shininess;
GLint use_specular_map;
GLint specular_texture;
@@ -158,12 +190,29 @@ struct RE_renderer {
GLint ls_light_dir;
GLint ls_light_color;
GLint ls_sun_color;
GLint hemi_light_dir;
GLint hemi_sky_color;
GLint hemi_mid_color;
GLint hemi_ground_color;
GLint tonemap_param;
GLint tonemap_param2;
GLint nolighting;
GLint grayscale_rate;
GLint alpha_mode;
GLint alpha_texture;
GLint uv_scroll;
GLint uv_tiling;
GLint blend_tex;
GLint use_blend_texture;
GLuint billboard_vao;
GLuint billboard_attr_buffer;
struct hash_table *billboard_textures; // cg_no -> struct billboard_texture*
GLuint billboard_particle_vao;
GLuint billboard_particle_attr_buffer;
GLuint billboard_instance_vao;
GLuint billboard_instance_attr_buffer;
struct hash_table *billboard_textures_by_no; // cg_no -> struct billboard_texture*
struct hash_table *billboard_textures_by_path; // path -> struct billboard_texture*
uint32_t last_frame_timestamp;
};
struct billboard_texture {
@@ -173,6 +222,9 @@ struct billboard_texture {
// reign.c
extern enum RE_plugin_version re_plugin_version;
struct RE_instance *RE_create_instance_at(struct RE_plugin *plugin, int index);
void RE_instance_update_local_transform(struct RE_instance *inst);
// model.c
@@ -188,9 +240,11 @@ struct archive_data *RE_get_aar_entry(struct archive *aar, const char *dir, cons
// renderer.c
struct RE_renderer *RE_renderer_new(struct texture *texture);
struct RE_renderer *RE_renderer_new(void);
void RE_renderer_free(struct RE_renderer *r);
bool RE_renderer_load_billboard_texture(struct RE_renderer *r, int cg_no);
void RE_renderer_set_viewport_size(struct RE_renderer *r, int width, int height);
bool RE_renderer_load_billboard_texture_by_no(struct RE_renderer *r, int cg_no);
struct billboard_texture *RE_renderer_load_billboard_texture_by_path(struct RE_renderer *r, struct archive *aar, const char *path);
struct height_detector *RE_renderer_create_height_detector(struct RE_renderer *r, struct model *model);
void RE_renderer_free_height_detector(struct height_detector *hd);
bool RE_renderer_detect_height(struct height_detector *hd, float x, float z, float *y_out);
@@ -366,6 +420,218 @@ void particle_effect_free(struct particle_effect *effect);
void particle_effect_update(struct RE_instance *inst);
void particle_object_calc_local_transform(struct RE_instance *inst, struct particle_object *po, struct particle_instance *pi, float frame, mat4 dest);
// s3de.c
// .3de effect system. The 's' prefix is just to avoid an identifier starting
// with a digit; it stands for SealEngine.
enum s3de_object_type {
S3DE_OBJ_BILLBOARD,
S3DE_OBJ_POLYGON,
S3DE_OBJ_CAMERA,
};
enum s3de_move_type {
S3DE_MOVE_LINEAR,
S3DE_MOVE_BEZIER,
};
enum s3de_spawn_position_type {
S3DE_SPAWN_NORMAL,
S3DE_SPAWN_SPHERE,
S3DE_SPAWN_HORIZONTAL,
};
enum s3de_blend_type {
S3DE_BLEND_NORMAL,
S3DE_BLEND_ADDITIVE,
};
enum s3de_emitter_link_type {
S3DE_LINK_NONE = 0, // frozen at spawn-time world pos
S3DE_LINK_FOLLOW = 1, // particle follows current emitter pos
S3DE_LINK_ROTATE_AT_SPAWN = 2, // emitter rotation around spawn pos
S3DE_LINK_ROTATE_AT_CURRENT = 3, // emitter rotation around current pos
S3DE_LINK_MAX = S3DE_LINK_ROTATE_AT_CURRENT
};
enum s3de_direction_type {
S3DE_DIR_RANDOM,
S3DE_DIR_SPECIFIED,
S3DE_DIR_EMITTER,
S3DE_DIR_EMITTER_REVERSE,
S3DE_DIR_EMITTER_COORD,
S3DE_DIR_ARBITRARY_PLANE,
S3DE_DIR_SPAWN,
};
enum s3de_posture_type {
S3DE_POSE_NONE,
S3DE_POSE_CAMERA,
S3DE_POSE_MOVE_DIR,
S3DE_POSE_MOVE_AND_FLY,
S3DE_POSE_FLY_AND_EMITTER_MOVE,
};
enum s3de_interp_type {
S3DE_INTERP_NONE,
S3DE_INTERP_LINEAR,
S3DE_INTERP_SLERP,
};
struct s3de_range {
float base;
float random;
};
struct s3de_scalar_entry {
int frame;
float value;
enum s3de_interp_type interp;
};
struct s3de_vec3_entry {
int frame;
vec3 v;
enum s3de_interp_type interp;
};
struct s3de_position_entry {
int frame;
vec3 pos;
enum s3de_interp_type interp;
float spawn_radius;
float spawn_angle_deg;
};
struct s3de_object {
char *name;
enum s3de_object_type type;
enum s3de_move_type movement_type;
enum s3de_spawn_position_type spawn_position_type;
float spawn_distance;
int particle_count;
char *texture;
enum s3de_blend_type blend_type;
char *polygon_name;
enum s3de_emitter_link_type emitter_link_type;
bool soft_fog_edge;
enum s3de_posture_type posture_type;
enum s3de_direction_type direction_type;
vec3 direction;
float direction_angle;
struct s3de_range start_size, end_size;
struct s3de_range start_x_size, end_x_size;
struct s3de_range start_y_size, end_y_size;
struct s3de_range offset_x, offset_y, offset_z;
struct s3de_range speed, acceleration;
struct s3de_range movement_distance, movement_curve;
bool free_fall;
float mass, air_resistance;
struct s3de_range start_x_rotation, end_x_rotation;
struct s3de_range start_y_rotation, end_y_rotation;
struct s3de_range start_z_rotation, end_z_rotation;
float x_revolution_angle[2], y_revolution_angle[2], z_revolution_angle[2];
float x_revolution_distance[2], y_revolution_distance[2], z_revolution_distance[2];
int child_frame;
float texture_anime_frame;
struct s3de_range alpha_fade_in_frame, alpha_fade_out_frame;
int *damages;
int nr_damages;
struct s3de_position_entry *position_list;
int nr_position_entries;
struct s3de_scalar_entry *size_list;
int nr_size_entries;
struct s3de_scalar_entry *x_size_list;
int nr_x_size_entries;
struct s3de_scalar_entry *y_size_list;
int nr_y_size_entries;
struct s3de_scalar_entry *alpha_list;
int nr_alpha_entries;
struct s3de_vec3_entry *rotation_list;
int nr_rotation_entries;
struct s3de_vec3_entry *multiply_color_list;
int nr_multiply_color_entries;
struct s3de_vec3_entry *additive_color_list;
int nr_additive_color_entries;
struct model *model;
};
struct s3de {
char *path;
int loop_start_frame;
int loop_end_frame;
struct s3de_object *objects;
int nr_objects;
struct hash_table *textures; // name -> struct billboard_texture*
};
struct s3de *s3de_load(struct archive *aar, const char *path);
void s3de_free(struct s3de *s);
struct s3de_particle {
float begin_frame, end_frame;
vec3 world_pos; // spawn-time world position
vec3 spawn_offset; // offset from emitter pos
vec3 direction;
vec3 spawn_dir; // emitter motion direction at spawn frame
float speed, accel;
float movement_distance, movement_curve;
float start_size_scale, end_size_scale;
float start_x_scale, end_x_scale;
float start_y_scale, end_y_scale;
float offset_x, offset_y; // per-particle 2D quad pivot shift
vec3 start_rotation_deg, end_rotation_deg;
float fade_in_frames, fade_out_frames;
};
// Emitter-level values interpolated once per frame by s3de_effect_update,
// then read (and combined with per-particle values) during rendering.
struct s3de_object_state {
vec3 emitter_pos;
float emitter_size, emitter_x_size, emitter_y_size;
float emitter_alpha;
vec3 emitter_rotation_deg;
vec3 multiply_color;
vec3 additive_color;
struct s3de_particle *particles; // length = obj->particle_count
};
struct s3de_effect {
struct s3de *s3de;
struct s3de_object_state *objects; // length = s3de->nr_objects
int wav_channel; // -1 if no sound
bool sound_started;
float last_frame;
};
struct s3de_effect *s3de_effect_create(struct s3de *s, struct archive *aar);
void s3de_effect_free(struct s3de_effect *eff);
void s3de_effect_update(struct RE_instance *inst);
void s3de_calc_frame_range(struct s3de *s, struct motion *motion);
bool s3de_particle_alpha(struct s3de_object_state *st, struct s3de_particle *p,
float frame, float *alpha_out);
bool s3de_billboard_world_transform(struct RE_instance *inst,
struct s3de_object *obj, struct s3de_object_state *st,
struct s3de_particle *p, float frame, mat3 camera_rot,
mat4 out);
bool s3de_mesh_world_transform(struct RE_instance *inst,
struct s3de_object *obj, struct s3de_object_state *st,
struct s3de_particle *p, float frame, mat3 camera_rot, vec3 camera_pos,
mat4 out);
// parser.c
struct pol {
@@ -389,26 +655,38 @@ enum pol_texture_type {
enum material_flags {
MATERIAL_SPRITE = 1 << 0,
MATERIAL_ALPHA = 1 << 1,
};
struct pol_material {
char *name;
uint32_t flags;
char *textures[MAX_TEXTURE_TYPE];
vec2 uv_tiling;
};
struct pol_material_group {
struct pol_material m;
uint32_t nr_children;
struct pol_material *children;
struct pol_material_group *children;
};
enum mesh_flags {
MESH_NOLIGHTING = 1 << 0,
MESH_NOMAKESHADOW = 1 << 1,
MESH_ENVMAP = 1 << 2,
MESH_BOTH = 1 << 3,
MESH_SPRITE = 1 << 4,
MESH_NOLIGHTING = 1 << 0,
MESH_NOMAKESHADOW = 1 << 1,
MESH_ENVMAP = 1 << 2,
MESH_BOTH = 1 << 3,
MESH_SPRITE = 1 << 4,
MESH_BLEND_ADDITIVE = 1 << 5,
MESH_NO_EDGE = 1 << 6,
MESH_NO_HEIGHT_DETECTION = 1 << 7,
MESH_ALPHA = 1 << 8,
MESH_HAS_LIGHT_UV = 1 << 9,
MESH_NO_ZWRITE = 1 << 10,
MESH_HEIGHT_DETECTION = 1 << 11,
MESH_HAS_SPECULAR_COLOR = 1 << 12,
MESH_HAS_SPECULAR_POWER = 1 << 13,
MESH_NO_DRAWSHADOW = 1 << 14,
};
struct pol_mesh {
@@ -421,8 +699,22 @@ struct pol_mesh {
vec2 *uvs;
uint32_t nr_light_uvs;
vec2 *light_uvs;
uint32_t nr_colors;
vec3 *colors;
uint32_t nr_alphas;
float *alphas;
uint32_t nr_blend_uvs;
vec2 *blend_uvs;
uint32_t nr_blend_weights;
float *blend_weights;
uint32_t nr_triangles;
struct pol_triangle *triangles;
// Parameters in .opr file.
Color edge_color;
float edge_size;
vec2 uv_scroll;
vec3 specular_color;
float specular_power;
};
struct pol_vertex {
@@ -440,6 +732,10 @@ struct pol_triangle {
uint32_t vert_index[3];
uint32_t uv_index[3];
uint32_t light_uv_index[3];
uint32_t color_index[3];
uint32_t alpha_index[3];
uint32_t blend_uv_index[3];
uint32_t blend_weight_index[3];
vec3 normals[3];
uint32_t material_group_index;
};
@@ -456,6 +752,9 @@ struct mot {
char *name;
uint32_t nr_frames;
uint32_t nr_bones;
uint32_t nr_texture_indices;
uint32_t *texture_indices; // texture index for each frame
struct mpr *mpr; // optional
struct mot_bone *motions[];
};
@@ -506,4 +805,73 @@ struct amt *amt_parse(uint8_t *data, size_t size);
void amt_free(struct amt *amt);
struct amt_material *amt_find_material(struct amt *amt, const char *name);
void opr_load(uint8_t *data, size_t size, struct pol *pol);
void txa_load(uint8_t *data, size_t size, struct mot *mot);
void lit_reset(float *out);
bool lit_parse(uint8_t *data, size_t size, float *out);
// mpr.c
struct mpr_float_key { int frame; float v; };
struct mpr_vec3_key { int frame; vec3 v; };
struct mpr_int_key { int frame; int v; };
struct mpr_track_set {
int nr_mul_alpha;
struct mpr_float_key *mul_alpha;
int nr_mul_diffuse;
struct mpr_vec3_key *mul_diffuse;
int nr_add_ambient;
struct mpr_vec3_key *add_ambient;
int nr_texture_anime;
struct mpr_int_key *texture_anime; // mesh-scope only
};
struct mpr {
int nr_meshes; // == model->nr_meshes
struct mpr_track_set **mesh_tracks; // sparse: indexed by mesh index, NULL if absent
struct mpr_track_set object;
bool has_mesh_alpha; // any mesh_tracks[i]->nr_mul_alpha > 0
};
// Per-draw material modulation.
struct mpr_modulation {
float alpha;
vec3 ambient;
vec3 diffuse;
};
struct mpr *mpr_load(uint8_t *data, size_t size, struct model *model);
void mpr_free(struct mpr *mpr);
void mpr_evaluate_object(const struct mpr *mpr, float frame,
struct RE_instance *inst, struct mpr_modulation *out);
void mpr_evaluate_mesh(const struct mpr_track_set *mt, float frame,
const struct mpr_modulation *obj, struct mpr_modulation *out);
void mpr_build_mat_tex_index(const struct model *model, const struct RE_instance *inst,
const struct mpr *mpr, float frame, int *mat_tex_index);
// collision.c
struct collider_triangle;
struct collider_edge;
struct collider {
struct collider_triangle *triangles;
uint32_t nr_triangles;
struct collider_edge *edges; // boundary edges
uint32_t nr_edges;
vec3 *path_points;
uint32_t nr_path_points;
};
struct collider *collider_create(struct pol_mesh *mesh);
struct collider *collider_create_raycast(struct pol_mesh **meshes, int nr_meshes);
void collider_free(struct collider *collider);
bool collider_height(struct collider *collider, vec2 xz, float *h_out);
bool check_collision(struct collider *collider, vec2 p0, vec2 p1, float radius, vec2 out);
bool collider_raycast(struct collider *collider, vec3 origin, vec3 direction, vec3 out);
bool collider_find_path(struct collider *collider, vec3 start, vec3 goal, mat4 vp_transform);
bool collider_optimize_path(struct collider *collider);
#endif /* SYSTEM4_3D_3D_INTERNAL_H */
+534
View File
@@ -0,0 +1,534 @@
/* Copyright (C) 2024 kichikuou <KichikuouChrome@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
#include <assert.h>
#include <float.h>
#include <stdlib.h>
#include <cglm/cglm.h>
#include "system4.h"
#include "3d_internal.h"
struct collider_triangle {
vec3 vertices[3];
vec3 center;
vec2 aabb[2]; // xz coordinates
vec2 slope;
float intercept;
int neighbors[3];
};
struct collider_edge {
vec2 vertices[2]; // xz coordinates
vec2 aabb[2];
};
static struct collider_triangle *fill_triangles(struct collider_triangle *t, struct pol_mesh *mesh)
{
for (int tri_i = 0; tri_i < mesh->nr_triangles; tri_i++, t++) {
glm_aabb2d_invalidate(t->aabb);
for (int i = 0; i < 3; i++) {
glm_vec3_copy(mesh->vertices[mesh->triangles[tri_i].vert_index[i]].pos, t->vertices[i]);
glm_vec3_add(t->center, t->vertices[i], t->center);
vec2 xz = { t->vertices[i][0], t->vertices[i][2] };
glm_vec2_minv(xz, t->aabb[0], t->aabb[0]);
glm_vec2_maxv(xz, t->aabb[1], t->aabb[1]);
}
glm_vec3_divs(t->center, 3.f, t->center);
// Do some precomputation so that we can calculate height(x, z) quickly.
vec3 v1, v2, normal;
glm_vec3_sub(t->vertices[1], t->vertices[0], v1);
glm_vec3_sub(t->vertices[2], t->vertices[0], v2);
glm_vec3_cross(v1, v2, normal);
t->slope[0] = -normal[0] / normal[1];
t->slope[1] = -normal[2] / normal[1];
t->intercept = glm_vec3_dot(normal, t->vertices[0]) / normal[1];
for (int i = 0; i < 3; i++) {
t->neighbors[i] = -1;
}
}
return t;
}
static void init_triangles(struct collider *collider, struct pol_mesh *mesh)
{
collider->nr_triangles = mesh->nr_triangles;
collider->triangles = xcalloc(mesh->nr_triangles, sizeof(struct collider_triangle));
fill_triangles(collider->triangles, mesh);
}
static void link_neighbors(struct collider *collider, int t1_index, int t2_index)
{
struct collider_triangle *t1 = &collider->triangles[t1_index];
struct collider_triangle *t2 = &collider->triangles[t2_index];
for (int i = 0; i < 3; i++) {
if (t1->neighbors[i] == -1) {
t1->neighbors[i] = t2_index;
break;
}
}
for (int i = 0; i < 3; i++) {
if (t2->neighbors[i] == -1) {
t2->neighbors[i] = t1_index;
break;
}
}
}
static void init_edges(struct collider *collider, struct pol_mesh *mesh)
{
// Link neighboring triangles.
if (mesh->nr_triangles >= 65535)
ERROR("Too many triangles in collision mesh: %d", mesh->nr_triangles);
const int nv = mesh->nr_vertices;
const int table_size = nv * nv;
uint16_t *table = xcalloc(table_size, sizeof(uint16_t));
int nr_edges = 0;
for (int i = 0; i < mesh->nr_triangles; i++) {
for (int j = 0; j < 3; j++) {
int v1 = mesh->triangles[i].vert_index[j];
int v2 = mesh->triangles[i].vert_index[(j + 1) % 3];
int k = v2 * nv + v1;
if (table[k]) {
link_neighbors(collider, table[k] - 1, i);
table[k] = 0;
nr_edges--;
} else {
table[v1 * nv + v2] = i + 1;
nr_edges++;
}
}
}
// Collect boundary edges, i.e., edges that belong to only one triangle.
collider->nr_edges = nr_edges;
collider->edges = xcalloc(nr_edges, sizeof(struct collider_edge));
struct collider_edge* edge = collider->edges;
for (int i = 0; i < table_size; i++) {
if (!table[i]) continue;
int v1 = i / nv;
int v2 = i % nv;
edge->vertices[0][0] = mesh->vertices[v1].pos[0];
edge->vertices[0][1] = mesh->vertices[v1].pos[2];
edge->vertices[1][0] = mesh->vertices[v2].pos[0];
edge->vertices[1][1] = mesh->vertices[v2].pos[2];
glm_vec2_minv(edge->vertices[0], edge->vertices[1], edge->aabb[0]);
glm_vec2_maxv(edge->vertices[0], edge->vertices[1], edge->aabb[1]);
edge++;
}
assert(edge == collider->edges + nr_edges);
free(table);
}
struct collider *collider_create(struct pol_mesh *mesh)
{
struct collider *collider = xcalloc(1, sizeof(struct collider));
init_triangles(collider, mesh);
init_edges(collider, mesh);
return collider;
}
// Creates a collider for raycasting only (no edges / neighbor links), from the
// union of the given meshes' triangles. Used for SealEngine HeightDetection meshes.
struct collider *collider_create_raycast(struct pol_mesh **meshes, int nr_meshes)
{
struct collider *collider = xcalloc(1, sizeof(struct collider));
for (int i = 0; i < nr_meshes; i++)
collider->nr_triangles += meshes[i]->nr_triangles;
collider->triangles = xcalloc(collider->nr_triangles, sizeof(struct collider_triangle));
struct collider_triangle *t = collider->triangles;
for (int i = 0; i < nr_meshes; i++)
t = fill_triangles(t, meshes[i]);
return collider;
}
void collider_free(struct collider *collider)
{
free(collider->triangles);
free(collider->edges);
free(collider->path_points);
free(collider);
}
static bool in_triangle(struct collider_triangle* t, vec2 xz)
{
vec2 v[3];
for (int i = 0; i < 3; i++) {
v[i][0] = t->vertices[i][0];
v[i][1] = t->vertices[i][2];
}
for (int i = 0; i < 3; i++) {
vec2 a, b;
glm_vec2_sub(v[(i + 1) % 3], v[i], a);
glm_vec2_sub(xz, v[i], b);
if (glm_vec2_cross(a, b) > 0.f)
return false;
}
return true;
}
static struct collider_triangle* find_triangle(struct collider *collider, vec2 xz)
{
struct collider_triangle* t = collider->triangles;
for (; t < collider->triangles + collider->nr_triangles; t++) {
if (!glm_aabb2d_point(t->aabb, xz))
continue;
if (in_triangle(t, xz))
return t;
}
return NULL;
}
bool collider_height(struct collider *collider, vec2 xz, float *h_out)
{
struct collider_triangle* t = find_triangle(collider, xz);
if (!t)
return false;
*h_out = glm_vec2_dot(t->slope, xz) + t->intercept;
return true;
}
// Calculates the squared distance from a point to a line segment in 2D space.
static float distance2_point_to_segment(vec2 p, vec2 a, vec2 b, vec2 closest_point_out)
{
vec2 v, w;
glm_vec2_sub(b, a, v);
glm_vec2_sub(p, a, w);
float c1 = glm_vec2_dot(w, v);
if (c1 < 0.f) {
glm_vec2_copy(a, closest_point_out);
return glm_vec2_distance2(p, a);
}
float c2 = glm_vec2_norm2(v);
if (c2 <= c1) {
glm_vec2_copy(b, closest_point_out);
return glm_vec2_distance2(p, b);
}
float t = c1 / c2;
glm_vec2_copy(a, closest_point_out);
glm_vec2_muladds(v, t, closest_point_out);
return glm_vec2_distance2(p, closest_point_out);
}
static bool segments_intersect(vec2 p0, vec2 p1, vec2 q0, vec2 q1)
{
vec2 r, s;
glm_vec2_sub(p1, p0, r);
glm_vec2_sub(q1, q0, s);
float r_cross_s = glm_vec2_cross(r, s);
if (r_cross_s == 0.f) {
// The segments are collinear.
return false;
}
vec2 q0_p0;
glm_vec2_sub(q0, p0, q0_p0);
float t = glm_vec2_cross(q0_p0, s) / r_cross_s;
float u = glm_vec2_cross(q0_p0, r) / r_cross_s;
return (t >= 0.f && t <= 1.f && u >= 0.f && u <= 1.f);
}
bool check_collision(struct collider *collider, vec2 p0, vec2 p1, float radius, vec2 out)
{
if (find_triangle(collider, p1)) {
glm_vec2_copy(p1, out);
} else {
if (!find_triangle(collider, p0))
return false;
// Find a point on the "collision" mesh, using binary search.
vec2 good, bad;
glm_vec2_copy(p0, good);
glm_vec2_copy(p1, bad);
float w = glm_vec2_distance(good, bad);
while (w > radius) {
vec2 mid;
glm_vec2_center(good, bad, mid);
if (find_triangle(collider, mid)) {
glm_vec2_copy(mid, good);
} else {
glm_vec2_copy(mid, bad);
}
w /= 2.f;
}
glm_vec2_copy(good, out);
}
// Ensure that `out` is at least `radius` away from any boundary edge.
vec2 aabb[2];
glm_vec2_subs(out, radius, aabb[0]);
glm_vec2_adds(out, radius, aabb[1]);
for (int i = 0; i < collider->nr_edges; i++) {
struct collider_edge *e = &collider->edges[i];
if (!glm_aabb2d_aabb(e->aabb, aabb))
continue;
vec2 q;
float sq_distance = distance2_point_to_segment(out, e->vertices[0], e->vertices[1], q);
if (sq_distance < radius * radius) {
// out = q + normalize(out - q) * radius
vec2 v;
glm_vec2_sub(out, q, v);
glm_vec2_normalize(v);
glm_vec2_copy(q, out);
glm_vec2_muladds(v, radius, out);
// update AABB
glm_vec2_subs(out, radius, aabb[0]);
glm_vec2_adds(out, radius, aabb[1]);
}
}
return true;
}
bool collider_raycast(struct collider *collider, vec3 origin, vec3 direction, vec3 out)
{
// Return the intersection nearest to the ray origin (closest to the camera).
float nearest = FLT_MAX;
struct collider_triangle* t = collider->triangles;
for (; t < collider->triangles + collider->nr_triangles; t++) {
float d;
if (glm_ray_triangle(origin, direction, t->vertices[0], t->vertices[1], t->vertices[2], &d)) {
if (d < nearest)
nearest = d;
}
}
if (nearest == FLT_MAX)
return false;
glm_vec3_scale(direction, nearest, out);
glm_vec3_add(origin, out, out);
return true;
}
struct pathfinder_node {
int pred;
float g_score;
enum { UNDISCOVERED, IN_FRONTIER, VISITED, NOT_VISIBLE } state;
};
struct frontier {
int triangle_index;
float f_score;
};
struct pathfinder {
struct pathfinder_node *nodes; // indexed by triangle index
struct frontier *frontiers; // min-heap
int nr_frontiers;
};
static int frontier_pop(struct pathfinder *pf)
{
if (pf->nr_frontiers == 0) {
return -1;
}
int index = pf->frontiers[0].triangle_index;
if (--pf->nr_frontiers > 0) {
pf->frontiers[0] = pf->frontiers[pf->nr_frontiers];
int i = 0;
while (i < pf->nr_frontiers) {
int left = 2 * i + 1;
int right = 2 * i + 2;
int smallest = i;
if (left < pf->nr_frontiers && pf->frontiers[left].f_score < pf->frontiers[smallest].f_score) {
smallest = left;
}
if (right < pf->nr_frontiers && pf->frontiers[right].f_score < pf->frontiers[smallest].f_score) {
smallest = right;
}
if (smallest == i) {
break;
}
struct frontier tmp = pf->frontiers[i];
pf->frontiers[i] = pf->frontiers[smallest];
pf->frontiers[smallest] = tmp;
i = smallest;
}
}
return index;
}
static void frontier_push(struct pathfinder *pf, int index, float f_score)
{
pf->frontiers[pf->nr_frontiers++] = (struct frontier){ index, f_score };
int i = pf->nr_frontiers - 1;
while (i > 0) {
int parent = (i - 1) / 2;
if (pf->frontiers[i].f_score >= pf->frontiers[parent].f_score) {
break;
}
struct frontier tmp = pf->frontiers[i];
pf->frontiers[i] = pf->frontiers[parent];
pf->frontiers[parent] = tmp;
i = parent;
}
}
static bool is_point_visible(vec3 point, mat4 vp_transform)
{
vec4 p = { point[0], point[1], point[2], 1.f };
glm_mat4_mulv(vp_transform, p, p);
// Check if the point is in the view frustum.
return p[0] >= -p[3] && p[0] <= p[3] &&
p[1] >= -p[3] && p[1] <= p[3] &&
p[2] >= -p[3] && p[2] <= p[3];
}
bool collider_find_path(struct collider *collider, vec3 start, vec3 goal, mat4 vp_transform)
{
if (collider->path_points) {
collider->nr_path_points = 0;
free(collider->path_points);
collider->path_points = NULL;
}
// A* search for a graph with triangle centers as nodes and neighbors as edges.
struct collider_triangle* start_t = find_triangle(collider, (vec2){ start[0], start[2] });
if (!start_t || !is_point_visible(start_t->center, vp_transform))
return false;
struct collider_triangle* goal_t = find_triangle(collider, (vec2){ goal[0], goal[2] });
if (!goal_t || !is_point_visible(goal_t->center, vp_transform))
return false;
int start_i = start_t - collider->triangles;
int goal_i = goal_t - collider->triangles;
struct pathfinder pf;
pf.nodes = xcalloc(collider->nr_triangles, sizeof(struct pathfinder_node));
pf.nodes[goal_i].pred = -2;
pf.nodes[start_i].pred = -1;
pf.nodes[start_i].g_score = 0.f;
pf.nodes[start_i].state = IN_FRONTIER;
pf.frontiers = xcalloc(collider->nr_triangles, sizeof(struct frontier));
pf.nr_frontiers = 0;
frontier_push(&pf, start_i, glm_vec3_distance(start_t->center, goal_t->center));
while (pf.nr_frontiers > 0) {
int current_i = frontier_pop(&pf);
if (pf.nodes[current_i].state == VISITED)
continue;
struct collider_triangle *current_t = &collider->triangles[current_i];
if (current_i == goal_i)
break;
pf.nodes[current_i].state = VISITED;
for (int j = 0; j < 3; j++) {
int neighbor_i = current_t->neighbors[j];
if (neighbor_i == -1)
continue;
struct collider_triangle *neighbor_t = &collider->triangles[neighbor_i];
struct pathfinder_node *neighbor_n = &pf.nodes[neighbor_i];
if (neighbor_n->state == NOT_VISIBLE)
continue;
if (neighbor_n->state == UNDISCOVERED && !is_point_visible(neighbor_t->center, vp_transform)) {
neighbor_n->state = NOT_VISIBLE;
continue;
}
float g = pf.nodes[current_i].g_score + glm_vec3_distance(current_t->center, neighbor_t->center);
if (neighbor_n->state == UNDISCOVERED || g < neighbor_n->g_score) {
neighbor_n->pred = current_i;
neighbor_n->g_score = g;
neighbor_n->state = IN_FRONTIER;
float f_score = g + glm_vec3_distance(neighbor_t->center, goal_t->center);
frontier_push(&pf, neighbor_i, f_score);
}
}
}
if (pf.nodes[goal_i].pred != -2) {
// Reconstruct the path.
int path_length = 0;
int current_i = goal_i;
while (current_i != -1) {
path_length++;
current_i = pf.nodes[current_i].pred;
}
collider->nr_path_points = path_length + 2;
collider->path_points = xcalloc(path_length + 2, sizeof(vec3));
glm_vec3_copy(start, collider->path_points[0]);
glm_vec3_copy(goal, collider->path_points[path_length + 1]);
current_i = goal_i;
for (int i = path_length - 1; i >= 0; i--) {
glm_vec3_copy(collider->triangles[current_i].center, collider->path_points[i + 1]);
current_i = pf.nodes[current_i].pred;
}
}
free(pf.nodes);
free(pf.frontiers);
return !!collider->path_points;
}
// determines if a segment intersects with any collider edges, or is close enough to them.
static bool test_segment(struct collider *collider, vec2 p0, vec2 p1, float threshold)
{
vec2 aabb[2];
glm_vec2_minv(p0, p1, aabb[0]);
glm_vec2_maxv(p0, p1, aabb[1]);
aabb[0][0] -= threshold;
aabb[0][1] -= threshold;
aabb[1][0] += threshold;
aabb[1][1] += threshold;
float threshold2 = threshold * threshold;
for (int i = 0; i < collider->nr_edges; i++) {
struct collider_edge *e = &collider->edges[i];
if (!glm_aabb2d_aabb(e->aabb, aabb))
continue;
if (segments_intersect(p0, p1, e->vertices[0], e->vertices[1]))
return true;
vec2 closest_point;
float distance2 = distance2_point_to_segment(p0, e->vertices[0], e->vertices[1], closest_point);
if (distance2 < threshold2)
return true;
distance2 = distance2_point_to_segment(p1, e->vertices[0], e->vertices[1], closest_point);
if (distance2 < threshold2)
return true;
distance2 = distance2_point_to_segment(p0, p1, e->vertices[0], closest_point);
if (distance2 < threshold2)
return true;
distance2 = distance2_point_to_segment(p0, p1, e->vertices[1], closest_point);
if (distance2 < threshold2)
return true;
}
return false;
}
static void optimize_path_rec(struct collider *collider, vec3 *points, int start, int end)
{
if (end - start >= 2) {
// If the segment (points[start], points[end]) does not intersect any
// collider edges, we can skip all points in between.
vec2 p0 = { points[start][0], points[start][2] };
vec2 p1 = { points[end][0], points[end][2] };
if (test_segment(collider, p0, p1, 0.5f)) {
int mid = (start + end) / 2;
optimize_path_rec(collider, points, start, mid);
optimize_path_rec(collider, points, mid, end);
return;
}
}
glm_vec3_copy(points[start], collider->path_points[collider->nr_path_points++]);
}
bool collider_optimize_path(struct collider *collider)
{
if (collider->nr_path_points < 3)
return collider->nr_path_points > 0; // nothing to optimize
int nr_points = collider->nr_path_points;
vec3 *points = xmalloc(nr_points * sizeof(vec3));
memcpy(points, collider->path_points, nr_points * sizeof(vec3));
collider->nr_path_points = 0;
optimize_path_rec(collider, points, 0, nr_points - 1);
glm_vec3_copy(points[nr_points - 1], collider->path_points[collider->nr_path_points++]);
free(points);
return true;
}
+356 -72
View File
@@ -17,7 +17,13 @@
#include "system4/string.h"
#include "3d_internal.h"
#include "cJSON.h"
#include "debugger.h"
#include "gfx/gfx.h"
#include "json.h"
#include "reign.h"
#include "sact.h"
#include "scene.h"
#include "sprite.h"
#include "xsystem4.h"
@@ -33,6 +39,7 @@ static const char *instance_type_name(enum RE_instance_type type)
case RE_ITYPE_DIRECTIONAL_LIGHT: return "DIRECTIONAL_LIGHT";
case RE_ITYPE_SPECULAR_LIGHT: return "SPECULAR_LIGHT";
case RE_ITYPE_PARTICLE_EFFECT: return "PARTICLE_EFFECT";
case RE_ITYPE_PATH_LINE: return "PATH_LINE";
}
return "UNKNOWN";
}
@@ -57,107 +64,384 @@ static const char *fog_type_name(enum RE_fog_type type)
return "UNKNOWN";
}
static void print_motion(const char *name, struct motion *m, int indent)
static cJSON *motion_to_json(struct motion *m)
{
if (m->instance->type == RE_ITYPE_BILLBOARD) {
indent_printf(indent, "%s = {state=%s, frame=%f, range=(%d,%d), loop_range=(%d,%d)},\n",
name, motion_state_name(m->state), m->current_frame,
(int)m->frame_begin, (int)m->frame_end, (int)m->loop_frame_begin, (int)m->loop_frame_end);
} else if (m->mot) {
indent_printf(indent, "%s = {name=\"%s\", state=%s, frame=%f},\n",
name, m->mot->name, motion_state_name(m->state), m->current_frame);
cJSON *obj = cJSON_CreateObject();
cJSON_AddStringToObject(obj, "state", motion_state_name(m->state));
cJSON_AddNumberToObject(obj, "frame", m->current_frame);
cJSON_AddItemToObjectCS(obj, "range", num2_to_json(m->frame_begin, m->frame_end));
cJSON_AddItemToObjectCS(obj, "loop_range", num2_to_json(m->loop_frame_begin, m->loop_frame_end));
return obj;
}
if (m->mot) {
cJSON *obj = cJSON_CreateObject();
cJSON_AddStringToObject(obj, "name", m->mot->name);
cJSON_AddStringToObject(obj, "state", motion_state_name(m->state));
cJSON_AddNumberToObject(obj, "frame", m->current_frame);
return obj;
}
return cJSON_CreateNull();
}
static void print_instance(struct RE_instance *inst, int index, int indent)
static cJSON *instance_to_json(struct RE_instance *inst, int index, bool verbose)
{
if (!inst)
return;
indent_printf(indent, "instance[%d] = {\n", index);
indent++;
indent_printf(indent, "type = %s,\n", instance_type_name(inst->type));
cJSON *obj = cJSON_CreateObject();
cJSON_AddNumberToObject(obj, "index", index);
cJSON_AddStringToObject(obj, "type", instance_type_name(inst->type));
if (inst->type == RE_ITYPE_DIRECTIONAL_LIGHT || inst->type == RE_ITYPE_SPECULAR_LIGHT) {
indent_printf(indent, "vec = {x=%f, y=%f, z=%f},\n", SPREAD_VEC3(inst->vec));
indent_printf(indent, "diffuse = {r=%f, g=%f, b=%f},\n", SPREAD_VEC3(inst->diffuse));
indent_printf(indent, "globe_diffuse = {r=%f, g=%f, b=%f},\n", SPREAD_VEC3(inst->globe_diffuse));
cJSON_AddItemToObjectCS(obj, "vec", vec3_point_to_json(inst->vec, verbose));
cJSON_AddItemToObjectCS(obj, "diffuse", vec3_color_to_json(inst->diffuse, verbose));
cJSON_AddItemToObjectCS(obj, "globe_diffuse", vec3_color_to_json(inst->globe_diffuse, verbose));
} else {
indent_printf(indent, "draw = %d,\n", inst->draw);
indent_printf(indent, "pos = {x=%f, y=%f, z=%f},\n", SPREAD_VEC3(inst->pos));
indent_printf(indent, "scale = {x=%f, y=%f, z=%f},\n", SPREAD_VEC3(inst->scale));
indent_printf(indent, "ambient = {r=%f, g=%f, b=%f},\n", SPREAD_VEC3(inst->ambient));
cJSON_AddNumberToObject(obj, "draw", inst->draw);
cJSON_AddItemToObjectCS(obj, "pos", vec3_point_to_json(inst->pos, verbose));
cJSON_AddItemToObjectCS(obj, "scale", vec3_point_to_json(inst->scale, verbose));
cJSON_AddItemToObjectCS(obj, "ambient", vec3_color_to_json(inst->ambient, verbose));
}
if (inst->model) {
indent_printf(indent, "path = \"%s\",\n", inst->model->path);
indent_printf(indent, "aabb = {min = {x=%f, y=%f, z=%f}, max = {x=%f, y=%f, z=%f}},\n",
SPREAD_VEC3(inst->model->aabb[0]), SPREAD_VEC3(inst->model->aabb[1]));
cJSON *tmp;
cJSON_AddStringToObject(obj, "path", inst->model->path);
cJSON_AddItemToObjectCS(obj, "aabb", tmp = cJSON_CreateObject());
cJSON_AddItemToObjectCS(tmp, "min", vec3_point_to_json(inst->model->aabb[0], verbose));
cJSON_AddItemToObjectCS(tmp, "max", vec3_point_to_json(inst->model->aabb[1], verbose));
}
if (inst->motion) {
indent_printf(indent, "fps = %f,\n", inst->fps);
print_motion("motion", inst->motion, indent);
cJSON_AddNumberToObject(obj, "fps", inst->fps);
cJSON_AddItemToObjectCS(obj, "motion", motion_to_json(inst->motion));
}
if (inst->next_motion) {
cJSON_AddItemToObjectCS(obj, "next_motion", motion_to_json(inst->next_motion));
}
if (inst->motion_blend) {
cJSON_AddNumberToObject(obj, "motion_blend_rate", inst->motion_blend_rate);
}
if (inst->effect) {
cJSON_AddStringToObject(obj, "path", inst->effect->pae->path);
}
if (inst->s3de_effect && inst->s3de_effect->s3de) {
cJSON_AddStringToObject(obj, "path", inst->s3de_effect->s3de->path);
}
if (inst->next_motion)
print_motion("next_motion", inst->next_motion, indent);
if (inst->motion_blend)
indent_printf(indent, "motion_blend_rate = %f,\n", inst->motion_blend_rate);
if (inst->effect)
indent_printf(indent, "path = \"%s\",\n", inst->effect->pae->path);
indent--;
indent_printf(indent, "},\n");
return obj;
}
static void print_back_cg(struct RE_back_cg *bcg, int index, int indent)
static cJSON *back_cg_to_json(struct RE_back_cg *bcg, int index, bool verbose)
{
if (!bcg->name && !bcg->no)
return;
indent_printf(indent, "backCG[%d] = {\n", index);
indent++;
if (bcg->no)
indent_printf(indent, "no = %d,\n", bcg->no);
if (bcg->name)
indent_printf(indent, "name = \"%s\",\n", bcg->name ? bcg->name->text : "");
indent_printf(indent, "pos = {x=%f, y=%f},\n", bcg->x, bcg->y);
indent_printf(indent, "blend_rate = %f,\n", bcg->blend_rate);
indent_printf(indent, "mag = %f,\n", bcg->mag);
indent_printf(indent, "show = %d,\n", bcg->show);
indent--;
indent_printf(indent, "},\n");
cJSON *obj = cJSON_CreateObject();
cJSON_AddNumberToObject(obj, "index", index);
if (bcg->no) {
cJSON_AddNumberToObject(obj, "no", bcg->no);
}
if (bcg->name) {
cJSON_AddStringToObject(obj, "name", bcg->name->text);
}
if (!verbose) {
cJSON_AddItemToObjectCS(obj, "pos", num2_to_json(bcg->x, bcg->y));
} else {
cJSON *pos;
cJSON_AddItemToObjectCS(obj, "pos", pos = cJSON_CreateObject());
cJSON_AddNumberToObject(pos, "x", bcg->x);
cJSON_AddNumberToObject(pos, "y", bcg->y);
}
cJSON_AddNumberToObject(obj, "blend_rate", bcg->blend_rate);
cJSON_AddNumberToObject(obj, "mag", bcg->mag);
cJSON_AddNumberToObject(obj, "show", bcg->show);
return obj;
}
void RE_debug_print(struct sact_sprite *sp, int indent)
static cJSON *re_plugin_to_json(struct RE_plugin *p, bool verbose)
{
struct RE_plugin *p = (struct RE_plugin *)sp->plugin;
cJSON *obj, *cam, *a;
indent_printf(indent, "name = \"%s\",\n", p->plugin.name);
indent_printf(indent, "camera = {x=%f, y=%f, z=%f, pitch=%f, roll=%f, yaw=%f},\n",
SPREAD_VEC3(p->camera.pos), p->camera.pitch, p->camera.roll, p->camera.yaw);
indent_printf(indent, "shadow_map_light_dir = {x=%f, y=%f, z=%f},\n", SPREAD_VEC3(p->shadow_map_light_dir));
indent_printf(indent, "shadow_bias = %f,\n", p->shadow_bias);
indent_printf(indent, "fog_type = %s,\n", fog_type_name(p->fog_type));
obj = cJSON_CreateObject();
cJSON_AddStringToObject(obj, "name", p->plugin.name);
cJSON_AddItemToObjectCS(obj, "camera", cam = cJSON_CreateObject());
cJSON_AddItemToObjectCS(cam, "pos", vec3_point_to_json(p->camera.pos, verbose));
cJSON_AddNumberToObject(cam, "pitch", p->camera.pitch);
cJSON_AddNumberToObject(cam, "roll", p->camera.roll);
cJSON_AddNumberToObject(cam, "yaw", p->camera.yaw);
cJSON_AddItemToObjectCS(obj, "shadow_map_light_dir",
vec3_point_to_json(p->shadow_map_light_dir, verbose));
cJSON_AddNumberToObject(obj, "shadow_bias", p->shadow_bias);
cJSON_AddStringToObject(obj, "fog_type", fog_type_name(p->fog_type));
switch (p->fog_type) {
case RE_FOG_NONE:
break;
case RE_FOG_LINEAR:
indent_printf(indent, "fog_near = %f, fog_far = %f,\n", p->fog_near, p->fog_far);
indent_printf(indent, "fog_color = {r=%f, g=%f, b=%f},\n", SPREAD_VEC3(p->fog_color));
cJSON_AddNumberToObject(obj, "fog_near", p->fog_near);
cJSON_AddNumberToObject(obj, "fog_far", p->fog_far);
break;
case RE_FOG_LIGHT_SCATTERING:
indent_printf(indent, "ls_beta_r = %f, ls_beta_m = %f,\n", p->ls_beta_r, p->ls_beta_m);
indent_printf(indent, "ls_g = %f,\n", p->ls_g);
indent_printf(indent, "ls_distance = %f,\n", p->ls_distance);
indent_printf(indent, "ls_light_dir = {x=%f, y=%f, z=%f},\n", SPREAD_VEC3(p->ls_light_dir));
indent_printf(indent, "ls_light_color = {r=%f, g=%f, b=%f},\n", SPREAD_VEC3(p->ls_light_color));
indent_printf(indent, "ls_sun_color = {r=%f, g=%f, b=%f},\n", SPREAD_VEC3(p->ls_sun_color));
cJSON_AddNumberToObject(obj, "ls_beta_r", p->ls_beta_r);
cJSON_AddNumberToObject(obj, "ls_beta_m", p->ls_beta_m);
cJSON_AddNumberToObject(obj, "ls_g", p->ls_g);
cJSON_AddNumberToObject(obj, "ls_distance", p->ls_distance);
cJSON_AddItemToObjectCS(obj, "ls_light_dir",
vec3_point_to_json(p->ls_light_dir, verbose));
cJSON_AddItemToObjectCS(obj, "ls_light_color",
vec3_color_to_json(p->ls_light_color, verbose));
cJSON_AddItemToObjectCS(obj, "ls_sun_color",
vec3_color_to_json(p->ls_sun_color, verbose));
break;
}
for (int i = 0; i < p->nr_instances; i++)
print_instance(p->instances[i], i, indent);
cJSON_AddItemToObjectCS(obj, "instances", a = cJSON_CreateArray());
for (int i = 0; i < p->nr_instances; i++) {
if (!p->instances[i])
continue;
cJSON_AddItemToArray(a, instance_to_json(p->instances[i], i, verbose));
}
for (int i = 0; i < RE_NR_BACK_CGS; i++)
print_back_cg(&p->back_cg[i], i, indent);
cJSON_AddItemToObjectCS(obj, "back_cgs", a = cJSON_CreateArray());
for (int i = 0; i < RE_NR_BACK_CGS; i++) {
struct RE_back_cg *bcg = &p->back_cg[i];
if (!bcg->name && !bcg->no)
continue;
cJSON_AddItemToArray(a, back_cg_to_json(bcg, i, verbose));
}
return obj;
}
cJSON *RE_to_json(struct sact_sprite *sp, bool verbose)
{
return re_plugin_to_json((struct RE_plugin*)sp->plugin, verbose);
}
#ifdef DEBUGGER_ENABLED
static int dbg_current_plugin = -1;
// Returns the plugin number to use. Falls back to the only existing plugin
// if no current is set. Prints an error and returns -1 if neither holds.
static int dbg_resolve_plugin(void)
{
if (dbg_current_plugin >= 0) {
if (RE_get_plugin(dbg_current_plugin))
return dbg_current_plugin;
DBG_ERROR("Current plugin %d no longer exists", dbg_current_plugin);
dbg_current_plugin = -1;
return -1;
}
int found = -1;
for (int h = 0; h < RE_MAX_PLUGINS; h++) {
if (!RE_get_plugin(h))
continue;
if (found >= 0) {
DBG_ERROR("Multiple plugins exist; use '3d plugin <no>' to choose one");
return -1;
}
found = h;
}
if (found < 0) {
DBG_ERROR("No ReignEngine plugins");
return -1;
}
return found;
}
static struct RE_plugin *dbg_current_re_plugin(void)
{
int no = dbg_resolve_plugin();
return no < 0 ? NULL : RE_get_plugin(no);
}
static bool instance_has_content(struct RE_instance *inst)
{
if (inst->type == RE_ITYPE_UNINITIALIZED)
return false;
if (inst->model && inst->model->path)
return true;
if (inst->motion && inst->motion->mot)
return true;
if (inst->effect && inst->effect->pae)
return true;
if (inst->s3de_effect && inst->s3de_effect->s3de)
return true;
return false;
}
static void instance_list_print(struct RE_instance *inst, int index, int indent)
{
indent_message(indent, inst->draw ? "+ " : "- ");
sys_message("instance %d (%s)", index, instance_type_name(inst->type));
if (inst->model && inst->model->path)
sys_message(" model=%s", display_sjis0(inst->model->path));
if (inst->motion && inst->motion->mot)
sys_message(" motion=%s/%s frame=%.2f",
display_sjis0(inst->motion->mot->name),
motion_state_name(inst->motion->state),
inst->motion->current_frame);
if (inst->effect && inst->effect->pae)
sys_message(" effect=%s", display_sjis0(inst->effect->pae->path));
if (inst->s3de_effect && inst->s3de_effect->s3de)
sys_message(" s3de=%s", display_sjis0(inst->s3de_effect->s3de->path));
sys_message("\n");
}
static void re_cmd_list(unsigned nr_args, char **args)
{
bool show_all = nr_args >= 1 && !strcmp(args[0], "all");
for (int h = 0; h < RE_MAX_PLUGINS; h++) {
struct RE_plugin *p = RE_get_plugin(h);
if (!p)
continue;
int nr_hidden = 0;
sys_message("plugin %d (%s sprite=%d nr_instances=%d)\n",
h, p->plugin.name, p->sprite, p->nr_instances);
for (int i = 0; i < p->nr_instances; i++) {
struct RE_instance *inst = p->instances[i];
if (!inst)
continue;
if (!show_all && !instance_has_content(inst)) {
nr_hidden++;
continue;
}
instance_list_print(inst, i, 1);
}
if (nr_hidden)
indent_message(1, "(%d empty instance(s) hidden; use 'list all' to show)\n",
nr_hidden);
}
}
static void re_cmd_plugin(unsigned nr_args, char **args)
{
if (nr_args == 0) {
int no = dbg_resolve_plugin();
if (no < 0)
return;
struct RE_plugin *p = RE_get_plugin(no);
sys_message("plugin %d (%s)%s\n", no, p->plugin.name,
dbg_current_plugin < 0 ? " (auto-selected)" : "");
return;
}
int no = atoi(args[0]);
if (!RE_get_plugin(no)) {
DBG_ERROR("No ReignEngine plugin with handle '%s'", args[0]);
return;
}
dbg_current_plugin = no;
}
static void re_cmd_show(unsigned nr_args, char **args)
{
struct RE_plugin *p = dbg_current_re_plugin();
if (!p)
return;
cJSON *json;
if (nr_args >= 1) {
int idx = atoi(args[0]);
if (idx < 0 || idx >= p->nr_instances || !p->instances[idx]) {
DBG_ERROR("No instance with index '%s'", args[0]);
return;
}
json = instance_to_json(p->instances[idx], idx, true);
} else {
json = re_plugin_to_json(p, true);
}
char *text = cJSON_Print(json);
sys_message("%s\n", text);
free(text);
cJSON_Delete(json);
}
static void re_cmd_set(unsigned nr_args, char **args)
{
struct RE_plugin *p = dbg_current_re_plugin();
if (!p)
return;
int idx = atoi(args[0]);
if (idx < 0 || idx >= p->nr_instances || !p->instances[idx]) {
DBG_ERROR("No instance with index '%s'", args[0]);
return;
}
struct RE_instance *inst = p->instances[idx];
const char *prop = args[1];
unsigned nr_values = nr_args - 2;
char **values = &args[2];
if (!strcmp(prop, "draw")) {
if (nr_values != 1) {
DBG_ERROR("'draw' requires 1 value (0 or 1)");
return;
}
inst->draw = atoi(values[0]) != 0;
} else if (!strcmp(prop, "pos")) {
if (nr_values != 3) {
DBG_ERROR("'pos' requires 3 values (x y z)");
return;
}
inst->pos[0] = strtof(values[0], NULL);
inst->pos[1] = strtof(values[1], NULL);
inst->pos[2] = strtof(values[2], NULL);
inst->local_transform_needs_update = true;
} else {
DBG_ERROR("Unknown property '%s'", prop);
return;
}
sprite_call_plugins();
scene_render();
gfx_swap();
}
static void re_cmd_help(unsigned nr_args, char **args);
static struct dbg_cmd re_cmds[] = {
{ "list", NULL, "[all]",
"Display ReignEngine plugins and their instances (use 'all' to include uninitialized)",
0, 1, re_cmd_list },
{ "plugin", NULL, "[<plugin-no>]",
"Show or set the current plugin used by 'show' and 'set'",
0, 1, re_cmd_plugin },
{ "show", NULL, "[<instance-no>]",
"Display current plugin or instance state as JSON",
0, 1, re_cmd_show },
{ "set", NULL, "<instance-no> <property> <value...>",
"Set an instance property (draw, pos)",
3, 5, re_cmd_set },
{ "help", "h", NULL, "List 3d commands",
0, 0, re_cmd_help },
};
static void re_cmd_help(unsigned nr_args, char **args)
{
int name_len = 0;
for (unsigned i = 0; i < sizeof(re_cmds)/sizeof(*re_cmds); i++) {
int n = strlen(re_cmds[i].fullname);
if (n > name_len)
name_len = n;
}
sys_message("\n3d commands\n===========\n");
for (unsigned i = 0; i < sizeof(re_cmds)/sizeof(*re_cmds); i++) {
struct dbg_cmd *c = &re_cmds[i];
sys_message("%*s", name_len, c->fullname);
if (c->shortname)
sys_message(" (%s)", c->shortname);
if (c->arg_description)
sys_message(" %s", c->arg_description);
sys_message(" -- %s\n", c->description);
}
}
void re_debug_init(void)
{
static bool initialized = false;
if (initialized)
return;
initialized = true;
dbg_cmd_add_module("3d", sizeof(re_cmds)/sizeof(*re_cmds), re_cmds);
}
#else
void re_debug_init(void) {}
#endif // DEBUGGER_ENABLED
+210 -55
View File
@@ -29,6 +29,7 @@
#define FP16_MIN 6.103516e-5f
#define NR_WEIGHTS 4
#define DEFAULT_OUTLINE_THICKNESS 0.003
struct vertex_common {
GLfloat pos[3];
@@ -40,6 +41,10 @@ struct vertex_light_uv {
GLfloat uv[2];
};
struct vertex_color {
GLfloat color[4];
};
struct vertex_tangent {
GLfloat tangent[4];
};
@@ -49,6 +54,27 @@ struct vertex_bones {
GLfloat bone_weight[NR_WEIGHTS];
};
struct vertex_blend {
GLfloat blend_weight;
GLfloat blend_uv[2];
};
static bool is_transparent_mesh(const struct pol_mesh *mesh)
{
if (re_plugin_version == RE_REIGN_PLUGIN)
return !(mesh->flags & MESH_SPRITE);
else
return mesh->flags & MESH_ALPHA;
}
static bool is_transparent_material(const struct pol_material *material)
{
if (re_plugin_version == RE_REIGN_PLUGIN)
return !(material->flags & MATERIAL_SPRITE);
else
return material->flags & MATERIAL_ALPHA;
}
struct archive_data *RE_get_aar_entry(struct archive *aar, const char *dir, const char *name, const char *ext)
{
char *path = xmalloc(strlen(dir) + strlen(name) + strlen(ext) + 2);
@@ -62,7 +88,6 @@ static GLuint load_texture(struct archive *aar, const char *path, const char *na
{
struct archive_data *dfile = RE_get_aar_entry(aar, path, name, "");
if (!dfile) {
WARNING("cannot load texture %s\\%s", path, name);
return 0;
}
struct cg *cg = cg_load_data(dfile);
@@ -89,28 +114,64 @@ static GLuint load_texture(struct archive *aar, const char *path, const char *na
return texture;
}
static bool init_material(struct material *material, const struct pol_material *m, struct amt *amt, struct archive *aar, const char *path)
static GLuint *load_texture_list(struct archive *aar, const char *path, const char *name, int *nr_textures_out, bool *has_alpha_out)
{
// Load the base texture (e.g. face.png)
GLuint tex = load_texture(aar, path, name, has_alpha_out);
if (!tex)
return NULL;
GLuint *textures = xmalloc(10 * sizeof(GLuint));
int nr_textures = 0;
textures[nr_textures++] = tex;
// Try to load additional textures (e.g. face[1].png, face[2].png, etc.)
const char *ext = strrchr(name, '.');
if (ext) {
for (;;) {
char next_name[100];
snprintf(next_name, sizeof(next_name), "%.*s[%d]%s", (int)(ext - name), name, nr_textures, ext);
tex = load_texture(aar, path, next_name, NULL);
if (!tex)
break;
textures[nr_textures++] = tex;
if (nr_textures % 10 == 0) {
textures = xrealloc(textures, (nr_textures + 10) * sizeof(GLuint));
}
}
}
*nr_textures_out = nr_textures;
return textures;
}
static bool init_material(struct material *material, struct pol_material *m, struct amt *amt, struct archive *aar, const char *path)
{
material->flags = m->flags;
glm_vec2_copy(m->uv_tiling, material->uv_tiling);
glm_vec2_one(material->blend_uv_tiling);
if (!m->textures[COLOR_MAP]) {
WARNING("No color texture");
return false;
}
bool has_alpha;
material->color_map = load_texture(aar, path, m->textures[COLOR_MAP], &has_alpha);
if (!material->color_map)
material->color_maps = load_texture_list(aar, path, m->textures[COLOR_MAP], &material->nr_color_maps, &has_alpha);
if (!material->color_maps)
return false;
if (m->textures[SPECULAR_MAP])
material->specular_map = load_texture(aar, path, m->textures[SPECULAR_MAP], NULL);
if (m->textures[ALPHA_MAP])
material->alpha_map = load_texture(aar, path, m->textures[ALPHA_MAP], NULL);
if (m->textures[ALPHA_MAP]) {
if (has_alpha && !strcmp(m->textures[COLOR_MAP], m->textures[ALPHA_MAP])) {
// Do nothing; the alpha channel of the color map is used.
} else {
material->alpha_map = load_texture(aar, path, m->textures[ALPHA_MAP], NULL);
}
}
if (m->textures[LIGHT_MAP])
material->light_map = load_texture(aar, path, m->textures[LIGHT_MAP], NULL);
if (m->textures[NORMAL_MAP])
material->normal_map = load_texture(aar, path, m->textures[NORMAL_MAP], NULL);
material->is_transparent = (has_alpha || material->alpha_map) && !(material->flags & MATERIAL_SPRITE);
material->is_transparent = (has_alpha || material->alpha_map) && is_transparent_material(m);
material->shadow_darkness = 1.0f;
struct amt_material *amt_m = amt ? amt_find_material(amt, m->name) : NULL;
@@ -136,8 +197,10 @@ static bool init_material(struct material *material, const struct pol_material *
static void destroy_material(struct material *material)
{
if (material->color_map)
glDeleteTextures(1, &material->color_map);
if (material->color_maps) {
glDeleteTextures(material->nr_color_maps, material->color_maps);
free(material->color_maps);
}
if (material->specular_map)
glDeleteTextures(1, &material->specular_map);
if (material->alpha_map)
@@ -146,6 +209,8 @@ static void destroy_material(struct material *material)
glDeleteTextures(1, &material->light_map);
if (material->normal_map)
glDeleteTextures(1, &material->normal_map);
if (material->blend_texture)
glDeleteTextures(1, &material->blend_texture);
}
static int cmp_by_bone_weight(const void *lhs, const void *rhs)
@@ -217,16 +282,22 @@ static void *buf_alloc(uint8_t **ptr, int size)
static void add_mesh(struct model *model, struct pol_mesh *m, uint32_t material_group_index, int material)
{
bool has_light_map = m->light_uvs && model->materials[material].light_map;
bool has_vertex_colors = m->nr_colors > 0 || m->nr_alphas > 0;
bool has_normal_map = model->materials[material].normal_map != 0;
bool has_bones = !!model->bone_map;
bool has_blend = m->blend_weights && model->materials[material].blend_texture;
GLsizei stride = sizeof(struct vertex_common);
if (has_light_map)
stride += sizeof(struct vertex_light_uv);
if (has_vertex_colors)
stride += sizeof(struct vertex_color);
if (has_normal_map)
stride += sizeof(struct vertex_tangent);
if (has_bones)
stride += sizeof(struct vertex_bones);
if (has_blend)
stride += sizeof(struct vertex_blend);
void *buffer = xmalloc(m->nr_triangles * 3 * stride);
uint8_t *ptr = buffer;
@@ -249,6 +320,14 @@ static void add_mesh(struct model *model, struct pol_mesh *m, uint32_t material_
struct vertex_light_uv *v_light_uv = buf_alloc(&ptr, sizeof(struct vertex_light_uv));
glm_vec2_copy(m->light_uvs[t->light_uv_index[j]], v_light_uv->uv);
}
if (has_vertex_colors) {
struct vertex_color *v_color = buf_alloc(&ptr, sizeof(struct vertex_color));
if (m->nr_colors > 0)
glm_vec3_copy(m->colors[t->color_index[j]], v_color->color);
else
glm_vec3_one(v_color->color);
v_color->color[3] = m->nr_alphas > 0 ? m->alphas[t->alpha_index[j]] : 1.f;
}
if (has_normal_map) {
struct vertex_tangent *v_tangent = buf_alloc(&ptr, sizeof(struct vertex_tangent));
glm_vec4_ucopy(tangent[j], v_tangent->tangent);
@@ -269,6 +348,14 @@ static void add_mesh(struct model *model, struct pol_mesh *m, uint32_t material_
}
}
}
if (has_blend) {
struct vertex_blend *v_blend = buf_alloc(&ptr, sizeof(struct vertex_blend));
v_blend->blend_weight = m->blend_weights[t->blend_weight_index[j]];
if (m->blend_uvs)
glm_vec2_copy(m->blend_uvs[t->blend_uv_index[j]], v_blend->blend_uv);
else
glm_vec2_copy(m->uvs[t->uv_index[j]], v_blend->blend_uv);
}
nr_vertices++;
}
}
@@ -280,8 +367,22 @@ static void add_mesh(struct model *model, struct pol_mesh *m, uint32_t material_
}
model->meshes = xrealloc_array(model->meshes, model->nr_meshes, model->nr_meshes + 1, sizeof(struct mesh));
struct mesh *mesh = &model->meshes[model->nr_meshes++];
mesh->name = xstrdup(m->name);
mesh->flags = m->flags;
mesh->material = material;
if (re_plugin_version == RE_REIGN_PLUGIN)
mesh->is_transparent = model->materials[material].is_transparent && is_transparent_mesh(m);
else
mesh->is_transparent = model->materials[material].is_transparent || is_transparent_mesh(m);
if (mesh->is_transparent)
model->has_transparent_mesh = true;
mesh->outline_color[0] = m->edge_color.r / 255.f;
mesh->outline_color[1] = m->edge_color.g / 255.f;
mesh->outline_color[2] = m->edge_color.b / 255.f;
mesh->outline_thickness = m->edge_size ? m->edge_size : DEFAULT_OUTLINE_THICKNESS;
glm_vec2_copy(m->uv_scroll, mesh->uv_scroll);
glm_vec3_copy(m->specular_color, mesh->specular_color);
mesh->specular_power = m->specular_power;
mesh->nr_vertices = nr_vertices;
glGenVertexArrays(1, &mesh->vao);
@@ -305,6 +406,14 @@ static void add_mesh(struct model *model, struct pol_mesh *m, uint32_t material_
glDisableVertexAttribArray(VATTR_LIGHT_UV);
glVertexAttrib2f(VATTR_LIGHT_UV, 0.0, 0.0);
}
if (has_vertex_colors) {
glEnableVertexAttribArray(VATTR_COLOR);
glVertexAttribPointer(VATTR_COLOR, 4, GL_FLOAT, GL_FALSE, stride, base + offsetof(struct vertex_color, color));
base += sizeof(struct vertex_color);
} else {
glDisableVertexAttribArray(VATTR_COLOR);
glVertexAttrib4f(VATTR_COLOR, 1.0, 1.0, 1.0, 1.0);
}
if (has_normal_map) {
glEnableVertexAttribArray(VATTR_TANGENT);
glVertexAttribPointer(VATTR_TANGENT, 4, GL_FLOAT, GL_FALSE, stride, base + offsetof(struct vertex_tangent, tangent));
@@ -325,6 +434,18 @@ static void add_mesh(struct model *model, struct pol_mesh *m, uint32_t material_
glDisableVertexAttribArray(VATTR_BONE_WEIGHT);
glVertexAttrib4f(VATTR_BONE_WEIGHT, 0.0, 0.0, 0.0, 0.0);
}
if (has_blend) {
glEnableVertexAttribArray(VATTR_BLEND_WEIGHT);
glVertexAttribPointer(VATTR_BLEND_WEIGHT, 1, GL_FLOAT, GL_FALSE, stride, base + offsetof(struct vertex_blend, blend_weight));
glEnableVertexAttribArray(VATTR_BLEND_UV);
glVertexAttribPointer(VATTR_BLEND_UV, 2, GL_FLOAT, GL_FALSE, stride, base + offsetof(struct vertex_blend, blend_uv));
base += sizeof(struct vertex_blend);
} else {
glDisableVertexAttribArray(VATTR_BLEND_WEIGHT);
glVertexAttrib1f(VATTR_BLEND_WEIGHT, 0.0);
glDisableVertexAttribArray(VATTR_BLEND_UV);
glVertexAttrib2f(VATTR_BLEND_UV, 0.0, 0.0);
}
assert((intptr_t)base == stride);
glBufferData(GL_ARRAY_BUFFER, mesh->nr_vertices * stride, buffer, GL_STATIC_DRAW);
@@ -337,6 +458,7 @@ static void add_mesh(struct model *model, struct pol_mesh *m, uint32_t material_
static void destroy_mesh(struct mesh *mesh)
{
free(mesh->name);
glDeleteVertexArrays(1, &mesh->vao);
glDeleteBuffers(1, &mesh->attr_buffer);
if (mesh->index_buffer)
@@ -367,14 +489,6 @@ static struct bone *add_bone(struct model *model, struct pol *pol, struct pol_bo
glm_quat_mat4(pol_bone->rotq, bone->inverse_bind_matrix);
glm_translate(bone->inverse_bind_matrix, pol_bone->pos);
// Update bone_name_map. If the bone name is not unique in the POL, set the
// map value to NULL so that ID matching will be used.
struct ht_slot *slot = ht_put(model->bone_name_map, pol_bone->name, bone);
if (slot->value != bone) {
NOTICE("%s: non-unique bone %s", model->path, pol_bone->name);
slot->value = NULL;
}
model->nr_bones++;
return bone;
}
@@ -416,16 +530,23 @@ struct model *model_load(struct archive *aar, const char *path)
struct model *model = xcalloc(1, sizeof(struct model));
model->path = strdup(path);
// Load .opr file, if any
struct archive_data *opr_file = RE_get_aar_entry(aar, path, basename, ".opr");
if (opr_file) {
opr_load(opr_file->data, opr_file->size, pol);
archive_free_data(opr_file);
}
// Bones
if (pol->nr_bones > 0) {
if (pol->nr_bones > MAX_BONES)
ERROR("%s: Too many bones (%u)", model->path, pol->nr_bones);
model->bone_map = ht_create(pol->nr_bones * 3 / 2);
model->bone_name_map = ht_create(pol->nr_bones * 3 / 2);
model->mot_cache = ht_create(16);
model->bones = xcalloc(pol->nr_bones, sizeof(struct bone));
model->bones = xcalloc_aligned(pol->nr_bones, struct bone);
model->bones_by_pol_index = xcalloc(pol->nr_bones, sizeof(struct bone *));
for (uint32_t i = 0; i < pol->nr_bones; i++) {
add_bone(model, pol, &pol->bones[i]);
model->bones_by_pol_index[i] = add_bone(model, pol, &pol->bones[i]);
}
if (model->nr_bones != (int)pol->nr_bones)
ERROR("%s: Broken bone data", model->path);
@@ -448,21 +569,39 @@ struct model *model_load(struct archive *aar, const char *path)
continue;
}
for (uint32_t j = 0; j < pol->materials[i].nr_children; j++) {
init_material(&model->materials[material_offsets[i] + j],
&pol->materials[i].children[j], amt, aar, path);
}
}
for (int i = 0; i < model->nr_materials; i++) {
if (model->materials[i].is_transparent) {
model->has_transparent_material = true;
break;
struct pol_material_group *child = &pol->materials[i].children[j];
if (child->nr_children >= 2) {
// Group node: texture blending (base + blend)
init_material(&model->materials[material_offsets[i] + j],
&child->children[0].m, amt, aar, path);
if (child->children[1].m.textures[COLOR_MAP]) {
model->materials[material_offsets[i] + j].blend_texture =
load_texture(aar, path, child->children[1].m.textures[COLOR_MAP], NULL);
glm_vec2_copy(child->children[1].m.uv_tiling,
model->materials[material_offsets[i] + j].blend_uv_tiling);
}
} else {
init_material(&model->materials[material_offsets[i] + j],
&child->m, amt, aar, path);
}
}
}
// Meshes
struct pol_mesh **hd_meshes = xmalloc(pol->nr_meshes * sizeof(*hd_meshes));
int nr_hd_meshes = 0;
for (uint32_t i = 0; i < pol->nr_meshes; i++) {
if (!pol->meshes[i])
continue;
if (!strcmp(pol->meshes[i]->name, "collision")) {
if (model->collider)
WARNING("multiple collision meshes");
else
model->collider = collider_create(pol->meshes[i]);
continue;
}
if (pol->meshes[i]->flags & MESH_HEIGHT_DETECTION)
hd_meshes[nr_hd_meshes++] = pol->meshes[i];
struct pol_material_group *mg = &pol->materials[pol->meshes[i]->material];
int m_off = material_offsets[pol->meshes[i]->material];
if (mg->nr_children == 0) {
@@ -474,6 +613,10 @@ struct model *model_load(struct archive *aar, const char *path)
}
}
if (!model->collider && nr_hd_meshes > 0)
model->collider = collider_create_raycast(hd_meshes, nr_hd_meshes);
free(hd_meshes);
pol_compute_aabb(pol, model->aabb);
free(material_offsets);
@@ -485,6 +628,9 @@ struct model *model_load(struct archive *aar, const char *path)
void model_free(struct model *model)
{
if (model->collider)
collider_free(model->collider);
for (int i = 0; i < model->nr_meshes; i++)
destroy_mesh(&model->meshes[i]);
free(model->meshes);
@@ -495,11 +641,10 @@ void model_free(struct model *model)
for (int i = 0; i < model->nr_bones; i++)
destroy_bone(&model->bones[i]);
free(model->bones);
xfree_aligned(model->bones);
free(model->bones_by_pol_index);
if (model->bone_map)
ht_free_int(model->bone_map);
if (model->bone_name_map)
ht_free(model->bone_name_map);
if (model->mot_cache) {
ht_foreach_value(model->mot_cache, (void(*)(void*))mot_free);
ht_free(model->mot_cache);
@@ -594,52 +739,62 @@ struct model *model_create_sphere(int r, int g, int b, int a)
model->materials = xcalloc(1, sizeof(struct material));
struct material *material = &model->materials[0];
material->is_transparent = true;
glGenTextures(1, &material->color_map);
glBindTexture(GL_TEXTURE_2D, material->color_map);
glm_vec2_one(material->uv_tiling);
glm_vec2_one(material->blend_uv_tiling);
material->color_maps = xmalloc(sizeof(GLuint));
material->nr_color_maps = 1;
glGenTextures(1, material->color_maps);
glBindTexture(GL_TEXTURE_2D, material->color_maps[0]);
uint8_t pixel[4] = {r, g, b, a};
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 1, 1, 0, GL_RGBA, GL_UNSIGNED_BYTE, pixel);
glBindTexture(GL_TEXTURE_2D, 0);
model->has_transparent_material = true;
model->has_transparent_mesh = true;
return model;
}
static int cmp_motions_by_bone_id(const void *lhs, const void *rhs)
{
return (*(struct mot_bone **)lhs)->id - (*(struct mot_bone **)rhs)->id;
}
static struct mot *mot_load(const char *name, struct model *model, struct archive *aar)
{
struct archive_data *dfile = RE_get_aar_entry(aar, model->path, name, ".MOT");
if (!dfile) {
struct archive_data *mot_file = RE_get_aar_entry(aar, model->path, name, ".MOT");
if (!mot_file) {
WARNING("%s\\%s.MOT: not found", model->path, name);
return NULL;
}
struct mot *mot = mot_parse(dfile->data, dfile->size, name);
struct mot *mot = mot_parse(mot_file->data, mot_file->size, name);
if (!mot) {
WARNING("%s: parse error", dfile->name);
archive_free_data(dfile);
WARNING("%s: parse error", mot_file->name);
archive_free_data(mot_file);
return NULL;
}
archive_free_data(dfile);
archive_free_data(mot_file);
if (model->nr_bones != (int)mot->nr_bones)
ERROR("%s: wrong number of bones. Expected %d but got %d", name, model->nr_bones, mot->nr_bones);
// Reorder mot->motions so that motion for model->bones[i] can be
// accessed by mot->motions[i].
// accessed by mot->motions[i]. MOT bones are applied to POL bones purely
// by array index; bone name and bone id are never used for matching.
struct mot_bone **reordered = xmalloc(mot->nr_bones * sizeof(struct mot_bone *));
for (uint32_t i = 0; i < mot->nr_bones; i++) {
// Match by name first, since some MOT have wrong bone IDs (e.g. maidsan_ahoge_*).
struct bone *bone = ht_get(model->bone_name_map, mot->motions[i]->name, NULL);
// If it is not found or is NULL (non-unique bone name), match by bone ID.
if (!bone)
bone = ht_get_int(model->bone_map, mot->motions[i]->id, NULL);
if (!bone)
ERROR("%s: invalid bone \"%s\" (%d)", name, mot->motions[i]->name, mot->motions[i]->id);
mot->motions[i]->id = bone->index;
reordered[model->bones_by_pol_index[i]->index] = mot->motions[i];
}
memcpy(mot->motions, reordered, mot->nr_bones * sizeof(struct mot_bone *));
free(reordered);
// Load optional sidecar file.
if (re_plugin_version <= RE_TAPIR_PLUGIN) {
struct archive_data *txa_file = RE_get_aar_entry(aar, model->path, name, ".txa");
if (txa_file) {
txa_load(txa_file->data, txa_file->size, mot);
archive_free_data(txa_file);
}
} else {
struct archive_data *mpr_file = RE_get_aar_entry(aar, model->path, name, ".mpr");
if (mpr_file) {
mot->mpr = mpr_load(mpr_file->data, mpr_file->size, model);
archive_free_data(mpr_file);
}
}
qsort(mot->motions, mot->nr_bones, sizeof(struct mot_bone *), cmp_motions_by_bone_id);
return mot;
}
+294
View File
@@ -0,0 +1,294 @@
/* Copyright (C) 2026 kichikuou <KichikuouChrome@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cglm/cglm.h>
#include "system4.h"
#include "3d_internal.h"
// .mpr parser.
static int resolve_mesh_index(struct model *model, const char *name)
{
for (int i = 0; i < model->nr_meshes; i++) {
if (!strcmp(model->meshes[i].name, name))
return i;
}
return -1;
}
static void append_float_key(struct mpr_track_set *ts, int frame, float v)
{
ts->mul_alpha = xrealloc(ts->mul_alpha, (ts->nr_mul_alpha + 1) * sizeof(struct mpr_float_key));
ts->mul_alpha[ts->nr_mul_alpha].frame = frame;
ts->mul_alpha[ts->nr_mul_alpha].v = v;
ts->nr_mul_alpha++;
}
static void append_vec3_key(struct mpr_vec3_key **arr, int *nr, int frame, float r, float g, float b)
{
*arr = xrealloc(*arr, (*nr + 1) * sizeof(struct mpr_vec3_key));
(*arr)[*nr].frame = frame;
(*arr)[*nr].v[0] = r;
(*arr)[*nr].v[1] = g;
(*arr)[*nr].v[2] = b;
(*nr)++;
}
static void append_int_key(struct mpr_int_key **arr, int *nr, int frame, int v)
{
*arr = xrealloc(*arr, (*nr + 1) * sizeof(struct mpr_int_key));
(*arr)[*nr].frame = frame;
(*arr)[*nr].v = v;
(*nr)++;
}
// All mpr_*_key structs have `int frame` as their first field.
static int cmp_key_by_frame(const void *a, const void *b)
{
return *(const int *)a - *(const int *)b;
}
static void sort_track_set(struct mpr_track_set *ts)
{
if (ts->nr_mul_alpha)
qsort(ts->mul_alpha, ts->nr_mul_alpha, sizeof(struct mpr_float_key), cmp_key_by_frame);
if (ts->nr_mul_diffuse)
qsort(ts->mul_diffuse, ts->nr_mul_diffuse, sizeof(struct mpr_vec3_key), cmp_key_by_frame);
if (ts->nr_add_ambient)
qsort(ts->add_ambient, ts->nr_add_ambient, sizeof(struct mpr_vec3_key), cmp_key_by_frame);
if (ts->nr_texture_anime)
qsort(ts->texture_anime, ts->nr_texture_anime, sizeof(struct mpr_int_key), cmp_key_by_frame);
}
struct mpr *mpr_load(uint8_t *data, size_t size, struct model *model)
{
struct mpr *mpr = xcalloc(1, sizeof(struct mpr));
mpr->nr_meshes = model->nr_meshes;
mpr->mesh_tracks = xcalloc(model->nr_meshes, sizeof(struct mpr_track_set *));
struct mpr_track_set *current = NULL; // current Mesh-scope track set
while (size > 0) {
char line[200];
uint8_t *nl = memchr(data, '\n', size);
if (nl)
nl++;
else
nl = data + size;
int copylen = min(nl - data, sizeof(line) - 1);
memcpy(line, (char *)data, copylen);
line[copylen] = '\0';
size -= nl - data;
data = nl;
char s[200];
int frame, ti;
float a, r, g, b;
if (sscanf(line, "Mesh = \"%[^\"]\"", s) == 1) {
int mi = resolve_mesh_index(model, s);
if (mi < 0) {
WARNING("mpr: unknown mesh \"%s\"", s);
current = NULL;
} else {
if (!mpr->mesh_tracks[mi])
mpr->mesh_tracks[mi] = xcalloc(1, sizeof(struct mpr_track_set));
current = mpr->mesh_tracks[mi];
}
} else if (sscanf(line, "MeshMulAlpha = ( %d , %f )", &frame, &a) == 2) {
if (current)
append_float_key(current, frame, a);
else
WARNING("mpr: MeshMulAlpha outside Mesh scope");
} else if (sscanf(line, "MeshMulDiffuse = ( %d , %f , %f , %f )", &frame, &r, &g, &b) == 4) {
if (current)
append_vec3_key(&current->mul_diffuse, &current->nr_mul_diffuse, frame, r, g, b);
else
WARNING("mpr: MeshMulDiffuse outside Mesh scope");
} else if (sscanf(line, "MeshAddAmbient = ( %d , %f , %f , %f )", &frame, &r, &g, &b) == 4) {
if (current)
append_vec3_key(&current->add_ambient, &current->nr_add_ambient, frame, r, g, b);
else
WARNING("mpr: MeshAddAmbient outside Mesh scope");
} else if (sscanf(line, "MeshTextureAnime = ( %d , %d )", &frame, &ti) == 2) {
if (current)
append_int_key(&current->texture_anime, &current->nr_texture_anime, frame, ti);
else
WARNING("mpr: MeshTextureAnime outside Mesh scope");
} else if (sscanf(line, "ObjectMulAlpha = ( %d , %f )", &frame, &a) == 2) {
append_float_key(&mpr->object, frame, a);
} else if (sscanf(line, "ObjectMulDiffuse = ( %d , %f , %f , %f )", &frame, &r, &g, &b) == 4) {
append_vec3_key(&mpr->object.mul_diffuse, &mpr->object.nr_mul_diffuse, frame, r, g, b);
} else if (sscanf(line, "ObjectAddAmbient = ( %d , %f , %f , %f )", &frame, &r, &g, &b) == 4) {
append_vec3_key(&mpr->object.add_ambient, &mpr->object.nr_add_ambient, frame, r, g, b);
} else if (strchr(line, '=')) {
WARNING("mpr: unknown field: %s", line);
}
}
for (int i = 0; i < mpr->nr_meshes; i++) {
if (!mpr->mesh_tracks[i])
continue;
sort_track_set(mpr->mesh_tracks[i]);
if (mpr->mesh_tracks[i]->nr_mul_alpha > 0)
mpr->has_mesh_alpha = true;
}
sort_track_set(&mpr->object);
return mpr;
}
static void destroy_track_set(struct mpr_track_set *ts)
{
free(ts->mul_alpha);
free(ts->mul_diffuse);
free(ts->add_ambient);
free(ts->texture_anime);
}
void mpr_free(struct mpr *mpr)
{
if (!mpr)
return;
for (int i = 0; i < mpr->nr_meshes; i++) {
if (mpr->mesh_tracks[i]) {
destroy_track_set(mpr->mesh_tracks[i]);
free(mpr->mesh_tracks[i]);
}
}
free(mpr->mesh_tracks);
destroy_track_set(&mpr->object);
free(mpr);
}
// Keyframe evaluation.
// Returns the largest index i with keys[i].frame <= frame.
// Returns -1 if frame < keys[0].frame.
#define DEFINE_FIND_KEY(NAME, KEY_TYPE) \
static int NAME(const KEY_TYPE *keys, int nr, float frame) \
{ \
if (frame < (float)keys[0].frame) \
return -1; \
int lo = 0, hi = nr - 1; \
while (lo < hi) { \
int mid = (lo + hi + 1) / 2; \
if ((float)keys[mid].frame <= frame) \
lo = mid; \
else \
hi = mid - 1; \
} \
return lo; \
}
DEFINE_FIND_KEY(find_float_key, struct mpr_float_key)
DEFINE_FIND_KEY(find_vec3_key, struct mpr_vec3_key)
DEFINE_FIND_KEY(find_int_key, struct mpr_int_key)
static float eval_float(const struct mpr_float_key *keys, int nr, float frame, float fallback)
{
if (nr == 0)
return fallback;
int i = find_float_key(keys, nr, frame);
if (i < 0)
return keys[0].v;
if (i >= nr - 1)
return keys[nr - 1].v;
float t = (frame - keys[i].frame) / (float)(keys[i + 1].frame - keys[i].frame);
return glm_lerp(keys[i].v, keys[i + 1].v, t);
}
static void eval_vec3(const struct mpr_vec3_key *keys, int nr, float frame, const vec3 fallback, vec3 out)
{
if (nr == 0) {
glm_vec3_copy((float *)fallback, out);
return;
}
int i = find_vec3_key(keys, nr, frame);
if (i < 0) {
glm_vec3_copy((float *)keys[0].v, out);
return;
}
if (i >= nr - 1) {
glm_vec3_copy((float *)keys[nr - 1].v, out);
return;
}
float t = (frame - keys[i].frame) / (float)(keys[i + 1].frame - keys[i].frame);
glm_vec3_lerp((float *)keys[i].v, (float *)keys[i + 1].v, t, out);
}
static int eval_int(const struct mpr_int_key *keys, int nr, float frame, int fallback)
{
if (nr == 0)
return fallback;
int i = find_int_key(keys, nr, frame);
if (i < 0)
return keys[0].v;
return keys[i].v; // step
}
// Combine inst defaults with .mpr Object-scope keyframes.
void mpr_evaluate_object(const struct mpr *mpr, float frame,
struct RE_instance *inst, struct mpr_modulation *out)
{
out->alpha = inst->alpha;
glm_vec3_copy(inst->ambient, out->ambient);
glm_vec3_copy(inst->diffuse, out->diffuse);
if (!mpr)
return;
out->alpha *= eval_float(mpr->object.mul_alpha, mpr->object.nr_mul_alpha, frame, 1.f);
vec3 add;
eval_vec3(mpr->object.add_ambient, mpr->object.nr_add_ambient, frame, (vec3){0,0,0}, add);
glm_vec3_add(out->ambient, add, out->ambient);
eval_vec3(mpr->object.mul_diffuse, mpr->object.nr_mul_diffuse, frame, (vec3){1,1,1}, out->diffuse);
}
// Combine the object-scope values with .mpr Mesh-scope keyframes for one mesh.
void mpr_evaluate_mesh(const struct mpr_track_set *mt, float frame,
const struct mpr_modulation *obj, struct mpr_modulation *out)
{
*out = *obj;
if (!mt)
return;
out->alpha *= eval_float(mt->mul_alpha, mt->nr_mul_alpha, frame, 1.f);
vec3 add;
eval_vec3(mt->add_ambient, mt->nr_add_ambient, frame, (vec3){0,0,0}, add);
glm_vec3_add(out->ambient, add, out->ambient);
vec3 mul;
eval_vec3(mt->mul_diffuse, mt->nr_mul_diffuse, frame, (vec3){1,1,1}, mul);
glm_vec3_mul(out->diffuse, mul, out->diffuse);
}
// MeshTextureAnime writes to the shared material slot, so all meshes
// referencing the same material pick up the animation even if .mpr only names
// one of them. Caller supplies the output buffer sized to model->nr_materials.
void mpr_build_mat_tex_index(const struct model *model, const struct RE_instance *inst,
const struct mpr *mpr, float frame, int *mat_tex_index)
{
for (int m = 0; m < model->nr_materials; m++)
mat_tex_index[m] = inst->texture_animation_index;
if (!mpr)
return;
for (int i = 0; i < mpr->nr_meshes; i++) {
const struct mpr_track_set *t = mpr->mesh_tracks[i];
if (!t || t->nr_texture_anime == 0)
continue;
int mat = model->meshes[i].material;
mat_tex_index[mat] = eval_int(t->texture_anime, t->nr_texture_anime, frame, mat_tex_index[mat]);
}
}
+346 -34
View File
@@ -14,6 +14,7 @@
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <cglm/cglm.h>
@@ -64,20 +65,27 @@ static uint32_t parse_material_attributes(const char *name)
uint32_t flags = 0;
if (strstr(name, "(sprite)"))
flags |= MATERIAL_SPRITE;
if (strstr(name, "(alpha)"))
flags |= MATERIAL_ALPHA;
return flags;
}
static void parse_material(struct buffer *r, struct pol_material *m)
static void parse_textures(struct buffer *r, int pol_version, struct pol_material *m)
{
m->name = read_cstring(r);
m->flags = parse_material_attributes(m->name);
glm_vec2_one(m->uv_tiling);
int nr_textures = buffer_read_int32(r);
for (int i = 0; i < nr_textures; i++) {
char *filename = read_cstring(r);
int type = buffer_read_int32(r);
vec2 uv_tiling = { 1.0f, 1.0f };
if (pol_version >= 3) {
uv_tiling[0] = buffer_read_float(r);
uv_tiling[1] = buffer_read_float(r);
}
if ((unsigned)type < MAX_TEXTURE_TYPE) {
m->textures[type] = filename;
if (type == COLOR_MAP)
glm_vec2_copy(uv_tiling, m->uv_tiling);
} else {
WARNING("invalid texture type %d", type);
free(filename);
@@ -92,29 +100,60 @@ static void destroy_material(struct pol_material *m)
free(m->textures[i]);
}
static void parse_material_group(struct buffer *r, struct pol_material_group *mg)
{
parse_material(r, &mg->m);
mg->nr_children = buffer_read_int32(r);
if (mg->nr_children > 0) {
mg->children = xcalloc(mg->nr_children, sizeof(struct pol_material));
for (uint32_t i = 0; i < mg->nr_children; i++) {
parse_material(r, &mg->children[i]);
}
}
}
static void destroy_material_group(struct pol_material_group *mg)
{
destroy_material(&mg->m);
if (mg->children) {
for (uint32_t i = 0; i < mg->nr_children; i++)
destroy_material(&mg->children[i]);
destroy_material_group(&mg->children[i]);
free(mg->children);
}
}
// Material tree layout:
// level 0: top-level material per pol->materials[]. Either a textured leaf
// or a group containing sub-materials, never both.
// level 1: sub-material. Either a textured leaf or, in v4 only, a "blend
// group" (is_group=1) with exactly 2 leaf children.
// level 2: leaf children of a v4 blend group; cannot themselves be a group.
static void parse_material_group(struct buffer *r, int pol_version,
struct pol_material_group *mg, int level)
{
mg->m.name = read_cstring(r);
mg->m.flags = parse_material_attributes(mg->m.name);
bool is_group = false;
if (pol_version >= 4)
is_group = buffer_read_int32(r);
if (is_group) {
if (level >= 2)
ERROR("material group nesting too deep");
uint32_t uk = buffer_read_int32(r);
if (uk != 0)
ERROR("unexpected nonzero value in material group: %u", uk);
mg->nr_children = buffer_read_int32(r);
if (level == 1 && mg->nr_children != 2)
ERROR("blend group must have 2 children, got %u", mg->nr_children);
} else {
parse_textures(r, pol_version, &mg->m);
if (pol_version >= 4) {
uint32_t uk = buffer_read_int32(r);
if (uk != 0)
ERROR("unexpected nonzero value in material leaf: %u", uk);
} else if (level == 0) {
mg->nr_children = buffer_read_int32(r);
}
}
if (mg->nr_children > 0) {
mg->children = xcalloc(mg->nr_children, sizeof(struct pol_material_group));
for (uint32_t i = 0; i < mg->nr_children; i++)
parse_material_group(r, pol_version, &mg->children[i], level + 1);
}
}
static void parse_vertex(struct buffer *r, int pol_version, struct pol_vertex *v)
{
read_position(r, v->pos);
@@ -134,7 +173,7 @@ static void destroy_vertex(struct pol_vertex *v)
free(v->weights);
}
static void parse_triangle(struct buffer *r, struct pol_mesh *mesh, int triangle_index, int unknowns_length, const struct pol_material_group *mg)
static void parse_triangle(struct buffer *r, struct pol_mesh *mesh, int triangle_index, const struct pol_material_group *mg)
{
struct pol_triangle *t = &mesh->triangles[triangle_index];
t->vert_index[0] = buffer_read_int32(r);
@@ -148,8 +187,25 @@ static void parse_triangle(struct buffer *r, struct pol_mesh *mesh, int triangle
t->light_uv_index[1] = buffer_read_int32(r) - mesh->nr_uvs;
t->light_uv_index[2] = buffer_read_int32(r) - mesh->nr_uvs;
}
if (mesh->blend_uvs) {
t->blend_uv_index[0] = buffer_read_int32(r) - mesh->nr_uvs - mesh->nr_light_uvs;
t->blend_uv_index[1] = buffer_read_int32(r) - mesh->nr_uvs - mesh->nr_light_uvs;
t->blend_uv_index[2] = buffer_read_int32(r) - mesh->nr_uvs - mesh->nr_light_uvs;
}
buffer_skip(r, unknowns_length);
t->color_index[0] = buffer_read_int32(r);
t->color_index[1] = buffer_read_int32(r);
t->color_index[2] = buffer_read_int32(r);
if (mesh->alphas) {
t->alpha_index[0] = buffer_read_int32(r);
t->alpha_index[1] = buffer_read_int32(r);
t->alpha_index[2] = buffer_read_int32(r);
}
if (mesh->blend_weights) {
t->blend_weight_index[0] = buffer_read_int32(r);
t->blend_weight_index[1] = buffer_read_int32(r);
t->blend_weight_index[2] = buffer_read_int32(r);
}
read_direction(r, t->normals[0]);
read_direction(r, t->normals[1]);
@@ -172,6 +228,8 @@ static uint32_t parse_mesh_attributes(const char *name)
flags |= MESH_BOTH;
if (strstr(name, "(sprite)"))
flags |= MESH_SPRITE;
if (strstr(name, "(alpha)"))
flags |= MESH_ALPHA;
return flags;
}
@@ -207,6 +265,7 @@ static struct pol_mesh *parse_mesh(struct buffer *r, const struct pol *pol)
mesh->nr_light_uvs = buffer_read_int32(r);
if (mesh->nr_light_uvs > 0) {
mesh->flags |= MESH_HAS_LIGHT_UV;
mesh->light_uvs = xcalloc(mesh->nr_light_uvs, sizeof(vec2));
for (uint32_t i = 0; i < mesh->nr_light_uvs; i++) {
mesh->light_uvs[i][0] = buffer_read_float(r);
@@ -214,24 +273,58 @@ static struct pol_mesh *parse_mesh(struct buffer *r, const struct pol *pol)
}
}
int triangle_unknowns_length = 12;
if (pol->version == 1) {
int nr_unknown_vecs = buffer_read_int32(r);
buffer_skip(r, nr_unknown_vecs * 12);
} else {
int nr_unknown_ints = buffer_read_int32(r);
buffer_skip(r, nr_unknown_ints * 4);
int nr_unknown_bytes = buffer_read_int32(r);
if (nr_unknown_bytes) {
buffer_skip(r, nr_unknown_bytes);
triangle_unknowns_length += 12;
if (pol->version >= 4) {
mesh->nr_blend_uvs = buffer_read_int32(r);
if (mesh->nr_blend_uvs > 0) {
mesh->blend_uvs = xcalloc(mesh->nr_blend_uvs, sizeof(vec2));
for (uint32_t i = 0; i < mesh->nr_blend_uvs; i++) {
mesh->blend_uvs[i][0] = buffer_read_float(r);
mesh->blend_uvs[i][1] = buffer_read_float(r);
}
}
}
mesh->nr_colors = buffer_read_int32(r);
if (mesh->nr_colors > 0) {
mesh->colors = xcalloc(mesh->nr_colors, sizeof(vec3));
for (uint32_t i = 0; i < mesh->nr_colors; i++) {
if (pol->version == 1) {
mesh->colors[i][0] = buffer_read_float(r);
mesh->colors[i][1] = buffer_read_float(r);
mesh->colors[i][2] = buffer_read_float(r);
} else {
mesh->colors[i][0] = buffer_read_u8(r) / 255.f;
mesh->colors[i][1] = buffer_read_u8(r) / 255.f;
mesh->colors[i][2] = buffer_read_u8(r) / 255.f;
buffer_skip(r, 1);
}
}
}
if (pol->version >= 2) {
mesh->nr_alphas = buffer_read_int32(r);
if (mesh->nr_alphas > 0) {
mesh->alphas = xcalloc(mesh->nr_alphas, sizeof(float));
for (uint32_t i = 0; i < mesh->nr_alphas; i++) {
mesh->alphas[i] = buffer_read_u8(r) / 255.f;
}
}
}
if (pol->version >= 4) {
mesh->nr_blend_weights = buffer_read_int32(r);
if (mesh->nr_blend_weights > 0) {
mesh->blend_weights = xcalloc(mesh->nr_blend_weights, sizeof(float));
for (uint32_t i = 0; i < mesh->nr_blend_weights; i++) {
mesh->blend_weights[i] = buffer_read_u8(r) / 255.f;
}
}
}
mesh->nr_triangles = buffer_read_int32(r);
mesh->triangles = xcalloc(mesh->nr_triangles, sizeof(struct pol_triangle));
for (uint32_t i = 0; i < mesh->nr_triangles; i++) {
parse_triangle(r, mesh, i, triangle_unknowns_length, &pol->materials[mesh->material]);
parse_triangle(r, mesh, i, &pol->materials[mesh->material]);
}
if (pol->version == 1) {
@@ -254,6 +347,10 @@ static void free_mesh(struct pol_mesh *mesh)
free(mesh->vertices);
free(mesh->uvs);
free(mesh->light_uvs);
free(mesh->blend_uvs);
free(mesh->colors);
free(mesh->alphas);
free(mesh->blend_weights);
free(mesh->triangles);
free(mesh);
}
@@ -282,7 +379,7 @@ struct pol *pol_parse(uint8_t *data, size_t size)
struct pol *pol = xcalloc(1, sizeof(struct pol));
pol->version = buffer_read_int32(&r);
if (pol->version != 1 && pol->version != 2) {
if (pol->version != 1 && pol->version != 2 && pol->version != 4) {
WARNING("unknown POL version: %d", pol->version);
free(pol);
return NULL;
@@ -290,7 +387,7 @@ struct pol *pol_parse(uint8_t *data, size_t size)
pol->nr_materials = buffer_read_int32(&r);
pol->materials = xcalloc(pol->nr_materials, sizeof(struct pol_material_group));
for (uint32_t i = 0; i < pol->nr_materials; i++) {
parse_material_group(&r, &pol->materials[i]);
parse_material_group(&r, pol->version, &pol->materials[i], 0);
}
pol->nr_meshes = buffer_read_int32(&r);
@@ -397,6 +494,10 @@ void mot_free(struct mot *mot)
free(mot->motions[i]->name);
free(mot->motions[i]);
}
if (mot->texture_indices) {
free(mot->texture_indices);
}
mpr_free(mot->mpr);
free(mot);
}
@@ -457,3 +558,214 @@ struct amt_material *amt_find_material(struct amt *amt, const char *name)
}
return NULL;
}
void opr_load(uint8_t *data, size_t size, struct pol *pol)
{
bool *selected = xmalloc(pol->nr_meshes * sizeof(bool));
for (int i = 0; i < pol->nr_meshes; i++) {
selected[i] = !!pol->meshes[i];
}
while (size > 0) {
char line[200];
uint8_t *nl = memchr(data, '\n', size);
if (nl)
nl++;
else
nl = data + size;
int copylen = min(nl - data, sizeof(line) - 1);
memcpy(line, (char *)data, copylen);
line[copylen] = '\0';
size -= nl - data;
data = nl;
char s[200];
int i1, i2, i3;
float f1, f2, f3;
if (sscanf(line, "Mesh = \"%[^\"]\"", s) == 1) {
for (int i = 0; i < pol->nr_meshes; i++) {
selected[i] = pol->meshes[i] && !strcmp(pol->meshes[i]->name, s);
}
} else if (sscanf(line, "MeshPart = \"%[^\"]\"", s) == 1) {
for (int i = 0; i < pol->nr_meshes; i++) {
selected[i] = pol->meshes[i] && strstr(pol->meshes[i]->name, s);
}
} else if (sscanf(line, "BlendMode = %s", s) == 1) {
if (!strcmp(s, "Add")) {
for (int i = 0; i < pol->nr_meshes; i++) {
if (!selected[i]) continue;
pol->meshes[i]->flags |= MESH_BLEND_ADDITIVE;
}
} else {
WARNING("unknown BlendMode: %s", s);
}
} else if (sscanf(line, "Edge = %d", &i1) == 1) {
if (i1 == 0) {
for (int i = 0; i < pol->nr_meshes; i++) {
if (!selected[i]) continue;
pol->meshes[i]->flags |= MESH_NO_EDGE;
}
} else {
WARNING("invalid Edge value: %d", i1);
}
} else if (sscanf(line, "EdgeColor = ( %d , %d , %d )", &i1, &i2, &i3) == 3) {
for (int i = 0; i < pol->nr_meshes; i++) {
if (!selected[i]) continue;
pol->meshes[i]->edge_color = COLOR(i1, i2, i3, 255);
}
} else if (sscanf(line, "EdgeSize = %f", &f1) == 1) {
for (int i = 0; i < pol->nr_meshes; i++) {
if (!selected[i]) continue;
pol->meshes[i]->edge_size = f1;
}
} else if (sscanf(line, "HeightDetection = %s", s) == 1) {
if (!strcmp(s, "true")) {
for (int i = 0; i < pol->nr_meshes; i++) {
if (!selected[i]) continue;
pol->meshes[i]->flags |= MESH_HEIGHT_DETECTION;
}
} else if (!strcmp(s, "false")) {
for (int i = 0; i < pol->nr_meshes; i++) {
if (!selected[i]) continue;
pol->meshes[i]->flags |= MESH_NO_HEIGHT_DETECTION;
}
} else {
WARNING("invalid HeightDetection: %s", s);
}
} else if (sscanf(line, "DrawShadow = %s", s) == 1) {
if (!strcmp(s, "false")) {
for (int i = 0; i < pol->nr_meshes; i++) {
if (!selected[i]) continue;
pol->meshes[i]->flags |= MESH_NO_DRAWSHADOW;
}
} else if (strcmp(s, "true")) {
WARNING("invalid DrawShadow: %s", s);
}
} else if (sscanf(line, "ZWrite = %s", s) == 1) {
if (!strcmp(s, "false")) {
for (int i = 0; i < pol->nr_meshes; i++) {
if (!selected[i]) continue;
pol->meshes[i]->flags |= MESH_NO_ZWRITE;
}
} else if (strcmp(s, "true")) {
WARNING("invalid ZWrite: %s", s);
}
} else if (sscanf(line, "UVScroll = ( %f , %f )", &f1, &f2) == 2) {
for (int i = 0; i < pol->nr_meshes; i++) {
if (!selected[i]) continue;
pol->meshes[i]->uv_scroll[0] = f1;
pol->meshes[i]->uv_scroll[1] = f2;
}
} else if (sscanf(line, "SpecularColor = ( %f , %f , %f )", &f1, &f2, &f3) == 3) {
for (int i = 0; i < pol->nr_meshes; i++) {
if (!selected[i]) continue;
pol->meshes[i]->flags |= MESH_HAS_SPECULAR_COLOR;
pol->meshes[i]->specular_color[0] = f1;
pol->meshes[i]->specular_color[1] = f2;
pol->meshes[i]->specular_color[2] = f3;
}
} else if (sscanf(line, "SpecularPower = %f", &f1) == 1) {
for (int i = 0; i < pol->nr_meshes; i++) {
if (!selected[i]) continue;
pol->meshes[i]->flags |= MESH_HAS_SPECULAR_POWER;
pol->meshes[i]->specular_power = f1;
}
} else if (sscanf(line, "ParallaxScale = %f", &f1) == 1) {
// parallax mapping is not implemented
} else if (sscanf(line, "ReliefScale = %f", &f1) == 1) {
// relief mapping is not implemented
} else if (sscanf(line, "MeshCombinable = %s", s) == 1) {
if (strcmp(s, "true") && strcmp(s, "false"))
WARNING("invalid MeshCombinable: %s", s);
} else if (strchr(line, '=')) {
WARNING("unknown field: %s", line);
}
}
free(selected);
}
void txa_load(uint8_t *data, size_t size, struct mot *mot)
{
uint32_t count = 0;
uint32_t *indices = xmalloc(100 * sizeof(uint32_t));
const char *p = (const char *)data;
while (p < (const char *)data + size) {
if (isdigit(*p)) {
uint32_t n = 0;
while (p < (const char *)data + size && isdigit(*p)) {
n = n * 10 + (*p - '0');
p++;
}
indices[count++] = n;
if (count % 100 == 0) {
indices = xrealloc(indices, (count + 100) * sizeof(uint32_t));
}
} else if (isspace(*p)) {
p++;
} else {
WARNING("invalid character in txa file: '%c'", *p);
p++;
}
}
mot->nr_texture_indices = count;
mot->texture_indices = indices;
}
void lit_reset(float *out)
{
static const float lit_param_defaults[RE_NR_LIGHT_PARAMS] = {
[SEAL_LP_TONEMAP_EXPOSURE_BIAS] = 1.0f,
[SEAL_LP_TONEMAP_WHITE_POINT] = 1.0f,
[SEAL_LP_TONEMAP_A] = 0.22f,
[SEAL_LP_TONEMAP_B] = 0.30f,
[SEAL_LP_TONEMAP_C] = 0.10f,
[SEAL_LP_TONEMAP_D] = 0.20f,
[SEAL_LP_TONEMAP_E] = 0.01f,
[SEAL_LP_TONEMAP_F] = 0.30f,
[SEAL_LP_HEMI_VEC + 0] = -1.0f,
[SEAL_LP_HEMI_VEC + 1] = -1.0f,
[SEAL_LP_HEMI_VEC + 2] = 1.0f,
[SEAL_LP_HEMI_SKY_COLOR + 0] = 1.2f,
[SEAL_LP_HEMI_SKY_COLOR + 1] = 1.2f,
[SEAL_LP_HEMI_SKY_COLOR + 2] = 1.2f,
[SEAL_LP_HEMI_MID_COLOR + 0] = 0.5f,
[SEAL_LP_HEMI_MID_COLOR + 1] = 0.5f,
[SEAL_LP_HEMI_MID_COLOR + 2] = 0.5f,
[SEAL_LP_HEMI_GROUND_COLOR + 0] = 0.3f,
[SEAL_LP_HEMI_GROUND_COLOR + 1] = 0.3f,
[SEAL_LP_HEMI_GROUND_COLOR + 2] = 0.3f,
[SEAL_LP_LS_BETA_R] = 0.25f,
[SEAL_LP_LS_BETA_M] = 1.25f,
[SEAL_LP_LS_G] = 0.05f,
[SEAL_LP_LS_DISTANCE] = 140.0f,
[SEAL_LP_LS_LIGHT_VEC + 0] = -1.0f,
[SEAL_LP_LS_LIGHT_VEC + 1] = -1.0f,
[SEAL_LP_LS_LIGHT_VEC + 2] = 1.0f,
[SEAL_LP_LS_LIGHT_COLOR + 0] = 1.0f,
[SEAL_LP_LS_LIGHT_COLOR + 1] = 1.0f,
[SEAL_LP_LS_LIGHT_COLOR + 2] = 1.0f,
[SEAL_LP_LS_SUN_COLOR + 0] = 0.5f,
[SEAL_LP_LS_SUN_COLOR + 1] = 0.5f,
[SEAL_LP_LS_SUN_COLOR + 2] = 0.5f,
};
memcpy(out, lit_param_defaults, sizeof(lit_param_defaults));
}
bool lit_parse(uint8_t *data, size_t size, float *out)
{
if (size != 8 + RE_NR_LIGHT_PARAMS * 4 || memcmp(data, "LITP", 4) != 0) {
WARNING("invalid .lit file");
return false;
}
struct buffer r;
buffer_init(&r, data, size);
buffer_skip(&r, 4); // "LITP"
int32_t version = buffer_read_int32(&r);
if (version != 0) {
WARNING("unsupported .lit version %d", version);
return false;
}
lit_reset(out);
for (int i = 0; i < RE_NR_LIGHT_PARAMS; i++)
out[i] = buffer_read_float(&r);
return true;
}
+1 -1
View File
@@ -943,7 +943,7 @@ void particle_object_calc_local_transform(struct RE_instance *inst, struct parti
struct pae_object *pae_obj = po->pae_obj;
float t = glm_percent(pi->begin_frame, pi->end_frame, frame);
vec3 pos, up_vector;
vec3 pos = {0}, up_vector;
calc_pos_and_up_vector(po, pi, t, pos, up_vector);
float rel_frame = frame - pi->begin_frame;
+479 -63
View File
@@ -23,6 +23,7 @@
#include "system4.h"
#include "system4/aar.h"
#include "system4/archive.h"
#include "system4/cg.h"
#include "system4/hashtable.h"
#include "system4/string.h"
@@ -34,21 +35,32 @@
#include "vm.h"
#include "xsystem4.h"
enum RE_plugin_version re_plugin_version;
static struct RE_instance *create_instance(struct RE_plugin *plugin)
{
struct RE_instance *instance = xcalloc(1, sizeof(struct RE_instance));
struct RE_instance *instance = xcalloc_aligned(1, struct RE_instance);
instance->plugin = plugin;
instance->draw_edge = plugin->version == RE_TAPIR_PLUGIN;
for (int i = 0; i < RE_NR_INSTANCE_TARGETS; i++)
instance->target[i] = -1;
instance->scale[0] = 1.0f;
instance->scale[1] = 1.0f;
instance->scale[2] = 1.0f;
glm_vec3_one(instance->scale);
instance->alpha = 1.0f;
glm_vec3_one(instance->diffuse);
instance->shadow_volume_bone_radius = 0.1f;
instance->draw_bump = true;
instance->fps = 30.0f;
instance->use_mag_speed = true;
instance->column_height = 1.0f;
instance->column_radius = 1.0f;
glm_vec3_copy((vec3){-1.0f, 2.0f, 0.0f}, instance->vertex_pos[0]);
glm_vec3_copy((vec3){-1.0f, 0.0f, 0.0f}, instance->vertex_pos[1]);
glm_vec3_copy((vec3){ 1.0f, 2.0f, 0.0f}, instance->vertex_pos[2]);
glm_vec3_copy((vec3){ 1.0f, 0.0f, 0.0f}, instance->vertex_pos[3]);
glm_vec2_copy((vec2){0.0f, 0.0f}, instance->vertex_uv[0]);
glm_vec2_copy((vec2){0.0f, 1.0f}, instance->vertex_uv[1]);
glm_vec2_copy((vec2){1.0f, 0.0f}, instance->vertex_uv[2]);
glm_vec2_copy((vec2){1.0f, 1.0f}, instance->vertex_uv[3]);
glm_mat4_identity(instance->local_transform);
glm_mat3_identity(instance->normal_transform);
return instance;
@@ -58,7 +70,13 @@ static void free_instance(struct RE_instance *instance);
static void unload_instance(struct RE_instance *instance)
{
if (instance->motion) {
if (instance->name) {
free_string(instance->name);
instance->name = NULL;
}
// A billboard's motion holds frame animation state that the game can set
// before loading the instance data, so it must survive unloads.
if (instance->motion && instance->type != RE_ITYPE_BILLBOARD) {
motion_free(instance->motion);
instance->motion = NULL;
}
@@ -74,10 +92,21 @@ static void unload_instance(struct RE_instance *instance)
particle_effect_free(instance->effect);
instance->effect = NULL;
}
if (instance->s3de_effect) {
s3de_effect_free(instance->s3de_effect);
instance->s3de_effect = NULL;
}
if (instance->bone_transforms) {
glDeleteBuffers(1, &instance->bone_transforms_ubo);
free(instance->bone_transforms);
instance->bone_transforms = NULL;
}
if (instance->billboard_frames) {
// No need to free the textures, they are owned by the renderer.
free(instance->billboard_frames);
instance->billboard_frames = NULL;
instance->nr_billboard_frames = 0;
}
if (instance->height_detector) {
RE_renderer_free_height_detector(instance->height_detector);
instance->height_detector = NULL;
@@ -91,7 +120,10 @@ static void unload_instance(struct RE_instance *instance)
static void free_instance(struct RE_instance *instance)
{
unload_instance(instance);
free(instance);
if (instance->motion)
motion_free(instance->motion);
free(instance->light_params);
xfree_aligned(instance);
}
static void RE_back_cg_init(struct RE_back_cg *bcg)
@@ -128,12 +160,18 @@ static void update_motion(struct motion *m, float delta_frame)
}
break;
case RE_MOTION_STATE_LOOP:
if (m->current_frame > m->loop_frame_end)
if (m->loop_frame_begin == m->loop_frame_end)
m->current_frame = m->loop_frame_begin;
else if (m->current_frame > m->loop_frame_end)
m->current_frame = m->loop_frame_begin + fmodf(m->current_frame - m->loop_frame_begin, m->loop_frame_end - m->loop_frame_begin);
break;
default:
VM_ERROR("Invalid motion state %d", m->state);
}
uint32_t anim_frame = m->current_frame - m->frame_begin;
m->texture_index = (m->mot && anim_frame < m->mot->nr_texture_indices)
? m->mot->texture_indices[anim_frame] : 0;
}
static void calc_motion_frame(struct motion *m, int bone, struct mot_frame *out)
@@ -177,11 +215,16 @@ static void update_bones(struct RE_instance *inst)
}
glm_mat4_copy(bone_transform, parent_transforms[i]);
glm_mat4_mul(bone_transform, inst->model->bones[i].inverse_bind_matrix, inst->bone_transforms[i]);
glm_vec3_minv(aabb[0], bone_transform[3], aabb[0]);
glm_vec3_maxv(aabb[1], bone_transform[3], aabb[1]);
glm_mat4_mul(bone_transform, inst->model->bones[i].inverse_bind_matrix, bone_transform);
glm_mat4_transpose(bone_transform); // column major -> row major
glm_mat3x4_copy(bone_transform, inst->bone_transforms[i]);
}
glBindBuffer(GL_UNIFORM_BUFFER, inst->bone_transforms_ubo);
glBufferSubData(GL_UNIFORM_BUFFER, 0, inst->model->nr_bones * sizeof(mat3x4), inst->bone_transforms);
glBindBuffer(GL_UNIFORM_BUFFER, 0);
// Update inst->bounding_sphere.
vec3 center;
@@ -199,9 +242,12 @@ static void update_bones(struct RE_instance *inst)
}
}
struct RE_plugin *RE_plugin_new(void)
struct RE_plugin *RE_plugin_new(enum RE_plugin_version version)
{
char *aar_path = gamedir_path("Data/ReignData.red");
re_debug_init();
re_plugin_version = version;
char *aar_path = gamedir_path(version <= RE_TAPIR_PLUGIN ? "Data/ReignData.red" : "Data/3DData.red");
int error = ARCHIVE_SUCCESS;
struct archive *aar = (struct archive *)aar_open(aar_path, MMAP_IF_64BIT, &error);
if (error == ARCHIVE_FILE_ERROR) {
@@ -213,26 +259,34 @@ struct RE_plugin *RE_plugin_new(void)
if (!aar)
return NULL;
struct RE_plugin *plugin = xcalloc(1, sizeof(struct RE_plugin));
struct RE_plugin *plugin = xcalloc_aligned(1, struct RE_plugin);
plugin->version = version;
plugin->plugin.name = "ReignEngine";
plugin->plugin.update = RE_render;
plugin->plugin.debug_print = RE_debug_print;
plugin->plugin.to_json = RE_to_json;
plugin->nr_instances = 16;
plugin->instances = xcalloc(plugin->nr_instances, sizeof(struct RE_instance *));
plugin->aar = aar;
plugin->model_cache = ht_create(32);
plugin->pae_cache = ht_create(32);
plugin->effect_cache = ht_create(32);
for (int i = 0; i < RE_NR_BACK_CGS; i++)
RE_back_cg_init(&plugin->back_cg[i]);
plugin->mag_speed = 1;
if (version == RE_TAPIR_PLUGIN)
plugin->draw_options[RE_DRAW_OPTION_EDGE] = 1;
plugin->draw_options[RE_DRAW_OPTION_LIGHTING] = 1;
plugin->edge_length = 0.02f;
plugin->fog_type = RE_FOG_NONE;
plugin->fog_near = 1.0;
plugin->fog_far = 10.0;
plugin->fog_near = 1.0f;
plugin->fog_far = 10.0f;
glm_vec3_one(plugin->fog_color);
lit_reset(plugin->light_params);
return plugin;
}
void RE_plugin_free(struct RE_plugin *plugin)
{
RE_plugin_unbind(plugin);
for (int i = 0; i < plugin->nr_instances; i++) {
if (plugin->instances[i])
free_instance(plugin->instances[i]);
@@ -241,13 +295,12 @@ void RE_plugin_free(struct RE_plugin *plugin)
archive_free(plugin->aar);
ht_foreach_value(plugin->model_cache, (void(*)(void*))model_free);
ht_free(plugin->model_cache);
ht_foreach_value(plugin->pae_cache, (void(*)(void*))pae_free);
ht_free(plugin->pae_cache);
if (plugin->renderer)
RE_renderer_free(plugin->renderer);
ht_foreach_value(plugin->effect_cache, re_plugin_version < RE_SEAL_PLUGIN ?
(void(*)(void*))pae_free : (void(*)(void*))s3de_free);
ht_free(plugin->effect_cache);
for (int i = 0; i < RE_NR_BACK_CGS; i++)
RE_back_cg_destroy(&plugin->back_cg[i]);
free(plugin);
xfree_aligned(plugin);
}
bool RE_plugin_bind(struct RE_plugin *plugin, int sprite)
@@ -255,9 +308,11 @@ bool RE_plugin_bind(struct RE_plugin *plugin, int sprite)
struct sact_sprite *sp = sact_try_get_sprite(sprite);
if (!sp)
return false;
plugin->renderer = RE_renderer_new(sprite_get_texture(sp));
plugin->renderer = RE_renderer_new();
plugin->sprite = sprite;
sprite_bind_plugin(sp, &plugin->plugin);
struct texture *texture = sprite_get_texture(sp);
RE_renderer_set_viewport_size(plugin->renderer, texture->w, texture->h);
return true;
}
@@ -274,12 +329,35 @@ bool RE_plugin_unbind(struct RE_plugin *plugin)
return true;
}
bool RE_plugin_suspend(struct RE_plugin *plugin)
{
if (!plugin)
return false;
plugin->suspended = true;
struct sact_sprite *sp = sact_try_get_sprite(plugin->sprite);
if (sp)
sprite_set_show(sp, false);
return true;
}
bool RE_plugin_resume(struct RE_plugin *plugin)
{
if (!plugin)
return false;
plugin->suspended = false;
struct sact_sprite *sp = sact_try_get_sprite(plugin->sprite);
if (sp)
sprite_set_show(sp, true);
return true;
}
bool RE_build_model(struct RE_plugin *plugin, int elapsed_ms)
{
if (!plugin)
return false;
plugin->camera.quake_pitch = plugin->camera.quake_yaw = 0.0;
plugin->camera.override_active = false;
for (int i = 0; i < plugin->nr_instances; i++) {
struct RE_instance *inst = plugin->instances[i];
@@ -287,23 +365,49 @@ bool RE_build_model(struct RE_plugin *plugin, int elapsed_ms)
continue;
float delta_frame = inst->fps * elapsed_ms / 1000.0;
if (inst->use_mag_speed)
delta_frame *= plugin->mag_speed;
update_motion(inst->motion, delta_frame);
update_motion(inst->next_motion, delta_frame);
if (inst->type == RE_ITYPE_SKINNED)
update_bones(inst);
inst->texture_animation_index = inst->motion ? inst->motion->texture_index : 0;
}
// Update particle effects in a second pass, because it uses the results of
// update_bones().
for (int i = 0; i < plugin->nr_instances; i++) {
struct RE_instance *inst = plugin->instances[i];
if (inst && inst->type == RE_ITYPE_PARTICLE_EFFECT)
if (!inst || inst->type != RE_ITYPE_PARTICLE_EFFECT)
continue;
if (inst->s3de_effect)
s3de_effect_update(inst);
else
particle_effect_update(inst);
}
return true;
}
bool RE_set_viewport(struct RE_plugin *plugin, int x, int y, int width, int height)
{
if (!plugin)
return false;
struct sact_sprite *sp = sact_try_get_sprite(plugin->sprite);
if (!sp || sp->plugin != &plugin->plugin) {
WARNING("No sprite bound to plugin");
return false;
}
sprite_init_color(sp, width, height, 0, 0, 0, 255);
sprite_set_pos(sp, x, y);
RE_renderer_set_viewport_size(plugin->renderer, width, height);
plugin->viewport_x = x;
plugin->viewport_y = y;
plugin->viewport_width = width;
plugin->viewport_height = height;
return true;
}
bool RE_set_projection(struct RE_plugin *plugin, float width, float height, float near, float far, float deg)
{
if (!plugin)
@@ -324,17 +428,29 @@ int RE_create_instance(struct RE_plugin *plugin)
{
if (!plugin)
return -1;
for (int i = 0; i < plugin->nr_instances; i++) {
if (!plugin->instances[i]) {
plugin->instances[i] = create_instance(plugin);
return i;
}
int index;
for (index = 0; index < plugin->nr_instances; index++) {
if (!plugin->instances[index])
break;
}
int old_size = plugin->nr_instances;
plugin->nr_instances *= 2;
plugin->instances = xrealloc_array(plugin->instances, old_size, plugin->nr_instances, sizeof(struct RE_instance *));
plugin->instances[old_size] = create_instance(plugin);
return old_size;
RE_create_instance_at(plugin, index);
return index;
}
struct RE_instance *RE_create_instance_at(struct RE_plugin *plugin, int index)
{
if (index >= plugin->nr_instances) {
int old_size = plugin->nr_instances;
int new_size = old_size;
while (new_size <= index)
new_size *= 2;
plugin->instances = xrealloc_array(plugin->instances, old_size, new_size, sizeof(struct RE_instance *));
plugin->nr_instances = new_size;
}
if (plugin->instances[index])
free_instance(plugin->instances[index]);
plugin->instances[index] = create_instance(plugin);
return plugin->instances[index];
}
bool RE_release_instance(struct RE_plugin *plugin, int instance)
@@ -363,27 +479,89 @@ bool RE_instance_set_type(struct RE_instance *instance, int type)
instance->motion->instance = instance;
break;
case RE_ITYPE_DIRECTIONAL_LIGHT:
if (re_plugin_version >= RE_SEAL_PLUGIN) {
instance->light_params = xmalloc(RE_NR_LIGHT_PARAMS * sizeof(float));
lit_reset(instance->light_params);
}
break;
case RE_ITYPE_SPECULAR_LIGHT:
break;
case RE_ITYPE_PARTICLE_EFFECT:
break;
case RE_ITYPE_PATH_LINE:
break;
default:
ERROR("unknown instance type %d", type);
VM_ERROR("unknown instance type %d", type);
}
instance->type = type;
return true;
}
bool RE_instance_data_exists(struct RE_instance *instance, const char *name)
{
if (!instance)
return false;
const char *ext;
switch (instance->type) {
case RE_ITYPE_STATIC:
case RE_ITYPE_SKINNED:
ext = ".POL";
break;
case RE_ITYPE_PARTICLE_EFFECT:
ext = ".3de";
break;
default:
return archive_exists_by_name(instance->plugin->aar, name, NULL);
}
const char *basename = strrchr(name, '\\');
basename = basename ? basename + 1 : name;
char *path = xmalloc(strlen(name) + strlen(basename) + strlen(ext) + 2);
sprintf(path, "%s\\%s%s", name, basename, ext);
bool exists = archive_exists_by_name(instance->plugin->aar, path, NULL);
free(path);
return exists;
}
// Loads the frame images of a billboard instance. They are stored in the
// archive as "<name>\<basename>.png", "<name>\<basename>[1].png", ...
static bool load_billboard_frames(struct RE_instance *instance, const char *name)
{
const char *basename = strrchr(name, '\\');
basename = basename ? basename + 1 : name;
char *path = xmalloc(strlen(name) + strlen(basename) + 22);
int capacity = 8;
instance->billboard_frames = xcalloc(capacity, sizeof(struct billboard_texture *));
for (int i = 0;; i++) {
if (i == 0)
sprintf(path, "%s\\%s.png", name, basename);
else
sprintf(path, "%s\\%s[%d].png", name, basename, i);
struct billboard_texture *bt = RE_renderer_load_billboard_texture_by_path(
instance->plugin->renderer, instance->plugin->aar, path);
if (!bt)
break;
if (i == capacity) {
instance->billboard_frames = xrealloc_array(
instance->billboard_frames, capacity, capacity * 2, sizeof(struct billboard_texture *));
capacity *= 2;
}
instance->billboard_frames[i] = bt;
instance->nr_billboard_frames = i + 1;
}
free(path);
return instance->nr_billboard_frames > 0;
}
bool RE_instance_load(struct RE_instance *instance, const char *name)
{
if (!instance)
return false;
unload_instance(instance);
if (name[0] == '\0')
return false;
return true; // empty name just unloads the instance
instance->name = cstr_to_string(name);
struct pae *pae;
switch (instance->type) {
case RE_ITYPE_STATIC:
case RE_ITYPE_SKINNED:
@@ -393,30 +571,77 @@ bool RE_instance_load(struct RE_instance *instance, const char *name)
if (instance->model)
ht_put(instance->plugin->model_cache, name, instance->model);
}
if (instance->model && instance->model->nr_bones > 0)
instance->bone_transforms = xcalloc(instance->model->nr_bones, sizeof(mat4));
if (instance->model && instance->model->nr_bones > 0) {
instance->bone_transforms = xcalloc(instance->model->nr_bones, sizeof(mat3x4));
glGenBuffers(1, &instance->bone_transforms_ubo);
glBindBuffer(GL_UNIFORM_BUFFER, instance->bone_transforms_ubo);
glBufferData(GL_UNIFORM_BUFFER, MAX_BONES * sizeof(mat3x4), NULL, GL_DYNAMIC_DRAW);
glBindBuffer(GL_UNIFORM_BUFFER, 0);
}
return !!instance->model;
case RE_ITYPE_PARTICLE_EFFECT:
pae = ht_get(instance->plugin->pae_cache, name, NULL);
if (!pae) {
pae = pae_load(instance->plugin->aar, name);
if (!pae)
return false;
ht_put(instance->plugin->pae_cache, name, pae);
}
instance->effect = particle_effect_create(pae);
if (!instance->motion) {
instance->motion = xcalloc(1, sizeof(struct motion));
instance->motion->instance = instance;
pae_calc_frame_range(instance->effect->pae, instance->motion);
if (re_plugin_version >= RE_SEAL_PLUGIN) {
struct s3de *s3de = ht_get(instance->plugin->effect_cache, name, NULL);
if (!s3de) {
s3de = s3de_load(instance->plugin->aar, name);
if (!s3de)
return false;
ht_put(instance->plugin->effect_cache, name, s3de);
}
instance->s3de_effect = s3de_effect_create(s3de, instance->plugin->aar);
if (!instance->motion) {
instance->motion = xcalloc(1, sizeof(struct motion));
instance->motion->instance = instance;
s3de_calc_frame_range(instance->s3de_effect->s3de, instance->motion);
}
} else {
struct pae *pae = ht_get(instance->plugin->effect_cache, name, NULL);
if (!pae) {
pae = pae_load(instance->plugin->aar, name);
if (!pae)
return false;
ht_put(instance->plugin->effect_cache, name, pae);
}
instance->effect = particle_effect_create(pae);
if (!instance->motion) {
instance->motion = xcalloc(1, sizeof(struct motion));
instance->motion->instance = instance;
pae_calc_frame_range(instance->effect->pae, instance->motion);
}
}
return true;
case RE_ITYPE_BILLBOARD:
if (re_plugin_version >= RE_SEAL_PLUGIN)
return load_billboard_frames(instance, name);
case RE_ITYPE_DIRECTIONAL_LIGHT:
if (re_plugin_version >= RE_SEAL_PLUGIN) {
struct archive_data *dfile = archive_get_by_name(instance->plugin->aar, name);
if (!dfile)
return false;
bool ok = lit_parse(dfile->data, dfile->size, instance->light_params);
archive_free_data(dfile);
return ok;
}
return false;
default:
WARNING("Invalid instance type %d", instance->type);
return false;
}
}
bool RE_instance_motion_exists(struct RE_instance *instance, const char *name)
{
if (!instance || !instance->model)
return false;
if (instance->model->mot_cache && ht_get(instance->model->mot_cache, name, NULL))
return true;
char *path = xmalloc(strlen(instance->model->path) + strlen(name) + 6);
sprintf(path, "%s\\%s.MOT", instance->model->path, name);
bool exists = archive_exists_by_name(instance->plugin->aar, path, NULL);
free(path);
return exists;
}
bool RE_instance_load_motion(struct RE_instance *instance, const char *name)
{
if (!instance)
@@ -446,19 +671,41 @@ bool RE_instance_free_next_motion(struct RE_instance *instance)
return true;
}
bool RE_instance_set_mesh_show(struct RE_instance *instance, const char *mesh_name, bool show)
{
if (!instance || !instance->model)
return false;
for (int i = 0; i < instance->model->nr_meshes; i++) {
if (!strcmp(instance->model->meshes[i].name, mesh_name)) {
instance->model->meshes[i].hidden = !show;
return true;
}
}
return false;
}
// Converts from the (top-left, top-right, bottom-left, bottom-right) order used
// by the API to the vertex order of the billboard mesh.
static const int billboard_vertex_index[4] = {0, 2, 1, 3};
bool RE_instance_set_vertex_pos(struct RE_instance *instance, int index, float x, float y, float z)
{
if (!instance)
if (!instance || (unsigned)index >= 4)
return false;
if (instance->type != RE_ITYPE_BILLBOARD)
ERROR("not implemented");
// Hack: This works because SetInstanceVertexPos is only used to scale
// billboards, and SetInstanceScale is not used for billboards.
if (index == 1) {
instance->scale[0] = x;
instance->scale[1] = y / 2.0;
}
return false;
glm_vec3_copy((vec3){x, y, z}, instance->vertex_pos[billboard_vertex_index[index]]);
return true;
}
bool RE_instance_set_vertex_uv(struct RE_instance *instance, int index, float u, float v)
{
if (!instance || (unsigned)index >= 4)
return false;
if (instance->type != RE_ITYPE_BILLBOARD)
ERROR("not implemented");
glm_vec2_copy((vec2){u, v}, instance->vertex_uv[billboard_vertex_index[index]]);
return true;
}
int RE_instance_get_bone_index(struct RE_instance *instance, const char *name)
@@ -480,7 +727,10 @@ bool RE_instance_trans_local_pos_to_world_pos_by_bone(struct RE_instance *instan
if (instance->local_transform_needs_update)
RE_instance_update_local_transform(instance);
glm_mat4_mulv3(instance->bone_transforms[bone], offset, 1.0, out);
mat4 bone_transform = GLM_MAT4_IDENTITY_INIT;
glm_mat3x4_copy(instance->bone_transforms[bone], bone_transform);
glm_mat4_transpose(bone_transform); // row major -> column major
glm_mat4_mulv3(bone_transform, offset, 1.0, out);
glm_mat4_mulv3(instance->local_transform, out, 1.0, out);
return true;
}
@@ -507,6 +757,31 @@ float RE_instance_calc_height(struct RE_instance *instance, float x, float z)
return cnt ? total / cnt : 0.0f;
}
float RE_instance_calc_2d_detection_height(struct RE_instance *instance, float x, float z)
{
if (!instance || !instance->model->collider)
return false;
vec2 xz = { x, -z };
float h;
if (collider_height(instance->model->collider, xz, &h))
return h;
return 0.f;
}
bool RE_instance_calc_2d_detection(struct RE_instance *instance, float x0, float y0, float z0, float x1, float y1, float z1, float *x2, float *y2, float *z2, float radius)
{
if (!instance || !instance->model->collider)
return false;
vec2 p0 = { x0, -z0 };
vec2 p1 = { x1, -z1 };
vec2 p2;
if (!check_collision(instance->model->collider, p0, p1, radius, p2))
return false;
*x2 = p2[0];
*z2 = -p2[1];
return collider_height(instance->model->collider, p2, y2);
}
bool RE_instance_set_debug_draw_shadow_volume(struct RE_instance *inst, bool draw)
{
if (!inst)
@@ -520,6 +795,147 @@ bool RE_instance_set_debug_draw_shadow_volume(struct RE_instance *inst, bool dra
return true;
}
bool RE_instance_find_path(struct RE_instance *inst, vec3 start, vec3 goal)
{
if (!inst || !inst->model->collider)
return false;
mat4 vp_transform;
RE_calc_view_matrix(&inst->plugin->camera, NULL, vp_transform);
glm_mat4_mul(inst->plugin->proj_transform, vp_transform, vp_transform);
return collider_find_path(inst->model->collider, start, goal, vp_transform);
}
const vec3 *RE_instance_get_path_line(struct RE_instance *inst, int *nr_path_points)
{
if (!inst || !inst->model->collider)
return NULL;
*nr_path_points = inst->model->collider->nr_path_points;
return inst->model->collider->path_points;
}
bool RE_instance_optimize_path_line(struct RE_instance *inst)
{
if (!inst || !inst->model->collider)
return false;
return collider_optimize_path(inst->model->collider);
}
bool RE_instance_calc_path_finder_intersect_eye_vec(struct RE_instance *inst, int mouse_x, int mouse_y, vec3 out)
{
if (!inst || !inst->model || !inst->model->collider)
return false;
float ndc_x = 2.f * mouse_x / inst->plugin->renderer->viewport_width - 1.f;
float ndc_y = 1.f - 2.f * mouse_y / inst->plugin->renderer->viewport_height;
vec4 near = { ndc_x, ndc_y, -1.f, 1.f };
vec4 far = { ndc_x, ndc_y, 1.f, 1.f };
mat4 inv_vp;
RE_calc_view_matrix(&inst->plugin->camera, NULL, inv_vp);
glm_mat4_mul(inst->plugin->proj_transform, inv_vp, inv_vp);
glm_mat4_inv(inv_vp, inv_vp);
glm_mat4_mulv(inv_vp, near, near);
glm_mat4_mulv(inv_vp, far, far);
glm_vec3_divs(near, near[3], near);
glm_vec3_divs(far, far[3], far);
vec3 origin, direction;
glm_vec3_copy(near, origin);
glm_vec3_sub(far, near, direction);
glm_vec3_normalize(direction);
return collider_raycast(inst->model->collider, origin, direction, out);
}
bool RE_plugin_transform_pos_to_view_pos(struct RE_plugin *plugin, float x, float y, float z, int *view_x, int *view_y)
{
if (!plugin)
return false;
mat4 vp;
RE_calc_view_matrix(&plugin->camera, NULL, vp);
glm_mat4_mul(plugin->proj_transform, vp, vp);
vec4 pos = { x, y, z, 1.f };
glm_mat4_mulv(vp, pos, pos);
if (pos[3] == 0.f)
return false;
float ndc_x = pos[0] / pos[3];
float ndc_y = pos[1] / pos[3];
*view_x = (int)((ndc_x + 1.f) * 0.5f * plugin->renderer->viewport_width);
*view_y = (int)((1.f - ndc_y) * 0.5f * plugin->renderer->viewport_height);
return true;
}
bool RE_plugin_get_camera_z_vector(struct RE_plugin *plugin, vec3 out)
{
if (!plugin)
return false;
vec3 euler;
if (plugin->camera.override_active) {
euler[0] = glm_rad(plugin->camera.override_pitch);
euler[1] = glm_rad(plugin->camera.override_yaw);
euler[2] = glm_rad(plugin->camera.override_roll);
} else {
euler[0] = glm_rad(plugin->camera.pitch + plugin->camera.quake_pitch);
euler[1] = glm_rad(plugin->camera.yaw + plugin->camera.quake_yaw);
euler[2] = glm_rad(plugin->camera.roll);
}
mat4 rot;
glm_euler_yxz(euler, rot);
glm_mat4_mulv3(rot, GLM_FORWARD, 0.f, out);
return true;
}
void RE_plugin_reset_light_param(struct RE_plugin *plugin)
{
lit_reset(plugin->light_params);
}
bool RE_plugin_set_fog_type(struct RE_plugin *plugin, int type)
{
if (re_plugin_version == RE_REIGN_PLUGIN) {
switch (type) {
case 0: plugin->fog_type = RE_FOG_NONE; return true;
case 1: plugin->fog_type = RE_FOG_LINEAR; return true;
case 2: plugin->fog_type = RE_FOG_LIGHT_SCATTERING; return true;
default: break;
}
} else {
switch (type) {
case 0: plugin->fog_type = RE_FOG_NONE; return true;
case 1: plugin->fog_type = RE_FOG_LIGHT_SCATTERING; return true;
default: break;
}
}
WARNING("unknown fog type %d", type);
return false;
}
int RE_plugin_get_fog_type(struct RE_plugin *plugin)
{
if (re_plugin_version == RE_REIGN_PLUGIN) {
switch (plugin->fog_type) {
case RE_FOG_NONE: return 0;
case RE_FOG_LINEAR: return 1;
case RE_FOG_LIGHT_SCATTERING: return 2;
default: break;
}
} else {
switch (plugin->fog_type) {
case RE_FOG_NONE: return 0;
case RE_FOG_LIGHT_SCATTERING: return 1;
default: break;
}
}
ERROR("[BUG] unexpected fog type %d", plugin->fog_type);
}
void RE_instance_update_local_transform(struct RE_instance *inst)
{
vec3 euler = {
@@ -574,9 +990,9 @@ bool RE_motion_set_frame_range(struct motion *motion, float begin, float end)
return false;
motion->frame_begin = begin;
motion->frame_end = end;
if (motion->instance->type == RE_ITYPE_BILLBOARD) {
if (motion->instance->type == RE_ITYPE_BILLBOARD && re_plugin_version < RE_SEAL_PLUGIN) {
for (int i = begin; i < end; i++) {
if (!RE_renderer_load_billboard_texture(motion->instance->plugin->renderer, i))
if (!RE_renderer_load_billboard_texture_by_no(motion->instance->plugin->renderer, i))
return false;
}
}
@@ -589,9 +1005,9 @@ bool RE_motion_set_loop_frame_range(struct motion *motion, float begin, float en
return false;
motion->loop_frame_begin = begin;
motion->loop_frame_end = end;
if (motion->instance->type == RE_ITYPE_BILLBOARD) {
if (motion->instance->type == RE_ITYPE_BILLBOARD && re_plugin_version < RE_SEAL_PLUGIN) {
for (int i = begin; i < end; i++) {
if (!RE_renderer_load_billboard_texture(motion->instance->plugin->renderer, i))
if (!RE_renderer_load_billboard_texture_by_no(motion->instance->plugin->renderer, i))
return false;
}
}
+692 -118
View File
File diff suppressed because it is too large Load Diff
+1599
View File
File diff suppressed because it is too large Load Diff
+388
View File
@@ -0,0 +1,388 @@
/* Copyright (C) 2026 kichikuou <KichikuouChrome@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
#include <cglm/cglm.h>
#include "system4.h"
#include "system4/string.h"
#include "3d_internal.h"
#include "reign.h"
#include "../hll/iarray.h"
static void write_vec3(struct iarray_writer *w, vec3 v)
{
for (int i = 0; i < 3; i++)
iarray_write_float(w, v[i]);
}
static void read_vec3(struct iarray_reader *r, vec3 v)
{
for (int i = 0; i < 3; i++)
v[i] = iarray_read_float(r);
}
static void write_cstring(struct iarray_writer *w, const char *s)
{
struct string *tmp = cstr_to_string(s);
iarray_write_string(w, tmp);
free_string(tmp);
}
static void save_motion(struct iarray_writer *w, struct motion *m)
{
iarray_write(w, !!m);
if (!m)
return;
write_cstring(w, m->mot ? m->mot->name : "");
iarray_write(w, m->state);
iarray_write_float(w, m->current_frame);
iarray_write_float(w, m->frame_begin);
iarray_write_float(w, m->frame_end);
iarray_write_float(w, m->loop_frame_begin);
iarray_write_float(w, m->loop_frame_end);
}
static void load_motion(struct iarray_reader *r, struct RE_instance *inst, bool next)
{
if (!iarray_read(r))
return;
struct string *name = iarray_read_string(r);
if (name->size > 0) {
if (next)
RE_instance_load_next_motion(inst, name->text);
else
RE_instance_load_motion(inst, name->text);
}
free_string(name);
int state = iarray_read(r);
float current_frame = iarray_read_float(r);
float frame_begin = iarray_read_float(r);
float frame_end = iarray_read_float(r);
float loop_frame_begin = iarray_read_float(r);
float loop_frame_end = iarray_read_float(r);
struct motion *m = next ? inst->next_motion : inst->motion;
if (!m)
return;
m->state = state;
m->current_frame = current_frame;
m->frame_begin = frame_begin;
m->frame_end = frame_end;
m->loop_frame_begin = loop_frame_begin;
m->loop_frame_end = loop_frame_end;
}
static void save_instance(struct iarray_writer *w, struct RE_instance *inst)
{
iarray_write(w, inst->type);
iarray_write_string_or_null(w, inst->name);
for (int i = 0; i < RE_NR_INSTANCE_TARGETS; i++)
iarray_write(w, inst->target[i]);
write_vec3(w, inst->pos);
iarray_write_float(w, inst->pitch);
iarray_write_float(w, inst->roll);
iarray_write_float(w, inst->yaw);
write_vec3(w, inst->scale);
iarray_write_float(w, inst->alpha);
iarray_write_float(w, inst->grayscale_rate);
iarray_write(w, inst->draw);
iarray_write(w, inst->draw_edge);
iarray_write(w, inst->draw_shadow);
iarray_write(w, inst->make_shadow);
iarray_write(w, inst->draw_bump);
iarray_write_float(w, inst->shadow_volume_bone_radius);
iarray_write_float(w, inst->fps);
iarray_write(w, inst->use_mag_speed);
iarray_write(w, inst->motion_blend);
iarray_write_float(w, inst->motion_blend_rate);
write_vec3(w, inst->diffuse);
write_vec3(w, inst->ambient);
write_vec3(w, inst->column_pos);
iarray_write_float(w, inst->column_height);
iarray_write_float(w, inst->column_radius);
iarray_write_float(w, inst->column_angle);
iarray_write(w, inst->draw_type);
for (int i = 0; i < 4; i++)
write_vec3(w, inst->vertex_pos[i]);
for (int i = 0; i < 4; i++) {
iarray_write_float(w, inst->vertex_uv[i][0]);
iarray_write_float(w, inst->vertex_uv[i][1]);
}
write_vec3(w, inst->vec);
write_vec3(w, inst->globe_diffuse);
iarray_write(w, !!inst->light_params);
if (inst->light_params) {
iarray_write(w, RE_NR_LIGHT_PARAMS);
for (int i = 0; i < RE_NR_LIGHT_PARAMS; i++)
iarray_write_float(w, inst->light_params[i]);
}
save_motion(w, inst->motion);
save_motion(w, inst->next_motion);
}
static void load_instance(struct iarray_reader *r, struct RE_instance *inst)
{
int type = iarray_read(r);
if (type != RE_ITYPE_UNINITIALIZED)
RE_instance_set_type(inst, type);
struct string *name = iarray_read_string_or_null(r);
if (name) {
RE_instance_load(inst, name->text);
free_string(name);
}
for (int i = 0; i < RE_NR_INSTANCE_TARGETS; i++)
inst->target[i] = iarray_read(r);
read_vec3(r, inst->pos);
inst->pitch = iarray_read_float(r);
inst->roll = iarray_read_float(r);
inst->yaw = iarray_read_float(r);
read_vec3(r, inst->scale);
inst->alpha = iarray_read_float(r);
inst->grayscale_rate = iarray_read_float(r);
inst->draw = iarray_read(r);
inst->draw_edge = iarray_read(r);
inst->draw_shadow = iarray_read(r);
inst->make_shadow = iarray_read(r);
inst->draw_bump = iarray_read(r);
inst->shadow_volume_bone_radius = iarray_read_float(r);
inst->fps = iarray_read_float(r);
inst->use_mag_speed = iarray_read(r);
inst->motion_blend = iarray_read(r);
inst->motion_blend_rate = iarray_read_float(r);
read_vec3(r, inst->diffuse);
read_vec3(r, inst->ambient);
read_vec3(r, inst->column_pos);
inst->column_height = iarray_read_float(r);
inst->column_radius = iarray_read_float(r);
inst->column_angle = iarray_read_float(r);
inst->local_transform_needs_update = true;
inst->draw_type = iarray_read(r);
for (int i = 0; i < 4; i++)
read_vec3(r, inst->vertex_pos[i]);
for (int i = 0; i < 4; i++) {
inst->vertex_uv[i][0] = iarray_read_float(r);
inst->vertex_uv[i][1] = iarray_read_float(r);
}
read_vec3(r, inst->vec);
read_vec3(r, inst->globe_diffuse);
if (iarray_read(r)) {
int nr_params = iarray_read(r);
for (int i = 0; i < nr_params; i++) {
float param = iarray_read_float(r);
if (inst->light_params && i < RE_NR_LIGHT_PARAMS)
inst->light_params[i] = param;
}
}
load_motion(r, inst, false);
load_motion(r, inst, true);
}
static void save_back_cg(struct iarray_writer *w, struct RE_back_cg *bcg)
{
iarray_write_string_or_null(w, bcg->name);
iarray_write(w, bcg->no);
iarray_write_float(w, bcg->blend_rate);
iarray_write_float(w, bcg->x);
iarray_write_float(w, bcg->y);
iarray_write_float(w, bcg->mag);
iarray_write(w, bcg->show);
}
static void load_back_cg(struct iarray_reader *r, struct RE_back_cg *bcg, struct archive *aar)
{
struct string *name = iarray_read_string_or_null(r);
int no = iarray_read(r);
float blend_rate = iarray_read_float(r);
float x = iarray_read_float(r);
float y = iarray_read_float(r);
float mag = iarray_read_float(r);
bool show = iarray_read(r);
if (bcg) {
if (name)
RE_back_cg_set_name(bcg, name, aar);
else if (no)
RE_back_cg_set(bcg, no);
bcg->blend_rate = blend_rate;
bcg->x = x;
bcg->y = y;
bcg->mag = mag;
bcg->show = show;
}
if (name)
free_string(name);
}
void RE_plugin_serialize(struct RE_plugin *plugin, struct iarray_writer *w)
{
write_vec3(w, plugin->camera.pos);
iarray_write_float(w, plugin->camera.pitch);
iarray_write_float(w, plugin->camera.roll);
iarray_write_float(w, plugin->camera.yaw);
for (int i = 0; i < 4; i++) {
for (int j = 0; j < 4; j++)
iarray_write_float(w, plugin->proj_transform[i][j]);
}
iarray_write(w, plugin->viewport_x);
iarray_write(w, plugin->viewport_y);
iarray_write(w, plugin->viewport_width);
iarray_write(w, plugin->viewport_height);
iarray_write(w, RE_NR_BACK_CGS);
for (int i = 0; i < RE_NR_BACK_CGS; i++)
save_back_cg(w, &plugin->back_cg[i]);
iarray_write(w, plugin->render_mode);
iarray_write(w, plugin->shadow_mode);
write_vec3(w, plugin->shadow_map_light_dir);
iarray_write_float(w, plugin->shadow_bias);
iarray_write(w, plugin->bump_mode);
iarray_write(w, plugin->bloom_mode);
iarray_write(w, plugin->glare_mode);
iarray_write(w, plugin->fog_mode);
iarray_write(w, plugin->fog_type);
iarray_write_float(w, plugin->fog_near);
iarray_write_float(w, plugin->fog_far);
write_vec3(w, plugin->fog_color);
iarray_write_float(w, plugin->ls_beta_r);
iarray_write_float(w, plugin->ls_beta_m);
iarray_write_float(w, plugin->ls_g);
iarray_write_float(w, plugin->ls_distance);
write_vec3(w, plugin->ls_light_dir);
write_vec3(w, plugin->ls_light_color);
write_vec3(w, plugin->ls_sun_color);
iarray_write(w, plugin->specular_mode);
iarray_write(w, plugin->light_map_mode);
iarray_write(w, plugin->soft_fog_edge_mode);
iarray_write(w, plugin->ssao_mode);
iarray_write(w, plugin->vertex_blend_mode);
iarray_write(w, plugin->shader_precision_mode);
iarray_write(w, plugin->texture_filter_mode);
iarray_write(w, plugin->use_power2_texture);
iarray_write(w, plugin->shadow_map_resolution_level);
iarray_write(w, plugin->texture_resolution_level);
write_vec3(w, plugin->global_ambient);
iarray_write_float(w, plugin->post_effect_filter_y);
iarray_write_float(w, plugin->post_effect_filter_cb);
iarray_write_float(w, plugin->post_effect_filter_cr);
iarray_write(w, RE_DRAW_OPTION_MAX);
for (int i = 0; i < RE_DRAW_OPTION_MAX; i++)
iarray_write(w, plugin->draw_options[i]);
iarray_write(w, plugin->suspended);
iarray_write(w, plugin->mag_speed);
iarray_write(w, RE_NR_LIGHT_PARAMS);
for (int i = 0; i < RE_NR_LIGHT_PARAMS; i++)
iarray_write_float(w, plugin->light_params[i]);
iarray_write_float(w, plugin->edge_length);
iarray_write_float(w, plugin->edge_reduction_rate);
write_vec3(w, plugin->edge_color);
iarray_write(w, plugin->nr_instances);
for (int i = 0; i < plugin->nr_instances; i++) {
iarray_write(w, !!plugin->instances[i]);
if (plugin->instances[i])
save_instance(w, plugin->instances[i]);
}
}
void RE_plugin_deserialize(struct RE_plugin *plugin, struct iarray_reader *r, int version)
{
read_vec3(r, plugin->camera.pos);
plugin->camera.pitch = iarray_read_float(r);
plugin->camera.roll = iarray_read_float(r);
plugin->camera.yaw = iarray_read_float(r);
for (int i = 0; i < 4; i++) {
for (int j = 0; j < 4; j++)
plugin->proj_transform[i][j] = iarray_read_float(r);
}
int viewport_x = iarray_read(r);
int viewport_y = iarray_read(r);
int viewport_width = iarray_read(r);
int viewport_height = iarray_read(r);
if (viewport_width > 0 && viewport_height > 0)
RE_set_viewport(plugin, viewport_x, viewport_y, viewport_width, viewport_height);
int nr_back_cgs = iarray_read(r);
for (int i = 0; i < nr_back_cgs; i++)
load_back_cg(r, i < RE_NR_BACK_CGS ? &plugin->back_cg[i] : NULL, plugin->aar);
plugin->render_mode = iarray_read(r);
plugin->shadow_mode = iarray_read(r);
read_vec3(r, plugin->shadow_map_light_dir);
plugin->shadow_bias = iarray_read_float(r);
plugin->bump_mode = iarray_read(r);
plugin->bloom_mode = iarray_read(r);
plugin->glare_mode = iarray_read(r);
plugin->fog_mode = iarray_read(r);
plugin->fog_type = iarray_read(r);
plugin->fog_near = iarray_read_float(r);
plugin->fog_far = iarray_read_float(r);
read_vec3(r, plugin->fog_color);
plugin->ls_beta_r = iarray_read_float(r);
plugin->ls_beta_m = iarray_read_float(r);
plugin->ls_g = iarray_read_float(r);
plugin->ls_distance = iarray_read_float(r);
read_vec3(r, plugin->ls_light_dir);
read_vec3(r, plugin->ls_light_color);
read_vec3(r, plugin->ls_sun_color);
plugin->specular_mode = iarray_read(r);
plugin->light_map_mode = iarray_read(r);
plugin->soft_fog_edge_mode = iarray_read(r);
plugin->ssao_mode = iarray_read(r);
plugin->vertex_blend_mode = iarray_read(r);
plugin->shader_precision_mode = iarray_read(r);
plugin->texture_filter_mode = iarray_read(r);
plugin->use_power2_texture = iarray_read(r);
plugin->shadow_map_resolution_level = iarray_read(r);
plugin->texture_resolution_level = iarray_read(r);
read_vec3(r, plugin->global_ambient);
plugin->post_effect_filter_y = iarray_read_float(r);
plugin->post_effect_filter_cb = iarray_read_float(r);
plugin->post_effect_filter_cr = iarray_read_float(r);
int nr_draw_options = iarray_read(r);
for (int i = 0; i < nr_draw_options; i++) {
int option = iarray_read(r);
if (i < RE_DRAW_OPTION_MAX)
plugin->draw_options[i] = option;
}
plugin->suspended = iarray_read(r);
plugin->mag_speed = iarray_read(r);
int nr_light_params = iarray_read(r);
for (int i = 0; i < nr_light_params; i++) {
float param = iarray_read_float(r);
if (i < RE_NR_LIGHT_PARAMS)
plugin->light_params[i] = param;
}
plugin->edge_length = iarray_read_float(r);
plugin->edge_reduction_rate = iarray_read_float(r);
read_vec3(r, plugin->edge_color);
int nr_instances = iarray_read(r);
for (int i = 0; i < nr_instances; i++) {
if (!iarray_read(r))
continue;
load_instance(r, RE_create_instance_at(plugin, i));
}
}
+53 -103
View File
@@ -18,7 +18,6 @@
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <libgen.h>
#include <dirent.h>
#include <limits.h>
#include <assert.h>
@@ -52,6 +51,7 @@ const char *asset_strtype(enum asset_type type)
case ASSET_FLAT: return "Flat";
case ASSET_PACT: return "Pact";
case ASSET_DATA: return "Data";
case ASSET_FLASH: return "Flash";
}
return "Invalid";
}
@@ -75,7 +75,6 @@ struct asset_manager_ald {
struct asset_manager_afa {
struct asset_manager manager;
struct afa_archive *archives[MAX_ARCHIVES];
struct hash_table *index;
};
static struct asset_manager *assets[ASSET_TYPE_MAX] = {0};
@@ -86,7 +85,10 @@ bool asset_manager_load_archive(enum asset_type type, const char *archive_name)
return false;
if (!assets[type]->load_archive)
ERROR("load_archive not supported on this archive type");
return assets[type]->load_archive(assets[type], archive_name);
char *path = gamedir_path(archive_name);
bool r = assets[type]->load_archive(assets[type], path);
free(path);
return r;
}
bool asset_exists(enum asset_type type, int id)
@@ -193,115 +195,63 @@ static bool afa_load_archive(struct asset_manager *_manager, const char *name)
}
}
for (int i = MAX_ARCHIVES - 1; i > 0; i++) {
for (int i = MAX_ARCHIVES - 1; i > 0; i--) {
manager->archives[i] = manager->archives[i-1];
}
manager->archives[0] = ar;
// index needs to be rebuilt
if (manager->index) {
ht_free(manager->index);
manager->index = NULL;
}
return true;
}
static bool _afa_get_by_id(struct asset_manager *_manager, int id, struct afa_archive **ar_out, int *no_out)
static bool afa_exists_by_id(struct asset_manager *_manager, int id)
{
struct asset_manager_afa *manager = (struct asset_manager_afa*)_manager;
uint32_t no = id - 1;
for (int i = 0; i < MAX_ARCHIVES && manager->archives[i]; i++) {
if (no < manager->archives[i]->nr_files) {
*ar_out = manager->archives[i];
*no_out = no;
if (archive_exists(&manager->archives[i]->ar, id - 1))
return true;
}
no -= manager->archives[i]->nr_files;
}
return false;
}
static bool afa_exists_by_id(struct asset_manager *manager, int id)
{
int no;
struct afa_archive *ar;
return _afa_get_by_id(manager, id, &ar, &no);
}
static struct archive_data *afa_get_by_id(struct asset_manager *manager, int id)
{
int no;
struct afa_archive *ar;
if (!_afa_get_by_id(manager, id, &ar, &no))
return NULL;
// XXX: we don't use archive_get here because it will return the wrong thing
// for AFAv1 archives when not using integer indices
struct archive_data *data = afa_entry_to_descriptor(ar, &ar->files[no]);
if (data)
archive_load_file(data);
return data;
}
static void afa_index_archive(struct hash_table *index, struct afa_archive *ar, unsigned base)
{
for (unsigned i = 0; i < ar->nr_files; i++) {
// normalize case and remove file extension from file name
char *name = strdup(ar->files[i].name->text);
char *dot = strrchr(name, '.');
if (dot)
*dot = '\0';
sjis_toupper(name);
// add file to index
ht_put(index, name, (void*)((uintptr_t)base + i + 1));
free(name);
}
}
static bool _afa_get_by_name(struct asset_manager *_manager, const char *_name,
struct afa_archive **ar_out, int *no_out, int *id_out)
static struct archive_data *afa_get_by_id(struct asset_manager *_manager, int id)
{
struct asset_manager_afa *manager = (struct asset_manager_afa*)_manager;
// initialize index lazily
if (!manager->index) {
manager->index = ht_create(4096);
unsigned base = 0;
for (unsigned i = 0; i < MAX_ARCHIVES && manager->archives[i]; i++) {
afa_index_archive(manager->index, manager->archives[i], base);
base += manager->archives[i]->nr_files;
for (int i = 0; i < MAX_ARCHIVES && manager->archives[i]; i++) {
struct archive_data *data = archive_get(&manager->archives[i]->ar, id - 1);
if (data)
return data;
}
return NULL;
}
static struct archive_data *afa_get_by_name(struct asset_manager *_manager, const char *name,
int *id_out)
{
struct asset_manager_afa *manager = (struct asset_manager_afa*)_manager;
for (unsigned i = 0; i < MAX_ARCHIVES && manager->archives[i]; i++) {
struct archive_data *data;
data = archive_get_by_basename(&manager->archives[i]->ar, name);
if (data) {
if (id_out)
*id_out = data->no + 1;
return data;
}
}
// normalize name and get id from index
char *name = strdup(_name);
sjis_toupper(name);
char *dot = strrchr(name, '.');
if (dot)
*dot = '\0';
uintptr_t id = (uintptr_t)ht_get(manager->index, name, NULL);
free(name);
if (!id)
return false;
if (id_out)
*id_out = id;
return _afa_get_by_id(_manager, id, ar_out, no_out);
return NULL;
}
static bool afa_exists_by_name(struct asset_manager *manager, const char *name, int *id_out)
static bool afa_exists_by_name(struct asset_manager *_manager, const char *name, int *id_out)
{
int no;
struct afa_archive *ar;
return _afa_get_by_name(manager, name, &ar, &no, id_out);
}
struct asset_manager_afa *manager = (struct asset_manager_afa*)_manager;
static struct archive_data *afa_get_by_name(struct asset_manager *manager, const char *name, int *id_out)
{
int no;
struct afa_archive *ar;
if (!_afa_get_by_name(manager, name, &ar, &no, id_out))
return NULL;
return archive_get(&ar->ar, no);
for (unsigned i = 0; i < MAX_ARCHIVES && manager->archives[i]; i++) {
if (archive_exists_by_basename(&manager->archives[i]->ar, name, id_out)) {
if (id_out)
*id_out += 1;
return true;
}
}
return false;
}
static void _ald_init(enum asset_type type, struct archive *ar)
@@ -347,18 +297,14 @@ static void afa_init(enum asset_type type, char *file)
if (!ar)
ERROR("Failed to open AFA file: %s", archive_strerror(error));
if (id_indexed_afa) {
_ald_init(type, &ar->ar);
} else {
struct asset_manager_afa *manager = xcalloc(1, sizeof(struct asset_manager_afa));
manager->manager.load_archive = afa_load_archive;
manager->manager.exists_by_id = afa_exists_by_id;
manager->manager.exists_by_name = afa_exists_by_name;
manager->manager.get_by_id = afa_get_by_id;
manager->manager.get_by_name = afa_get_by_name;
manager->archives[0] = ar;
assets[type] = &manager->manager;
}
struct asset_manager_afa *manager = xcalloc(1, sizeof(struct asset_manager_afa));
manager->manager.load_archive = afa_load_archive;
manager->manager.exists_by_id = afa_exists_by_id;
manager->manager.get_by_id = afa_get_by_id;
manager->manager.exists_by_name = afa_exists_by_name;
manager->manager.get_by_name = afa_get_by_name;
manager->archives[0] = ar;
assets[type] = &manager->manager;
free(file);
}
@@ -391,7 +337,7 @@ void asset_manager_init(void)
// get ALD filenames
while ((d_name = readdir_utf8(dir))) {
// archive filename must begin with ain filename
if (strncmp(base, d_name, base_len))
if (strncasecmp(base, d_name, base_len))
goto loop_next;
const char *ext = file_extension(d_name);
if (!ext)
@@ -460,6 +406,8 @@ void asset_manager_init(void)
afa_filenames[ASSET_FLAT] = path_join(config.game_dir, d_name);
} else if (!strcmp(type, "Pact.afa")) {
afa_filenames[ASSET_PACT] = path_join(config.game_dir, d_name);
} else if (!strcmp(type, "AFF.afa")) {
afa_filenames[ASSET_FLASH] = path_join(config.game_dir, d_name);
}
} else if (!strcasecmp(ext, "fnl")) {
if (!config.fnl_path)
@@ -479,6 +427,7 @@ void asset_manager_init(void)
ald_init(ASSET_FLAT, ald_filenames[ASSET_FLAT], ald_count[ASSET_FLAT]);
ald_init(ASSET_PACT, ald_filenames[ASSET_PACT], ald_count[ASSET_PACT]);
ald_init(ASSET_DATA, ald_filenames[ASSET_DATA], ald_count[ASSET_DATA]);
ald_init(ASSET_FLASH, ald_filenames[ASSET_FLASH], ald_count[ASSET_FLASH]);
// open AFA archives
afa_init(ASSET_BGM, afa_filenames[ASSET_BGM]);
@@ -488,4 +437,5 @@ void asset_manager_init(void)
afa_init(ASSET_FLAT, afa_filenames[ASSET_FLAT]);
afa_init(ASSET_PACT, afa_filenames[ASSET_PACT]);
afa_init(ASSET_DATA, afa_filenames[ASSET_DATA]);
afa_init(ASSET_FLASH, afa_filenames[ASSET_FLASH]);
}
+91 -12
View File
@@ -43,8 +43,8 @@ void audio_init(void)
if (audio_initialized)
return;
id_pool_init(&wav);
id_pool_init(&bgm);
id_pool_init(&wav, 0);
id_pool_init(&bgm, 0);
for (int i = 0; i < NR_ANONYMOUS_CHANNELS; i++) {
anonymous_channels[i] = -1;
@@ -54,6 +54,19 @@ void audio_init(void)
audio_initialized = true;
}
void audio_reset(void)
{
for (int i = id_pool_get_first(&wav); i >= 0; i = id_pool_get_next(&wav, i)) {
wav_unprepare(i);
}
for (int i = id_pool_get_first(&bgm); i >= 0; i = id_pool_get_next(&bgm, i)) {
bgm_unprepare(i);
}
for (int i = 0; i < NR_ANONYMOUS_CHANNELS; i++) {
anonymous_channels[i] = -1;
}
}
void audio_update(void)
{
for (int i = 0; i < NR_ANONYMOUS_CHANNELS; i++) {
@@ -85,6 +98,25 @@ bool audio_play_sound(int sound_no)
return false;
}
bool audio_play_archive_data(struct archive_data *dfile)
{
for (int i = 0; i < NR_ANONYMOUS_CHANNELS; i++) {
if (anonymous_channels[i] == -1) {
int ch = wav_get_unused_channel();
if (!wav_prepare_from_archive_data(ch, AUDIO_NO_METADATA, dfile))
return false;
if (!wav_play(ch)) {
wav_unprepare(ch);
return false;
}
anonymous_channels[i] = ch;
return true;
}
}
WARNING("Failed to allocate anonymous audio channel");
return false;
}
bool wav_exists(int no) { return asset_exists(ASSET_SOUND, no); }
bool bgm_exists(int no) { return asset_exists(ASSET_BGM, no); }
@@ -104,11 +136,10 @@ int bgm_prepare(int id, int no) { return audio_prepare(&bgm, id, ASSET_BGM, no);
static int audio_unprepare(struct id_pool *pool, int id)
{
struct channel *ch = id_pool_get(pool, id);
struct channel *ch = id_pool_release(pool, id);
if (!ch)
return 0;
channel_close(ch);
id_pool_release(pool, id);
return 1;
}
@@ -330,24 +361,72 @@ static int audio_get_time_length(struct id_pool *pool, int id)
int wav_get_time_length(int id) { return audio_get_time_length(&wav, id); }
int bgm_get_time_length(int id) { return audio_get_time_length(&bgm, id); }
//int wav_get_group_num(int channel);
//int bgm_get_group_num(int channel);
//int wav_prepare_from_file(int channel, char *filename);
//int bgm_prepare_from_file(int channel, char *filename);
static int audio_get_data_length(enum asset_type type, int no) {
struct channel *ch = channel_open(type, no);
if (!ch)
return 0;
int len = channel_get_time_length(ch);
channel_close(ch);
return len;
}
static int audio_prepare_from_archive_data(struct id_pool *pool, int id, struct archive_data *dfile)
int wav_get_data_length(int no) { return audio_get_data_length(ASSET_SOUND, no); }
int bgm_get_data_length(int no) { return audio_get_data_length(ASSET_BGM, no); }
static int audio_get_data_no(struct id_pool *pool, int id)
{
struct channel *ch = id_pool_get(pool, id);
if (!ch)
return -1;
return channel_get_data_no(ch);
}
int wav_get_group_num(int id)
{
int no = audio_get_data_no(&wav, id);
if (no < 0)
return 0;
return wav_get_group_num_from_data_num(no);
}
//int bgm_get_group_num(int channel);
static int audio_prepare_from_file(struct id_pool *pool, int id, char *filename)
{
if (id < 0)
return 0;
struct channel *ch = channel_open_archive_data(dfile);
struct channel *ch = channel_open_file(filename);
struct channel *old = id_pool_set(pool, id, ch);
if (old)
channel_close(old);
return !!ch;
}
int wav_prepare_from_archive_data(int id, struct archive_data *dfile) {
return audio_prepare_from_archive_data(&wav, id, dfile);
int wav_prepare_from_file(int id, char *filename) { return audio_prepare_from_file(&wav, id, filename); }
int bgm_prepare_from_file(int id, char *filename) { return audio_prepare_from_file(&bgm, id, filename); }
static int audio_prepare_from_archive_data(struct id_pool *pool, int id,
enum asset_type type, int metadata_no,
struct archive_data *dfile)
{
if (id < 0)
return 0;
struct channel *ch = channel_open_archive_data(dfile, type, metadata_no);
struct channel *old = id_pool_set(pool, id, ch);
if (old)
channel_close(old);
return !!ch;
}
int wav_prepare_from_archive_data(int id, int metadata_no, struct archive_data *dfile)
{
return audio_prepare_from_archive_data(
&wav, id, ASSET_SOUND, metadata_no, dfile);
}
int bgm_prepare_from_archive_data(int id, int metadata_no, struct archive_data *dfile)
{
return audio_prepare_from_archive_data(
&bgm, id, ASSET_BGM, metadata_no, dfile);
}
int wav_get_group_num_from_data_num(int no)
+2 -2
View File
@@ -18,9 +18,9 @@
#include <stdlib.h>
#include "system4.h"
#include "system4/file.h"
#include "system4/little_endian.h"
#include "mixer.h"
#include "little_endian.h"
#include "xsystem4.h"
#define BGI_MAX 100
@@ -31,7 +31,7 @@ static struct bgi bgi_data[BGI_MAX];
static char *bgi_gets(char *buf, int n, FILE *fp)
{
char *s = buf;
int c;
int c = EOF;
while (--n > 0 && (c = fgetc(fp)) != EOF) {
c = c >> 4 | (c & 0xf) << 4; // decrypt
*s++ = c;
+107 -42
View File
@@ -22,6 +22,7 @@
#include "system4.h"
#include "system4/archive.h"
#include "system4/utfsjis.h"
#include "asset_manager.h"
#include "audio.h"
@@ -238,6 +239,7 @@ static int refill_stream(sts_mixer_sample_t *sample, void *data)
ch->fade.elapsed += frames_read;
if (ch->fade.elapsed >= ch->fade.frames) {
ch->fade.fading = false;
ch->volume = ch->fade.end_volume * 100.0;
if (ch->fade.stop) {
cb_seek(ch, 0);
r = STS_STREAM_COMPLETE;
@@ -437,6 +439,11 @@ int channel_get_time_length(struct channel *ch)
return muldiv(ch->info.frames, 1000, ch->info.samplerate);
}
int channel_get_data_no(struct channel *ch)
{
return ch->dfile ? ch->dfile->no : -1;
}
static sf_count_t channel_vio_get_filelen(void *data)
{
return ((struct channel*)data)->dfile->size;
@@ -498,48 +505,24 @@ struct channel *channel_open(enum asset_type type, int no)
return NULL;
}
struct channel *ch = channel_open_archive_data(dfile);
struct channel *ch = channel_open_archive_data(dfile, type, no);
if (!ch) {
WARNING("Failed to open %s %d", type == ASSET_SOUND ? "WAV" : "BGM", no);
return NULL;
}
if (type == ASSET_SOUND) {
struct wai *wai = wai_get(no);
ch->volume = 100;
ch->loop_start = 0;
ch->loop_end = ch->info.frames;
ch->loop_count = 1;
ch->mixer_no = wai ? wai->channel : 1;
} else {
struct bgi *bgi = bgi_get(no);
if (bgi) {
ch->volume = clamp(0, 100, bgi->volume);
ch->loop_start = clamp(0, ch->info.frames, bgi->loop_start);
ch->loop_end = clamp(0, ch->info.frames, bgi->loop_end);
ch->loop_count = max(0, bgi->loop_count);
ch->mixer_no = clamp(0, nr_mixers, bgi->channel);
}
}
ch->no = no;
return ch;
}
struct channel *channel_open_archive_data(struct archive_data *dfile)
static bool init_channel(struct channel *ch)
{
struct channel *ch = xcalloc(1, sizeof(struct channel));
ch->dfile = dfile;
// open file
ch->file = sf_open_virtual(&channel_vio, SFM_READ, &ch->info, ch);
if (sf_error(ch->file) != SF_ERR_NO_ERROR) {
WARNING("sf_open_virtual failed: %s", sf_strerror(ch->file));
goto error;
return false;
}
if (ch->info.channels > 2) {
WARNING("Audio file has more than 2 channels");
goto error;
return false;
}
// create stream
@@ -554,23 +537,76 @@ struct channel *channel_open_archive_data(struct archive_data *dfile)
ch->volume = 100;
ch->loop_start = 0;
ch->loop_end = ch->info.frames;
ch->loop_count = 0;
ch->loop_count = 1;
ch->mixer_no = 0;
ch->no = -1;
return ch;
return true;
}
error:
archive_free_data(dfile);
free(ch);
return NULL;
struct channel *channel_open_archive_data(struct archive_data *dfile,
enum asset_type type, int metadata_no)
{
struct channel *ch = xcalloc(1, sizeof(struct channel));
ch->dfile = dfile;
// open file
ch->file = sf_open_virtual(&channel_vio, SFM_READ, &ch->info, ch);
if (!init_channel(ch)) {
archive_free_data(dfile);
if (ch->file)
sf_close(ch->file);
free(ch);
return NULL;
}
if (metadata_no >= 0) {
if (type == ASSET_SOUND) {
struct wai *wai = wai_get(metadata_no);
ch->mixer_no = wai ? wai->channel : 1;
} else if (type == ASSET_BGM) {
struct bgi *bgi = bgi_get(metadata_no);
if (bgi) {
ch->volume = clamp(0, 100, bgi->volume);
ch->loop_start = clamp(0, ch->info.frames, bgi->loop_start);
ch->loop_end = clamp(0, ch->info.frames, bgi->loop_end);
ch->loop_count = max(0, bgi->loop_count);
ch->mixer_no = clamp(0, nr_mixers, bgi->channel);
} else {
ch->loop_count = 0;
}
}
ch->no = metadata_no;
}
return ch;
}
struct channel *channel_open_file(const char *path)
{
struct channel *ch = xcalloc(1, sizeof(struct channel));
#ifdef _WIN32
wchar_t *wpath = utf8_to_wchar(path);
ch->file = sf_wchar_open(wpath, SFM_READ, &ch->info);
free(wpath);
#else
ch->file = sf_open(path, SFM_READ, &ch->info);
#endif
if (!init_channel(ch)) {
if (ch->file)
sf_close(ch->file);
free(ch);
return NULL;
}
return ch;
}
void channel_close(struct channel *ch)
{
channel_stop(ch);
sf_close(ch->file);
archive_free_data(ch->dfile);
if (ch->dfile)
archive_free_data(ch->dfile);
free(ch);
}
@@ -586,6 +622,7 @@ void mixer_init(void)
mixers[0].name = strdup("Music");
mixers[1].name = strdup("Sound");
mixers[2].name = strdup("Master");
master = &mixers[2];
} else {
// NOTE: Older games don't have an explicit master channel.
// We add an extra mixer in this case for consistency.
@@ -663,19 +700,21 @@ void mixer_init(void)
int mixer_get_numof(void)
{
return nr_mixers;
// Return the number of mixers specified in System40.ini, even if
// xsystem4 added more mixers.
return config.mixer_nr_channels;
}
const char *mixer_get_name(int n)
{
if (n < 0 || n >= nr_mixers)
if (n < 0 || n >= config.mixer_nr_channels)
return NULL;
return mixers[n].name;
}
int mixer_set_name(int n, const char *name)
{
if (n < 0 || n >= nr_mixers)
if (n < 0 || n >= config.mixer_nr_channels)
return 0;
free(mixers[n].name);
mixers[n].name = strdup(name);
@@ -684,7 +723,7 @@ int mixer_set_name(int n, const char *name)
int mixer_get_volume(int n, int *volume)
{
if (n < 0 || n >= nr_mixers) {
if (n < 0 || n >= config.mixer_nr_channels) {
return 0;
}
SDL_LockAudioDevice(audio_device);
@@ -695,7 +734,7 @@ int mixer_get_volume(int n, int *volume)
int mixer_set_volume(int n, int volume)
{
if (n < 0 || n >= nr_mixers)
if (n < 0 || n >= config.mixer_nr_channels)
return 0;
SDL_LockAudioDevice(audio_device);
mixers[n].mixer.gain = clamp(0.0f, 1.0f, (float)volume / 100.0f);
@@ -704,7 +743,7 @@ int mixer_set_volume(int n, int volume)
}
int mixer_get_mute(int n, int *mute)
{
if (n < 0 || n >= nr_mixers)
if (n < 0 || n >= config.mixer_nr_channels)
return 0;
*mute = mixers[n].muted;
return 1;
@@ -712,8 +751,34 @@ int mixer_get_mute(int n, int *mute)
int mixer_set_mute(int n, int mute)
{
if (n < 0 || n >= nr_mixers)
if (n < 0 || n >= config.mixer_nr_channels)
return 0;
mixers[n].muted = !!mute;
return 1;
}
int mixer_stream_play(sts_mixer_stream_t* stream, int volume)
{
SDL_LockAudioDevice(audio_device);
float gain = clamp(0.0f, 1.0f, (float)volume / 100.0f);
int voice = sts_mixer_play_stream(&master->mixer, stream, gain);
SDL_UnlockAudioDevice(audio_device);
return voice;
}
bool mixer_stream_set_volume(int voice, int volume)
{
if (voice < 0 || voice >= STS_MIXER_VOICES)
return false;
SDL_LockAudioDevice(audio_device);
master->mixer.voices[voice].gain = clamp(0.0f, 1.0f, (float)volume / 100.0f);
SDL_UnlockAudioDevice(audio_device);
return true;
}
void mixer_stream_stop(int voice)
{
SDL_LockAudioDevice(audio_device);
sts_mixer_stop_voice(&master->mixer, voice);
SDL_UnlockAudioDevice(audio_device);
}
+81
View File
@@ -0,0 +1,81 @@
/*
* Base64 encoding/decoding (RFC1341)
* Copyright (c) 2005-2011, Jouni Malinen <j@w1.fi>
*
* This software may be distributed under the terms of the BSD license.
*/
#include "system4.h"
#include "base64.h"
static const unsigned char base64_table[65] =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
/**
* base64_encode - Base64 encode
* @src: Data to be encoded
* @len: Length of the data to be encoded
* @out_len: Pointer to output length variable, or %NULL if not used
* Returns: Allocated buffer of out_len bytes of encoded data,
* or %NULL on failure
*
* Caller is responsible for freeing the returned buffer. Returned buffer is
* nul terminated to make it easier to use as a C string. The nul terminator is
* not included in out_len.
*/
unsigned char *base64_encode(const unsigned char *src, size_t len,
size_t *out_len)
{
unsigned char *out, *pos;
const unsigned char *end, *in;
size_t olen;
int line_len;
olen = len * 4 / 3 + 4; /* 3-byte blocks to 4-byte */
olen += olen / 72; /* line feeds */
olen++; /* nul termination */
if (olen < len)
return NULL; /* integer overflow */
out = xmalloc(olen);
if (out == NULL)
return NULL;
end = src + len;
in = src;
pos = out;
line_len = 0;
while (end - in >= 3) {
*pos++ = base64_table[in[0] >> 2];
*pos++ = base64_table[((in[0] & 0x03) << 4) | (in[1] >> 4)];
*pos++ = base64_table[((in[1] & 0x0f) << 2) | (in[2] >> 6)];
*pos++ = base64_table[in[2] & 0x3f];
in += 3;
line_len += 4;
if (line_len >= 72) {
*pos++ = '\n';
line_len = 0;
}
}
if (end - in) {
*pos++ = base64_table[in[0] >> 2];
if (end - in == 1) {
*pos++ = base64_table[(in[0] & 0x03) << 4];
*pos++ = '=';
} else {
*pos++ = base64_table[((in[0] & 0x03) << 4) |
(in[1] >> 4)];
*pos++ = base64_table[(in[1] & 0x0f) << 2];
}
*pos++ = '=';
line_len += 4;
}
if (line_len)
*pos++ = '\n';
*pos = '\0';
if (out_len)
*out_len = pos - out;
return out;
}
+739 -132
View File
File diff suppressed because it is too large Load Diff
+232
View File
@@ -0,0 +1,232 @@
/* Copyright (C) 2024 kichikuou <KichikuouChrome@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
#include <assert.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "system4/file.h"
#include "cJSON.h"
#include "debugger.h"
struct mapping {
int addr;
int file;
int line;
};
struct source_content {
int nr_lines;
char *lines[];
};
struct dbg_info {
char *src_root;
int nr_sources;
char **sources;
struct source_content **source_contents;
int nr_mappings;
struct mapping *mappings;
};
struct dbg_info *dbg_info_load(const char *path)
{
char *json_text = file_read(path, NULL);
if (!json_text) {
DBG_ERROR("Cannot load debug information file %s: %s", path, strerror(errno));
return NULL;
}
cJSON *root = cJSON_Parse(json_text);
free(json_text);
cJSON *version = cJSON_GetObjectItem(root, "version");
if (!cJSON_IsString(version) || strcmp(version->valuestring, "alpha-1")) {
DBG_ERROR("%s: Unsupported debug information format", display_utf0(path));
cJSON_Delete(root);
return NULL;
}
struct dbg_info *info = xcalloc(1, sizeof(struct dbg_info));
cJSON *sources = cJSON_GetObjectItem(root, "sources");
info->nr_sources = cJSON_GetArraySize(sources);
info->sources = xcalloc(info->nr_sources, sizeof(char *));
cJSON *source;
int i = 0;
cJSON_ArrayForEach(source, sources) {
info->sources[i++] = xstrdup(source->valuestring);
}
cJSON *mappings = cJSON_GetObjectItem(root, "mappings");
info->nr_mappings = cJSON_GetArraySize(mappings);
info->mappings = xcalloc(info->nr_mappings, sizeof(struct mapping));
struct mapping *m = info->mappings;
cJSON *item;
cJSON_ArrayForEach(item, mappings) {
m->addr = cJSON_GetArrayItem(item, 0)->valueint;
m->file = cJSON_GetArrayItem(item, 1)->valueint;
m->line = cJSON_GetArrayItem(item, 2)->valueint;
m++;
}
cJSON_Delete(root);
info->src_root = xstrdup(path_dirname(path));
info->source_contents = xcalloc(info->nr_sources, sizeof(struct source_content *));
return info;
}
static struct source_content *load_source_content(const char *path)
{
char *text = file_read(path, NULL);
if (!text) {
DBG_ERROR("Cannot load source file %s", path);
return NULL;
}
int nr_lines = 1; // count the last line even if it doesn't end with '\n'
for (char *p = text; *p; p++) {
if (*p == '\n')
nr_lines++;
}
struct source_content *content = xcalloc(1, sizeof(struct source_content) + nr_lines * sizeof(char *));
content->nr_lines = nr_lines;
for (int i = 0;; i++) {
content->lines[i] = text;
char *next = strchr(text, '\n');
if (!next)
break;
*next = '\0';
text = next + 1;
}
return content;
}
const char *dbg_info_source_name(const struct dbg_info *info, int file)
{
if (file < 0 || file >= info->nr_sources)
return NULL;
return info->sources[file];
}
char *dbg_info_source_path(const struct dbg_info *info, int file)
{
if (file < 0 || file >= info->nr_sources)
return NULL;
return path_join(info->src_root, info->sources[file]);
}
const char *dbg_info_source_line(const struct dbg_info *info, int file, int line)
{
if (file < 0 || file >= info->nr_sources)
return NULL;
if (!info->source_contents[file]) {
char *path = dbg_info_source_path(info, file);
info->source_contents[file] = load_source_content(path);
free(path);
if (!info->source_contents[file])
return NULL;
}
if (line <= 0 || line > info->source_contents[file]->nr_lines)
return NULL;
return info->source_contents[file]->lines[line - 1];
}
int dbg_info_find_file(const struct dbg_info *info, const char *filename)
{
if (is_absolute_path(filename)) {
char *target = realpath_utf8(filename); // Convert '\\' to '/' on Windows
char *prefix = realpath_utf8(info->src_root);
for (int i = 0; i < info->nr_sources; i++) {
char *path = path_join(prefix, info->sources[i]);
if (!strcasecmp(path, target)) {
free(path);
free(prefix);
free(target);
return i;
}
free(path);
}
free(prefix);
free(target);
} else {
for (int i = 0; i < info->nr_sources; i++) {
if (!strcasecmp(info->sources[i], filename) ||
!strcasecmp(path_basename(info->sources[i]), filename)) {
return i;
}
}
}
return -1;
}
bool dbg_info_addr2line(const struct dbg_info *info, int addr, int *file, int *line)
{
// Find the last mapping whose address is less than or equal to `addr`.
int left = 0, right = info->nr_mappings;
while (left < right) {
int mid = (left + right) / 2;
if (info->mappings[mid].addr <= addr)
left = mid + 1;
else
right = mid;
}
if (left == 0) {
assert(info->nr_mappings == 0 || addr < info->mappings[0].addr);
return false;
}
assert(info->mappings[left - 1].addr <= addr);
assert(left == info->nr_mappings || addr < info->mappings[left].addr);
if (file)
*file = info->mappings[left - 1].file;
if (line)
*line = info->mappings[left - 1].line;
return true;
}
int dbg_info_line2addr(const struct dbg_info *info, int file, int line)
{
if (file < 0 || file >= info->nr_sources || line <= 0)
return -1;
// Find the first mapping whose file is `file` and line is greater than or equal to `line`.
int left = 0, right = info->nr_mappings;
while (left < right) {
int mid = (left + right) / 2;
if (info->mappings[mid].file < file || (info->mappings[mid].file == file && info->mappings[mid].line < line))
left = mid + 1;
else
right = mid;
}
if (left == info->nr_mappings) {
assert(info->nr_mappings == 0 || info->mappings[info->nr_mappings - 1].file < file ||
(info->mappings[info->nr_mappings - 1].file == file && info->mappings[info->nr_mappings - 1].line < line));
return -1;
}
assert(left == 0 || info->mappings[left - 1].file < file ||
(info->mappings[left - 1].file == file && info->mappings[left - 1].line < line));
if (file < info->mappings[left].file)
return -1;
assert(file == info->mappings[left].file && line <= info->mappings[left].line);
return info->mappings[left].addr;
}
+168 -34
View File
@@ -26,6 +26,7 @@
#include "system4.h"
#include "system4/file.h"
#include "system4/little_endian.h"
#include "system4/string.h"
#include "system4/utfsjis.h"
@@ -35,10 +36,18 @@
#include "scene.h"
#include "debugger.h"
#include "little_endian.h"
#include "input.h"
#include "xsystem4.h"
struct dbg_cmd_node;
static enum {
NOT_STEPPING = 0,
STEPPING_INTO,
STEPPING_OVER,
STEPPING_FINISH
} stepping = NOT_STEPPING;
static int stepping_file = 0;
static int stepping_line = 0;
struct dbg_cmd_list {
unsigned nr_commands;
@@ -65,11 +74,28 @@ static void dbg_cmd_backtrace(unsigned nr_args, char **args)
static void dbg_cmd_breakpoint(unsigned nr_args, char **args)
{
int addr = strtol(args[0], NULL, 0);
if (addr > 0) {
if (nr_args == 1) {
int addr = strtol(args[0], NULL, 0);
if (addr > 0) {
dbg_set_address_breakpoint(addr, NULL, NULL);
} else {
dbg_set_function_breakpoint(args[0], NULL, NULL);
}
} else if (nr_args == 2 && dbg_info) {
int file = dbg_info_find_file(dbg_info, args[0]);
if (file < 0) {
DBG_ERROR("No such file: %s", args[0]);
return;
}
int line = atoi(args[1]);
int addr = dbg_info_line2addr(dbg_info, file, line);
if (addr < 0) {
DBG_ERROR("No such line: %s:%d", args[0], line);
return;
}
dbg_set_address_breakpoint(addr, NULL, NULL);
} else {
dbg_set_function_breakpoint(args[0], NULL, NULL);
DBG_ERROR("Invalid breakpoint command");
}
}
@@ -100,7 +126,9 @@ static void dbg_cmd_locals(unsigned nr_args, char **args)
struct page *page = heap_get_page(call_stack[call_stack_ptr - (frame_no+1)].page_slot);
struct ain_function *f = &ain->functions[page->index];
for (int i = 0; i < f->nr_vars; i++) {
struct string *value = dbg_value_to_string(&f->vars[i].type, page->values[i], 1);
if (f->vars[i].type.data == AIN_VOID)
continue;
struct string *value = dbg_variable_to_string(&f->vars[i].type, page, i, 1);
printf("[%d] %s: %s\n", i, display_sjis0(f->vars[i].name), display_sjis1(value->text));
free_string(value);
}
@@ -112,7 +140,9 @@ static void log_handler(struct breakpoint *bp)
struct page *locals = local_page();
printf("%s(", display_sjis0(f->name));
for (int i = 0; i < f->nr_args; i++) {
struct string *value = dbg_value_to_string(&f->vars[i].type, locals->values[i], 1);
if (f->vars[i].type.data == AIN_VOID)
continue;
struct string *value = dbg_variable_to_string(&f->vars[i].type, locals, i, 1);
printf(i > 0 ? ", %s" : "%s", display_sjis0(value->text));
free_string(value);
}
@@ -149,7 +179,9 @@ static void dbg_cmd_members(unsigned nr_args, char **args)
assert(page->nr_vars == s->nr_members);
for (int i = 0; i < s->nr_members; i++) {
struct string *value = dbg_value_to_string(&s->members[i].type, page->values[i], 1);
if (s->members[i].type.data == AIN_VOID)
continue;
struct string *value = dbg_variable_to_string(&s->members[i].type, page, i, 1);
printf("[%d] %s: %s\n", i, display_sjis0(s->members[i].name), display_sjis1(value->text));
free_string(value);
}
@@ -157,16 +189,16 @@ static void dbg_cmd_members(unsigned nr_args, char **args)
static void dbg_cmd_print(unsigned nr_args, char **args)
{
union vm_value value;
struct ain_variable *var = dbg_get_variable(args[0], &value);
if (var) {
struct string *v = dbg_value_to_string(&var->type, value, 1);
printf("%s\n", display_sjis0(v->text));
free_string(v);
int recursive = nr_args == 2 ? atoi(args[1]) : 2;
struct ain_type type;
union vm_value value = dbg_eval_string(args[0], &type);
if (type.data == AIN_VOID)
return;
}
// TODO: print functions, etc.
DBG_ERROR("Undefined variable: %s", args[0]);
struct string *str = dbg_value_to_string(&type, value, recursive);
printf("%s\n", display_sjis0(str->text));
free_string(str);
}
static void dbg_cmd_quit(unsigned nr_args, char **args)
@@ -179,6 +211,44 @@ static void dbg_cmd_scene(unsigned nr_args, char **args)
scene_print();
}
static void dbg_cmd_next(unsigned nr_args, char **args)
{
stepping_file = stepping_line = 0;
if (dbg_info)
dbg_info_addr2line(dbg_info, instr_ptr, &stepping_file, &stepping_line);
if (!dbg_set_step_over_breakpoint()) {
DBG_ERROR("Can't step over this instruction");
return;
}
stepping = STEPPING_OVER;
dbg_continue();
}
static void dbg_cmd_step(unsigned nr_args, char **args)
{
stepping_file = stepping_line = 0;
if (dbg_info)
dbg_info_addr2line(dbg_info, instr_ptr, &stepping_file, &stepping_line);
if (!dbg_set_step_into_breakpoint()) {
DBG_ERROR("Can't step into this instruction");
return;
}
stepping = STEPPING_INTO;
dbg_continue();
}
static void dbg_cmd_finish(unsigned nr_args, char **args)
{
if (!dbg_set_finish_breakpoint()) {
DBG_ERROR("Can't set finish breakpoint from this location");
return;
}
stepping = STEPPING_FINISH;
dbg_continue();
}
#ifdef HAVE_SCHEME
static void dbg_cmd_scheme(unsigned nr_args, char **args)
{
@@ -192,21 +262,24 @@ static void dbg_cmd_vm_state(unsigned nr_args, char **args)
}
static struct dbg_cmd dbg_default_commands[] = {
{ "help", "h", "[command-name] - Display this message", 0, 2, dbg_cmd_help },
{ "backtrace", "bt", "- Display stack trace", 0, 0, dbg_cmd_backtrace },
{ "breakpoint", "bp", "<function-or-address> - Set breakpoint", 1, 1, dbg_cmd_breakpoint },
{ "continue", "c", "- Resume execution", 0, 0, dbg_cmd_continue },
{ "frame", "f", "<frame-number> - Set the current frame", 1, 1, dbg_cmd_frame },
{ "locals", "l", "[frame-number] - Print local variables", 0, 1, dbg_cmd_locals },
{ "log", NULL, "<function-name> - Log function calls", 1, 1, dbg_cmd_log },
{ "members", "m", "[frame-number] - Print struct members", 0, 1, dbg_cmd_members },
{ "print", "p", "<variable-name> - Print a variable", 1, 1, dbg_cmd_print },
{ "quit", "q", "- Quit xsystem4", 0, 0, dbg_cmd_quit },
{ "scene", NULL, "- Display scene graph", 0, 0, dbg_cmd_scene },
{ "backtrace", "bt", NULL, "Display stack trace", 0, 0, dbg_cmd_backtrace },
{ "breakpoint", "bp", "<function> | <address> | <file> <line>", "Set breakpoint", 1, 2, dbg_cmd_breakpoint },
{ "continue", "c", NULL, "Resume execution", 0, 0, dbg_cmd_continue },
{ "finish", "fin", NULL, "Execute until the current function returns", 0, 0, dbg_cmd_finish },
{ "frame", "f", "<frame-number>", "Set the current frame", 1, 1, dbg_cmd_frame },
{ "help", "h", "[command-name]", "Get help about a command", 0, 2, dbg_cmd_help },
{ "locals", "l", "[frame-number]", "Print local variables", 0, 1, dbg_cmd_locals },
{ "log", NULL, "<function-name>", "Log function calls", 1, 1, dbg_cmd_log },
{ "members", "m", "[frame-number]", "Print struct members", 0, 1, dbg_cmd_members },
{ "next", "n", NULL, "Step to the next instruction within the current function", 0, 0, dbg_cmd_next },
{ "print", "p", "<variable-name> [recursion-depth]", "Print a variable", 1, 2, dbg_cmd_print },
{ "quit", "q", NULL, "Quit xsystem4", 0, 0, dbg_cmd_quit },
{ "scene", NULL, NULL, "Display scene graph", 0, 0, dbg_cmd_scene },
{ "step", "s", NULL, "Step to the next instruction", 0, 0, dbg_cmd_step },
#ifdef HAVE_SCHEME
{ "scheme", "scm", "- Drop into Scheme REPL", 0, 0, dbg_cmd_scheme },
{ "scheme", "scm", NULL, "Drop into the Scheme REPL", 0, 0, dbg_cmd_scheme },
#endif
{ "vm-state", "vm", "- Display current VM state", 0, 0, dbg_cmd_vm_state },
{ "vm-state", "vm", NULL, "Display current VM state", 0, 0, dbg_cmd_vm_state },
};
static struct dbg_cmd_list dbg_commands = {0};
@@ -235,24 +308,56 @@ static struct dbg_cmd_node *dbg_get_node(struct dbg_cmd_list *list, const char *
static void dbg_help_cmd(struct dbg_cmd *cmd)
{
printf("%s", cmd->fullname);
if (cmd->shortname)
printf("%s (%s) %s\n", cmd->fullname, cmd->shortname, cmd->description);
printf(", %s", cmd->shortname);
if (cmd->arg_description)
printf(" %s", cmd->arg_description);
printf("\n\t%s\n", cmd->description);
}
static int cmd_name_max(struct dbg_cmd_list *list)
{
int m = 0;
for (unsigned i = 0; i < list->nr_commands; i++) {
if (list->commands[i].type == CMD_NODE_MOD) {
m = max(m, strlen(list->commands[i].mod.name));
} else if (list->commands[i].type == CMD_NODE_CMD) {
m = max(m, strlen(list->commands[i].cmd.fullname));
}
}
return m;
}
static void dbg_help_cmd_short(struct dbg_cmd *cmd, int name_len)
{
printf("%*s", name_len, cmd->fullname);
if (cmd->shortname)
printf(" (%s)%*s", cmd->shortname, 3 - (int)strlen(cmd->shortname), "");
else
printf("%s %s\n", cmd->fullname, cmd->description);
printf(" ");
printf(" -- %s\n", cmd->description);
}
static void dbg_help_list(struct dbg_cmd_list *list)
{
int name_len = cmd_name_max(list);
puts("");
puts("Available Commands");
puts("------------------");
puts("==================");
for (unsigned i = 0; i < list->nr_commands; i++) {
if (list->commands[i].type == CMD_NODE_MOD) {
printf("%s - command module; run to see additional commands\n",
list->commands[i].mod.name);
} else if (list->commands[i].type == CMD_NODE_CMD) {
dbg_help_cmd(&list->commands[i].cmd);
dbg_help_cmd_short(&list->commands[i].cmd, name_len);
}
}
puts("");
puts("Type 'help <command>' to get help about a specific command.");
}
static void dbg_cmd_help(unsigned nr_args, char **args)
@@ -307,11 +412,19 @@ void dbg_cmd_add_module(const char *name, unsigned nr_commands, struct dbg_cmd *
#ifdef HAVE_READLINE
#include <readline/readline.h>
#include <readline/history.h>
static int cmd_rl_event_hook(void)
{
handle_window_events();
return 1;
}
/*
* Get a string from the user. The result can be modified but shouldn't be free'd.
*/
static char *cmd_gets(void)
{
rl_event_hook = cmd_rl_event_hook;
static char *line_read = NULL;
free(line_read);
line_read = readline("dbg(cmd)> ");
@@ -327,6 +440,7 @@ static char *cmd_gets(void)
{
static char line[1024];
handle_window_events();
printf("dbg(cmd)> ");
fflush(stdout);
fgets(line, 1024, stdin);
@@ -400,7 +514,27 @@ static void execute_line(char *line)
void dbg_cmd_repl(void)
{
puts("Entering the debugger REPL. Type 'help' for a list of commands.");
if (stepping) {
if (stepping_line) {
int file, line;
dbg_info_addr2line(dbg_info, instr_ptr, &file, &line);
if (file == stepping_file && line == stepping_line) {
if (stepping == STEPPING_INTO)
dbg_set_step_into_breakpoint();
else if (stepping == STEPPING_OVER)
dbg_set_step_over_breakpoint();
dbg_continue();
}
}
stepping = NOT_STEPPING;
stepping_file = stepping_line = 0;
if (dbg_info)
dbg_print_current_line();
else
dbg_print_vm_state();
} else {
puts("Entering the debugger REPL. Type 'help' for a list of commands.");
}
while (1) {
char *line = cmd_gets();
if (line)
+1110
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -23,6 +23,7 @@
#include "system4/ain.h"
#include "system4/file.h"
#include "system4/instructions.h"
#include "system4/little_endian.h"
#include "system4/string.h"
#include "system4/utfsjis.h"
#include "vm.h"
@@ -30,7 +31,6 @@
#include "vm/page.h"
#include "debugger.h"
#include "little_endian.h"
struct variable {
enum ain_data_type data_type;
+187 -17
View File
@@ -64,6 +64,7 @@ static struct copy_shader copy_key_shader;
static struct copy_shader copy_alpha_key_shader;
static struct copy_shader copy_use_amap_under_shader;
static struct copy_shader copy_use_amap_border_shader;
static struct copy_shader copy_grayscale_shader;
static struct copy_shader blend_amap_color_shader;
static struct copy_shader blend_amap_alpha_bright_shader;
static struct copy_shader blend_use_amap_color_shader;
@@ -121,6 +122,9 @@ void gfx_draw_init(void)
// copy shader that only keeps fragments above a certain alpha threshold
load_copy_shader(&copy_use_amap_border_shader, "shaders/render.v.glsl", "shaders/copy_use_amap_border.f.glsl");
// copy shader with grayscale conversion
load_copy_shader(&copy_grayscale_shader, "shaders/render.v.glsl", "shaders/copy_grayscale.f.glsl");
// copy shader that sets source RGB to a constant
load_copy_shader(&blend_amap_color_shader, "shaders/render.v.glsl", "shaders/blend_amap_color.f.glsl");
@@ -163,6 +167,7 @@ static void run_draw_shader(Shader *s, Texture *dst, Texture *src, mat4 mw_trans
struct gfx_render_job job = {
.shader = s,
.shape = GFX_RECTANGLE,
.texture = src ? src->handle : 0,
.world_transform = mw_transform[0],
.view_transform = wv_transform[0],
@@ -702,6 +707,16 @@ void gfx_copy_stretch_blend(struct texture *dst, int dx, int dy, int dw, int dh,
restore_blend_mode();
}
void gfx_copy_stretch_blend_screen(struct texture *dst, int dx, int dy, int dw, int dh, struct texture *src, int sx, int sy, int sw, int sh)
{
glBlendFuncSeparate(GL_ONE, GL_ONE_MINUS_SRC_COLOR, GL_ZERO, GL_ONE);
struct copy_data data = STRETCH_DATA(dx, dy, dw, dh, sx, sy, sw, sh);
run_copy_shader(&copy_shader.s, dst, src, &data);
restore_blend_mode();
}
void gfx_copy_stretch_blend_amap(struct texture *dst, int dx, int dy, int dw, int dh, struct texture *src, int sx, int sy, int sw, int sh)
{
glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_DST_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
@@ -729,6 +744,8 @@ void gfx_copy_stretch_blend_amap_alpha(struct texture *dst, int dx, int dy, int
// FIXME: this doesn't work correctly when the src rectangle crosses the edge of the CG.
static void copy_rot_zoom(Texture *dst, Texture *src, int sx, int sy, int w, int h, float rotate, float mag, Shader *shader)
{
w = min(w, src->w - sx);
h = min(h, src->h - sy);
// 1. scale src vertices to texture size
// 2. translate so that center point of copy region is at origin
// 3. rotate
@@ -768,18 +785,45 @@ void gfx_copy_rot_zoom_use_amap(Texture *dst, Texture *src, int sx, int sy, int
copy_rot_zoom(dst, src, sx, sy, w, h, rotate, mag, &hitbox_shader.s);
}
void gfx_copy_rot_zoom2(Texture *dst, float cx, float cy, Texture *src, float scx, float scy, float rot, float mag)
{
gfx_fill_amap(dst, 0, 0, dst->w, dst->h, 0);
glBlendFuncSeparate(GL_ONE, GL_ZERO, GL_ONE, GL_ZERO);
// 1. scale src vertices to texture size
// 2. translate so that center point of copy region is at origin
// 3. rotate
// 4. scale
// 4. tranlate to center point of dst texture
// (applied in reverse order)
mat4 mw_transform = GLM_MAT4_IDENTITY_INIT;
glm_translate(mw_transform, (vec3){ cx, cy, 0 });
glm_scale(mw_transform, (vec3){ mag, mag, 0 });
glm_rotate_z(mw_transform, -rot * (M_PI/180.0), mw_transform);
glm_translate(mw_transform, (vec3){ -scx, -scy, 0 });
glm_scale(mw_transform, (vec3){ src->w, src->h, 1 });
mat4 wv_transform = WV_TRANSFORM(dst->w, dst->h);
struct copy_data data = ROTATE_DATA(dst, 0, 0, src->w, src->h);
run_draw_shader(&hitbox_shader.s, dst, src, mw_transform, wv_transform, &data);
restore_blend_mode();
}
static void copy_rotate_y(Texture *dst, Texture *front, Texture *back, int sx, int sy, int w, int h, float rot, float mag, Shader *shader)
{
Texture *src = front;
vec3 scale = { src->w * mag, src->h * mag, 0 };
if (rot > 90.0 && rot <= 270.0) {
src = back;
scale[0] *= -1.0f;
}
gfx_fill_amap(dst, 0, 0, dst->w, dst->h, 0);
mat4 mw_transform = GLM_MAT4_IDENTITY_INIT;
glm_rotate_y(mw_transform, rot * (M_PI/180.0), mw_transform);
glm_scale(mw_transform, (vec3){ src->w * mag, src->h * mag, 0 });
glm_scale(mw_transform, scale);
glm_translate(mw_transform, (vec3){ -0.5, -0.5, 0});
mat4 proj_transform;
@@ -859,6 +903,23 @@ void gfx_copy_reverse_LR(Texture *dst, int dx, int dy, Texture *src, int sx, int
restore_blend_mode();
}
void gfx_copy_reverse_UD(Texture *dst, int dx, int dy, Texture *src, int sx, int sy, int w, int h)
{
mat4 mw_transform = MAT4(
src->w, 0, 0, -sx,
0, -src->h, 0, sy + h,
0, 0, 1, 0,
0, 0, 0, 1);
mat4 wv_transform = WV_TRANSFORM(w, h);
glBlendFuncSeparate(GL_ONE, GL_ZERO, GL_ZERO, GL_ONE);
struct copy_data data = COPY_DATA(dx, dy, sx, sy, w, h);
run_draw_shader(&copy_shader.s, dst, src, mw_transform, wv_transform, &data);
restore_blend_mode();
}
void gfx_copy_reverse_amap_LR(Texture *dst, int dx, int dy, Texture *src, int sx, int sy, int w, int h)
{
mat4 mw_transform = MAT4(
@@ -876,6 +937,23 @@ void gfx_copy_reverse_amap_LR(Texture *dst, int dx, int dy, Texture *src, int sx
restore_blend_mode();
}
void gfx_copy_reverse_LR_with_alpha_map(Texture *dst, int dx, int dy, Texture *src, int sx, int sy, int w, int h)
{
mat4 mw_transform = MAT4(
-src->w, 0, 0, sx + w,
0, src->h, 0, -sy,
0, 0, 1, 0,
0, 0, 0, 1);
mat4 wv_transform = WV_TRANSFORM(w, h);
glBlendFuncSeparate(GL_ONE, GL_ZERO, GL_ONE, GL_ZERO);
struct copy_data data = COPY_DATA(dx, dy, sx, sy, w, h);
run_draw_shader(&copy_shader.s, dst, src, mw_transform, wv_transform, &data);
restore_blend_mode();
}
void gfx_copy_width_blur(Texture *dst, int dx, int dy, Texture *src, int sx, int sy, int w, int h, int blur)
{
GLfloat f_rate = 1.0 / (blur * 2 + 1);
@@ -1006,30 +1084,122 @@ void gfx_copy_stretch_with_alpha_map(Texture *dst, int dx, int dy, int dw, int d
restore_blend_mode();
}
// XXX: Not an actual DrawGraph function; used for rendering text
void gfx_draw_glyph(Texture *dst, float dx, int dy, Texture *glyph, SDL_Color color, float scale_x, float bold_width)
void gfx_copy_grayscale(Texture *dst, int dx, int dy, Texture *src, int sx, int sy, int w, int h)
{
dx = roundf(dx);
glBlendFuncSeparate(GL_ONE, GL_ZERO, GL_ZERO, GL_ONE);
struct copy_data fill_data = COPY_DATA(dx, dy, dx, dy, glyph->w * scale_x, glyph->h);
fill_data.r = color.r / 255.0;
fill_data.g = color.g / 255.0;
fill_data.b = color.b / 255.0;
fill_data.a = 0.0;
fill_data.threshold = 0.001;
run_copy_shader(&fill_amap_under_border_shader.s, dst, dst, &fill_data);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glBlendEquationSeparate(GL_FUNC_ADD, GL_MAX);
struct copy_data data = COPY_DATA(dx, dy, sx, sy, w, h);
run_copy_shader(&copy_grayscale_shader.s, dst, src, &data);
restore_blend_mode();
}
void gfx_copy_grayscale_with_alpha_map(Texture *dst, int dx, int dy, Texture *src, int sx, int sy, int w, int h)
{
glBlendFuncSeparate(GL_ONE, GL_ZERO, GL_ONE, GL_ZERO);
struct copy_data data = COPY_DATA(dx, dy, sx, sy, w, h);
run_copy_shader(&copy_grayscale_shader.s, dst, src, &data);
restore_blend_mode();
}
void gfx_copy_grayscale_reverse_LR_with_alpha_map(Texture *dst, int dx, int dy, Texture *src, int sx, int sy, int w, int h)
{
mat4 mw_transform = MAT4(
-src->w, 0, 0, sx + w,
0, src->h, 0, -sy,
0, 0, 1, 0,
0, 0, 0, 1);
mat4 wv_transform = WV_TRANSFORM(w, h);
glBlendFuncSeparate(GL_ONE, GL_ZERO, GL_ONE, GL_ZERO);
struct copy_data data = COPY_DATA(dx, dy, sx, sy, w, h);
run_draw_shader(&copy_grayscale_shader.s, dst, src, mw_transform, wv_transform, &data);
restore_blend_mode();
}
static void draw_line(Texture *dst, int x0, int y0, int x1, int y1, struct copy_data *data)
{
GLfloat w = dst->w;
GLfloat h = dst->h;
mat4 mw_transform = MAT4(
x1 - x0, 0, 0, x0,
0, y1 - y0, 0, y0,
0, 0, 1, 0,
0, 0, 0, 1);
mat4 wv_transform = WV_TRANSFORM(w, h);
GLuint fbo = gfx_set_framebuffer(GL_DRAW_FRAMEBUFFER, dst, 0, 0, w, h);
struct gfx_render_job job = {
.shader = &fill_shader.s,
.shape = GFX_LINE,
.texture = 0,
.world_transform = mw_transform[0],
.view_transform = wv_transform[0],
.data = data
};
gfx_render(&job);
gfx_reset_framebuffer(GL_DRAW_FRAMEBUFFER, fbo);
}
void gfx_draw_line(Texture *dst, int x0, int y0, int x1, int y1, int r, int g, int b)
{
glBlendFuncSeparate(GL_ONE, GL_ZERO, GL_ZERO, GL_ONE);
struct copy_data data = {
.r = r / 255.0,
.g = g / 255.0,
.b = b / 255.0,
.a = 1
};
draw_line(dst, x0, y0, x1, y1, &data);
restore_blend_mode();
}
void gfx_draw_line_to_amap(Texture *dst, int x0, int y0, int x1, int y1, int a)
{
glBlendFuncSeparate(GL_ZERO, GL_ONE, GL_ONE, GL_ZERO);
struct copy_data data = { .a = a / 255.0 };
draw_line(dst, x0, y0, x1, y1, &data);
restore_blend_mode();
}
void gfx_draw_quadrilateral(Texture *dst, Texture *src, struct gfx_vertex vertices[4])
{
glBlendFuncSeparate(GL_ONE, GL_ZERO, GL_ZERO, GL_ONE);
GLuint fbo = gfx_set_framebuffer(GL_DRAW_FRAMEBUFFER, dst, 0, 0, dst->w, dst->h);
gfx_render_quadrilateral(src, vertices);
gfx_reset_framebuffer(GL_DRAW_FRAMEBUFFER, fbo);
restore_blend_mode();
}
// XXX: Not an actual DrawGraph function; used for rendering text
void gfx_draw_glyph(Texture *dst, float dx, int dy, Texture *glyph, SDL_Color color, float scale_x, float bold_width, bool blend)
{
if (blend) {
glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_ZERO, GL_ONE);
} else {
glBlendFunc(GL_ONE, GL_ZERO);
glBlendEquationSeparate(GL_FUNC_ADD, GL_MAX);
}
dx = roundf(dx);
struct copy_data data = STRETCH_DATA(
dx, dy, glyph->w * scale_x, glyph->h,
0, 0, glyph->w, glyph->h);
data.r = color.r / 255.0;
data.g = color.g / 255.0;
data.b = color.b / 255.0;
data.a = 1.0;
data.a = 0.01; // discard threshold
if (bold_width < 0.01) {
run_copy_shader(&blend_rmap_color_shader.s, dst, glyph, &data);
@@ -1049,7 +1219,7 @@ void gfx_draw_glyph_to_pmap(Texture *dst, float dx, int dy, Texture *glyph, Rect
data.r = color.r / 255.0;
data.g = color.g / 255.0;
data.b = color.b / 255.0;
data.a = 1.0;
data.a = 0.01; // discard threshold
glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_ZERO, GL_ONE);
run_copy_shader(&blend_rmap_color_shader.s, dst, glyph, &data);
restore_blend_mode();
@@ -1063,7 +1233,7 @@ void gfx_draw_glyph_to_amap(Texture *dst, float dx, int dy, Texture *glyph, Rect
data.r = 1.0;
data.g = 1.0;
data.b = 1.0;
data.a = 1.0;
data.a = 0.0; // discard threshold
glBlendFuncSeparate(GL_ZERO, GL_ONE, GL_ONE, GL_ZERO);
run_copy_shader(&blend_rmap_color_shader.s, dst, glyph, &data);
restore_blend_mode();
+465 -73
View File
@@ -22,26 +22,12 @@
#include "dungeon/dgn.h"
#include "vm.h"
struct dgn *dgn_parse(uint8_t *data, size_t size)
struct dgn *dgn_new(uint32_t size_x, uint32_t size_y, uint32_t size_z)
{
struct buffer r;
buffer_init(&r, data, size);
if (strncmp(buffer_strdata(&r), "DUGN", 4))
return NULL;
buffer_skip(&r, 4);
struct dgn *dgn = xcalloc(1, sizeof(struct dgn));
dgn->version = buffer_read_int32(&r);
if (dgn->version != DGN_VER_RANCE6 && dgn->version != DGN_VER_GALZOO) {
WARNING("unknown DGN version: %d", dgn->version);
free(dgn);
return NULL;
}
dgn->size_x = buffer_read_int32(&r);
dgn->size_y = buffer_read_int32(&r);
dgn->size_z = buffer_read_int32(&r);
buffer_skip(&r, 40);
dgn->size_x = size_x;
dgn->size_y = size_y;
dgn->size_z = size_z;
int nr_cells = dgn_nr_cells(dgn);
dgn->cells = xcalloc(nr_cells, sizeof(struct dgn_cell));
uint32_t x = 0, y = 0, z = 0;
@@ -50,15 +36,62 @@ struct dgn *dgn_parse(uint8_t *data, size_t size)
cell->x = x;
cell->y = y;
cell->z = z;
if (++x == dgn->size_x) {
if (++x == size_x) {
x = 0;
if (++y == dgn->size_y) {
if (++y == size_y) {
y = 0;
z++;
}
}
cell->event_blend_rate = 255;
cell->floor = -1;
cell->ceiling = -1;
cell->north_wall = -1;
cell->south_wall = -1;
cell->east_wall = -1;
cell->west_wall = -1;
cell->north_door = -1;
cell->south_door = -1;
cell->east_door = -1;
cell->west_door = -1;
cell->stairs_texture = -1;
cell->stairs_orientation = -1;
cell->lightmap_floor = -1;
cell->lightmap_ceiling = -1;
cell->lightmap_north = -1;
cell->lightmap_south = -1;
cell->lightmap_east = -1;
cell->lightmap_west = -1;
cell->battle_background = -1;
cell->polyobj_index = -1;
cell->roof_orientation = -1;
cell->roof_texture = -1;
cell->roof_underside_texture = -1;
cell->pathfinding_cost = -1;
}
return dgn;
}
struct dgn *dgn_parse(uint8_t *data, size_t size, bool for_draw_field)
{
struct buffer r;
buffer_init(&r, data, size);
if (strncmp(buffer_strdata(&r), "DUGN", 4))
return NULL;
buffer_skip(&r, 4);
uint32_t version = buffer_read_int32(&r);
uint32_t size_x = buffer_read_int32(&r);
uint32_t size_y = buffer_read_int32(&r);
uint32_t size_z = buffer_read_int32(&r);
buffer_skip(&r, 40);
struct dgn *dgn = dgn_new(size_x, size_y, size_z);
int nr_cells = dgn_nr_cells(dgn);
for (int i = 0; i < nr_cells; i++) {
struct dgn_cell *cell = &dgn->cells[i];
cell->floor = buffer_read_int32(&r);
cell->ceiling = buffer_read_int32(&r);
cell->north_wall = buffer_read_int32(&r);
@@ -71,7 +104,13 @@ struct dgn *dgn_parse(uint8_t *data, size_t size)
cell->west_door = buffer_read_int32(&r);
cell->stairs_texture = buffer_read_int32(&r);
cell->stairs_orientation = buffer_read_int32(&r);
buffer_skip(&r, 13 * 4);
cell->lightmap_floor = buffer_read_int32(&r);
cell->lightmap_ceiling = buffer_read_int32(&r);
cell->lightmap_north = buffer_read_int32(&r);
cell->lightmap_south = buffer_read_int32(&r);
cell->lightmap_east = buffer_read_int32(&r);
cell->lightmap_west = buffer_read_int32(&r);
buffer_skip(&r, 7 * 4); // lightmap parameters for doors / stairs, 2 unknowns
cell->enterable = buffer_read_int32(&r);
cell->enterable_north = buffer_read_int32(&r);
cell->enterable_south = buffer_read_int32(&r);
@@ -87,64 +126,98 @@ struct dgn *dgn_parse(uint8_t *data, size_t size)
buffer_skip(&r, 4);
buffer_skip(&r, strlen(buffer_strdata(&r)) + 1);
}
buffer_skip(&r, 4);
cell->battle_background = buffer_read_int32(&r);
if (dgn->version != DGN_VER_GALZOO) {
cell->polyobj_index = -1;
cell->roof_orientation = -1;
cell->roof_texture = -1;
cell->roof_underside_texture = -1;
continue;
if (for_draw_field) {
if (version >= 9) {
cell->north_door_lock = buffer_read_int32(&r);
cell->west_door_lock = buffer_read_int32(&r);
cell->south_door_lock = buffer_read_int32(&r);
cell->east_door_lock = buffer_read_int32(&r);
cell->north_door_angle = buffer_read_float(&r);
cell->west_door_angle = buffer_read_float(&r);
cell->south_door_angle = buffer_read_float(&r);
cell->east_door_angle = buffer_read_float(&r);
cell->walked = buffer_read_int32(&r);
}
if (version >= 11) {
cell->polyobj_index = buffer_read_int32(&r);
cell->polyobj_scale = buffer_read_float(&r);
cell->polyobj_rotation_y = buffer_read_float(&r);
cell->polyobj_rotation_z = buffer_read_float(&r);
cell->polyobj_rotation_x = buffer_read_float(&r);
cell->polyobj_position_x = buffer_read_float(&r);
cell->polyobj_position_y = buffer_read_float(&r);
cell->polyobj_position_z = buffer_read_float(&r);
}
} else {
buffer_skip(&r, 4); // unknown
cell->battle_background = buffer_read_int32(&r);
if (version != DGN_VER_GALZOO) {
continue;
}
cell->polyobj_index = buffer_read_int32(&r);
cell->polyobj_scale = buffer_read_float(&r);
cell->polyobj_rotation_y = buffer_read_float(&r);
cell->polyobj_rotation_z = buffer_read_float(&r);
cell->polyobj_rotation_x = buffer_read_float(&r);
cell->polyobj_position_x = buffer_read_float(&r);
cell->polyobj_position_y = buffer_read_float(&r);
cell->polyobj_position_z = buffer_read_float(&r);
cell->roof_orientation = buffer_read_int32(&r);
cell->roof_texture = buffer_read_int32(&r);
buffer_skip(&r, 4); // unknown
cell->roof_underside_texture = buffer_read_int32(&r);
buffer_skip(&r, 4); // unknown
}
cell->polyobj_index = buffer_read_int32(&r);
cell->polyobj_scale = buffer_read_float(&r);
cell->polyobj_rotation_y = buffer_read_float(&r);
cell->polyobj_rotation_z = buffer_read_float(&r);
cell->polyobj_rotation_x = buffer_read_float(&r);
cell->polyobj_position_x = buffer_read_float(&r);
cell->polyobj_position_y = buffer_read_float(&r);
cell->polyobj_position_z = buffer_read_float(&r);
cell->roof_orientation = buffer_read_int32(&r);
cell->roof_texture = buffer_read_int32(&r);
buffer_skip(&r, 4);
cell->roof_underside_texture = buffer_read_int32(&r);
buffer_skip(&r, 4);
}
if (buffer_read_u8(&r) != 0 || buffer_read_int32(&r) != 1) {
if (buffer_read_u8(&r) != 0) {
dgn_free(dgn);
return NULL;
}
dgn->pvs = xcalloc(nr_cells, sizeof(struct packed_pvs));
for (int i = 0; i < nr_cells; i++) {
struct packed_pvs *pvs = &dgn->pvs[i];
int32_t len = buffer_read_int32(&r);
if (len % 8 != 4) {
WARNING("dgn_parse: unexpected PVS length");
dgn_free(dgn);
return NULL;
}
if (buffer_read_int32(&r) != nr_cells) {
WARNING("dgn_parse: bad PVS");
dgn_free(dgn);
return NULL;
}
pvs->nr_run_lengths = (len - 4) / 8;
pvs->run_lengths = xmalloc(pvs->nr_run_lengths * sizeof(struct pvs_run_lengths));
int32_t total = 0;
for (int j = 0; j < pvs->nr_run_lengths; j++) {
int32_t invisible = buffer_read_int32(&r);
int32_t visible = buffer_read_int32(&r);
pvs->run_lengths[j].invisible_cells = invisible;
pvs->run_lengths[j].visible_cells = visible;
pvs->nr_visible_cells += visible;
total += invisible + visible;
}
if (total != nr_cells) {
WARNING("dgn_parse: bad PVS");
dgn_free(dgn);
return NULL;
int has_pvs = buffer_read_int32(&r);
if (has_pvs) {
dgn->pvs = xcalloc(nr_cells, sizeof(struct packed_pvs));
for (int i = 0; i < nr_cells; i++) {
struct packed_pvs *pvs = &dgn->pvs[i];
int32_t len = buffer_read_int32(&r);
if (len % 8 != 4) {
WARNING("dgn_parse: unexpected PVS length");
dgn_free(dgn);
return NULL;
}
if (buffer_read_int32(&r) != nr_cells) {
WARNING("dgn_parse: bad PVS");
dgn_free(dgn);
return NULL;
}
pvs->nr_run_lengths = (len - 4) / 8;
pvs->run_lengths = xmalloc(pvs->nr_run_lengths * sizeof(struct pvs_run_lengths));
int32_t total = 0;
for (int j = 0; j < pvs->nr_run_lengths; j++) {
int32_t invisible = buffer_read_int32(&r);
int32_t visible = buffer_read_int32(&r);
pvs->run_lengths[j].invisible_cells = invisible;
pvs->run_lengths[j].visible_cells = visible;
pvs->nr_visible_cells += visible;
total += invisible + visible;
}
if (total != nr_cells) {
WARNING("dgn_parse: bad PVS");
dgn_free(dgn);
return NULL;
}
}
}
dgn->sphere_theta[0] = buffer_read_float(&r);
dgn->sphere_theta[1] = buffer_read_float(&r);
dgn->sphere_theta[2] = buffer_read_float(&r);
dgn->sphere_color_top = buffer_read_float(&r);
dgn->sphere_color_bottom = buffer_read_float(&r);
buffer_skip(&r, 4); // unknown
if (for_draw_field && version >= 10) {
dgn->back_color_r = buffer_read_int32(&r);
dgn->back_color_g = buffer_read_int32(&r);
dgn->back_color_b = buffer_read_int32(&r);
}
return dgn;
}
@@ -204,7 +277,7 @@ static int pvs_cell_compare(const void *a, const void *b)
return ((struct pvs_cell *)a)->distance - ((struct pvs_cell *)b)->distance;
}
struct dgn_cell **dgn_get_visible_cells(struct dgn *dgn, int x, int y, int z, int *nr_cells_out)
static struct dgn_cell **dgn_get_visible_cells_pvs(struct dgn *dgn, int x, int y, int z, int *nr_cells_out)
{
int cell_index = dgn_cell_index(dgn, x, y, z);
struct dgn_cell *cell = &dgn->cells[cell_index];
@@ -236,3 +309,322 @@ struct dgn_cell **dgn_get_visible_cells(struct dgn *dgn, int x, int y, int z, in
*nr_cells_out = pvs->nr_visible_cells;
return cell->visible_cells;
}
static struct dgn_cell **dgn_get_visible_cells_nopvs(struct dgn *dgn, int x, int y, int z, int *nr_cells_out)
{
int cell_index = dgn_cell_index(dgn, x, y, z);
struct dgn_cell *cell = &dgn->cells[cell_index];
int nr_cells = dgn_nr_cells(dgn);
if (!cell->visible_cells) {
struct pvs_cell *pvs_cells = xmalloc(nr_cells * sizeof(struct pvs_cell));
for (int i = 0; i < nr_cells; i++) {
struct dgn_cell *c = &dgn->cells[i];
int dx = c->x - x;
int dy = c->y - y;
int dz = c->z - z;
pvs_cells[i].cell = c;
pvs_cells[i].distance = dx * dx + dy * dy + dz * dz;
}
qsort(pvs_cells, nr_cells, sizeof(struct pvs_cell), pvs_cell_compare);
cell->visible_cells = xmalloc(nr_cells * sizeof(struct dgn_cell *));
for (int i = 0; i < nr_cells; i++) {
cell->visible_cells[i] = pvs_cells[i].cell;
}
free(pvs_cells);
}
*nr_cells_out = nr_cells;
return cell->visible_cells;
}
struct dgn_cell **dgn_get_visible_cells(struct dgn *dgn, int x, int y, int z, int *nr_cells_out)
{
if (dgn->pvs)
return dgn_get_visible_cells_pvs(dgn, x, y, z, nr_cells_out);
else
return dgn_get_visible_cells_nopvs(dgn, x, y, z, nr_cells_out);
}
#define LM_N (1 << 0)
#define LM_S (1 << 1)
#define LM_W (1 << 2)
#define LM_E (1 << 3)
#define LM_NW (1 << 4)
#define LM_NE (1 << 5)
#define LM_SW (1 << 6)
#define LM_SE (1 << 7)
static int lightmap_texture_index(uint8_t flags)
{
if (flags & LM_N || flags & LM_W) flags &= ~LM_NW;
if (flags & LM_N || flags & LM_E) flags &= ~LM_NE;
if (flags & LM_S || flags & LM_W) flags &= ~LM_SW;
if (flags & LM_S || flags & LM_E) flags &= ~LM_SE;
switch (flags) {
case LM_N | LM_W | LM_E: return 0;
case LM_W | LM_E: return 1;
case LM_S | LM_W | LM_E: return 2;
case LM_N | LM_S | LM_W: return 3;
case LM_N | LM_S: return 4;
case LM_N | LM_S | LM_E: return 5;
case LM_N | LM_W: return 6;
case LM_N: return 7;
case LM_N | LM_E: return 8;
case LM_W: return 9;
case LM_E: return 10;
case LM_S | LM_W: return 11;
case LM_S: return 12;
case LM_S | LM_E: return 13;
case LM_N | LM_S | LM_W | LM_E: return 14;
case LM_W | LM_NE | LM_SE: return 15;
case LM_N | LM_SW | LM_SE: return 16;
case LM_E | LM_NW | LM_SW: return 17;
case LM_S | LM_NW | LM_NE: return 18;
case LM_NW | LM_NE | LM_SW | LM_SE: return 19;
case LM_W | LM_NE: return 20;
case LM_N | LM_SE: return 21;
case LM_E | LM_SW: return 22;
case LM_S | LM_NW: return 23;
case LM_NE: return 24;
case LM_W | LM_SE: return 25;
case LM_N | LM_SW: return 26;
case LM_E | LM_NW: return 27;
case LM_S | LM_NE: return 28;
case LM_SE: return 29;
case LM_NE | LM_SE: return 30;
case LM_SW | LM_SE: return 31;
case LM_NW | LM_SW: return 32;
case LM_NW | LM_NE: return 33;
case LM_SW: return 34;
case LM_NW: return 35;
case LM_N | LM_W | LM_SE: return 36;
case LM_N | LM_E | LM_SW: return 37;
case LM_S | LM_E | LM_NW: return 38;
case LM_S | LM_W | LM_NE: return 39;
case LM_NW | LM_NE | LM_SW: return 40;
case LM_NW | LM_NE | LM_SE: return 41;
case LM_NE | LM_SW | LM_SE: return 42;
case LM_NW | LM_SW | LM_SE: return 43;
case LM_NE | LM_SW: return 44;
case LM_NW | LM_SE: return 45;
default: return -1;
};
}
static int calc_floor_lightmap(struct dgn *dgn, struct dgn_cell *cell,
struct dgn_cell *north_cell, struct dgn_cell *south_cell,
struct dgn_cell *west_cell, struct dgn_cell *east_cell)
{
if (cell->floor == -1)
return -1;
uint8_t flags = 0;
if (cell->north_wall != -1 || cell->north_door != -1 ||
(north_cell && north_cell->stairs_texture != -1 && north_cell->stairs_orientation == 0))
flags |= LM_N;
if (cell->south_wall != -1 || cell->south_door != -1 ||
(south_cell && south_cell->stairs_texture != -1 && south_cell->stairs_orientation == 2))
flags |= LM_S;
if (cell->west_wall != -1 || cell->west_door != -1 ||
(west_cell && west_cell->stairs_texture != -1 && west_cell->stairs_orientation == 1))
flags |= LM_W;
if (cell->east_wall != -1 || cell->east_door != -1 ||
(east_cell && east_cell->stairs_texture != -1 && east_cell->stairs_orientation == 3))
flags |= LM_E;
if ((north_cell && (north_cell->west_wall != -1 || north_cell->west_door != -1)) ||
(west_cell && (west_cell->north_wall != -1 || west_cell->north_door != -1)))
flags |= LM_NW;
if ((north_cell && (north_cell->east_wall != -1 || north_cell->east_door != -1)) ||
(east_cell && (east_cell->north_wall != -1 || east_cell->north_door != -1)))
flags |= LM_NE;
if ((south_cell && (south_cell->west_wall != -1 || south_cell->west_door != -1)) ||
(west_cell && (west_cell->south_wall != -1 || west_cell->south_door != -1)))
flags |= LM_SW;
if ((south_cell && (south_cell->east_wall != -1 || south_cell->east_door != -1)) ||
(east_cell && (east_cell->south_wall != -1 || east_cell->south_door != -1)))
flags |= LM_SE;
return lightmap_texture_index(flags);
}
static int calc_ceiling_lightmap(struct dgn *dgn, struct dgn_cell *cell,
struct dgn_cell *north_cell, struct dgn_cell *south_cell,
struct dgn_cell *west_cell, struct dgn_cell *east_cell)
{
if (cell->ceiling == -1)
return -1;
uint8_t flags = 0;
if (cell->north_wall != -1 || cell->north_door != -1)
flags |= LM_N;
if (cell->south_wall != -1 || cell->south_door != -1)
flags |= LM_S;
if (cell->west_wall != -1 || cell->west_door != -1)
flags |= LM_E;
if (cell->east_wall != -1 || cell->east_door != -1)
flags |= LM_W;
if ((north_cell && (north_cell->east_wall != -1 || north_cell->east_door != -1)) ||
(east_cell && (east_cell->north_wall != -1 || east_cell->north_door != -1)))
flags |= LM_NW;
if ((north_cell && (north_cell->west_wall != -1 || north_cell->west_door != -1)) ||
(west_cell && (west_cell->north_wall != -1 || west_cell->north_door != -1)))
flags |= LM_NE;
if ((south_cell && (south_cell->east_wall != -1 || south_cell->east_door != -1)) ||
(east_cell && (east_cell->south_wall != -1 || east_cell->south_door != -1)))
flags |= LM_SW;
if ((south_cell && (south_cell->west_wall != -1 || south_cell->west_door != -1)) ||
(west_cell && (west_cell->south_wall != -1 || west_cell->south_door != -1)))
flags |= LM_SE;
return lightmap_texture_index(flags);
}
static int calc_north_lightmap(struct dgn *dgn, struct dgn_cell *cell,
struct dgn_cell *up_cell, struct dgn_cell *down_cell,
struct dgn_cell *west_cell, struct dgn_cell *east_cell)
{
if (cell->north_wall == -1)
return -1;
uint8_t flags = 0;
if (cell->ceiling != -1)
flags |= LM_N;
if (cell->floor != -1)
flags |= LM_S;
if (cell->west_wall != -1 || cell->west_door != -1)
flags |= LM_W;
if (cell->east_wall != -1 || cell->east_door != -1)
flags |= LM_E;
if ((up_cell && (up_cell->west_wall != -1 || up_cell->west_door != -1)) ||
(west_cell && (west_cell->ceiling != -1)))
flags |= LM_NW;
if ((up_cell && (up_cell->east_wall != -1 || up_cell->east_door != -1)) ||
(east_cell && (east_cell->ceiling != -1)))
flags |= LM_NE;
if ((down_cell && (down_cell->west_wall != -1 || down_cell->west_door != -1)) ||
(west_cell && (west_cell->floor != -1)))
flags |= LM_SW;
if ((down_cell && (down_cell->east_wall != -1 || down_cell->east_door != -1)) ||
(east_cell && (east_cell->floor != -1)))
flags |= LM_SE;
return lightmap_texture_index(flags);
}
static int calc_south_lightmap(struct dgn *dgn, struct dgn_cell *cell,
struct dgn_cell *up_cell, struct dgn_cell *down_cell,
struct dgn_cell *west_cell, struct dgn_cell *east_cell)
{
if (cell->south_wall == -1)
return -1;
uint8_t flags = 0;
if (cell->ceiling != -1)
flags |= LM_N;
if (cell->floor != -1)
flags |= LM_S;
if (cell->east_wall != -1 || cell->east_door != -1)
flags |= LM_W;
if (cell->west_wall != -1 || cell->west_door != -1)
flags |= LM_E;
if ((up_cell && (up_cell->east_wall != -1 || up_cell->east_door != -1)) ||
(east_cell && (east_cell->ceiling != -1)))
flags |= LM_NW;
if ((up_cell && (up_cell->west_wall != -1 || up_cell->west_door != -1)) ||
(west_cell && (west_cell->ceiling != -1)))
flags |= LM_NE;
if ((down_cell && (down_cell->east_wall != -1 || down_cell->east_door != -1)) ||
(east_cell && (east_cell->floor != -1)))
flags |= LM_SW;
if ((down_cell && (down_cell->west_wall != -1 || down_cell->west_door != -1)) ||
(west_cell && (west_cell->floor != -1)))
flags |= LM_SE;
return lightmap_texture_index(flags);
}
static int calc_west_lightmap(struct dgn *dgn, struct dgn_cell *cell,
struct dgn_cell *up_cell, struct dgn_cell *down_cell,
struct dgn_cell *north_cell, struct dgn_cell *south_cell)
{
if (cell->west_wall == -1)
return -1;
uint8_t flags = 0;
if (cell->ceiling != -1)
flags |= LM_N;
if (cell->floor != -1)
flags |= LM_S;
if (cell->south_wall != -1 || cell->south_door != -1)
flags |= LM_W;
if (cell->north_wall != -1 || cell->north_door != -1)
flags |= LM_E;
if ((up_cell && (up_cell->south_wall != -1 || up_cell->south_door != -1)) ||
(south_cell && (south_cell->ceiling != -1)))
flags |= LM_NW;
if ((up_cell && (up_cell->north_wall != -1 || up_cell->north_door != -1)) ||
(north_cell && (north_cell->ceiling != -1)))
flags |= LM_NE;
if ((down_cell && (down_cell->south_wall != -1 || down_cell->south_door != -1)) ||
(south_cell && (south_cell->floor != -1)))
flags |= LM_SW;
if ((down_cell && (down_cell->north_wall != -1 || down_cell->north_door != -1)) ||
(north_cell && (north_cell->floor != -1)))
flags |= LM_SE;
return lightmap_texture_index(flags);
}
static int calc_east_lightmap(struct dgn *dgn, struct dgn_cell *cell,
struct dgn_cell *up_cell, struct dgn_cell *down_cell,
struct dgn_cell *north_cell, struct dgn_cell *south_cell)
{
if (cell->east_wall == -1)
return -1;
uint8_t flags = 0;
if (cell->ceiling != -1)
flags |= LM_N;
if (cell->floor != -1)
flags |= LM_S;
if (cell->north_wall != -1 || cell->north_door != -1)
flags |= LM_W;
if (cell->south_wall != -1 || cell->south_door != -1)
flags |= LM_E;
if ((up_cell && (up_cell->north_wall != -1 || up_cell->north_door != -1)) ||
(north_cell && (north_cell->ceiling != -1)))
flags |= LM_NW;
if ((up_cell && (up_cell->south_wall != -1 || up_cell->south_door != -1)) ||
(south_cell && (south_cell->ceiling != -1)))
flags |= LM_NE;
if ((down_cell && (down_cell->north_wall != -1 || down_cell->north_door != -1)) ||
(north_cell && (north_cell->floor != -1)))
flags |= LM_SW;
if ((down_cell && (down_cell->south_wall != -1 || down_cell->south_door != -1)) ||
(south_cell && (south_cell->floor != -1)))
flags |= LM_SE;
return lightmap_texture_index(flags);
}
void dgn_calc_lightmap(struct dgn *dgn)
{
int nr_cells = dgn_nr_cells(dgn);
for (int i = 0; i < nr_cells; i++) {
struct dgn_cell *cell = &dgn->cells[i];
struct dgn_cell *north = cell->z + 1 < dgn->size_z
? dgn_cell_at(dgn, cell->x, cell->y, cell->z + 1) : NULL;
struct dgn_cell *south = cell->z > 0
? dgn_cell_at(dgn, cell->x, cell->y, cell->z - 1) : NULL;
struct dgn_cell *west = cell->x > 0
? dgn_cell_at(dgn, cell->x - 1, cell->y, cell->z) : NULL;
struct dgn_cell *east = cell->x + 1 < dgn->size_x
? dgn_cell_at(dgn, cell->x + 1, cell->y, cell->z) : NULL;
struct dgn_cell *up = cell->y + 1 < dgn->size_y
? dgn_cell_at(dgn, cell->x, cell->y + 1, cell->z) : NULL;
struct dgn_cell *down = cell->y > 0
? dgn_cell_at(dgn, cell->x, cell->y - 1, cell->z) : NULL;
cell->lightmap_floor = calc_floor_lightmap(dgn, cell, north, south, west, east);
cell->lightmap_ceiling = calc_ceiling_lightmap(dgn, cell, north, south, west, east);
cell->lightmap_north = calc_north_lightmap(dgn, cell, up, down, west, east);
cell->lightmap_south = calc_south_lightmap(dgn, cell, up, down, west, east);
cell->lightmap_west = calc_west_lightmap(dgn, cell, up, down, north, south);
cell->lightmap_east = calc_east_lightmap(dgn, cell, up, down, north, south);
}
}
+120 -3
View File
@@ -14,13 +14,20 @@
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include "system4.h"
#include "system4/buffer.h"
#include "system4/cg.h"
#include "system4/file.h"
#include "system4/little_endian.h"
#include "xsystem4.h"
#include "dungeon/dtx.h"
#include "dungeon/mtrand43.h"
#define DTX_VERSION_DTL 0xffffffff
struct dtx *dtx_parse(uint8_t *data, size_t size)
{
@@ -68,12 +75,122 @@ void dtx_free(struct dtx *dtx)
free(dtx);
}
struct cg *dtx_create_cg(struct dtx *dtx, int type, int index)
struct cg *dtx_create_cg(struct dtx *dtx, enum dtx_texture_type type, int index)
{
if (type < 0 || type >= dtx->nr_rows || index < 0 || index >= dtx->nr_columns)
int row;
switch (dtx->version) {
case 0:
switch (type) {
case DTX_WALL: row = 0; break;
case DTX_FLOOR: row = 1; break;
case DTX_CEILING: row = 2; break;
case DTX_STAIRS: row = 3; break;
case DTX_DOOR: row = 4; break;
case DTX_SKYBOX: row = 5; break;
case DTX_LIGHTMAP: row = 6; break;
default: return NULL;
}
break;
case 1:
switch (type) {
case DTX_WALL: row = 0; break;
case DTX_FLOOR: row = 1; break;
case DTX_CEILING: row = 2; break;
case DTX_STAIRS: row = 3; break;
case DTX_DOOR: row = 4; break;
case DTX_SKYBOX: row = 5; break;
case DTX_LIGHTMAP: row = 7; break;
default: return NULL;
}
break;
case DTX_VERSION_DTL:
switch (type) {
case DTX_WALL: row = 0; break;
case DTX_FLOOR: row = 1; break;
case DTX_CEILING: row = 2; break;
case DTX_LIGHTMAP: row = 3; break;
default: return NULL;
}
break;
}
if (row >= dtx->nr_rows || index < 0 || index >= dtx->nr_columns)
return NULL;
struct dtx_entry *entry = &dtx->entries[type * dtx->nr_columns + index];
struct dtx_entry *entry = &dtx->entries[row * dtx->nr_columns + index];
if (!entry->data)
return NULL;
return cg_load_buffer(entry->data, entry->size);
}
struct dtx *dtx_load_from_dtl(const char *path, uint32_t seed)
{
uint8_t *index_buf = NULL;
struct dtx *dtx = NULL;
FILE *fp = file_open_utf8(path, "rb");
if (!fp) {
WARNING("Failed to open DTL file '%s': %s", display_utf0(path), strerror(errno));
goto err;
}
char header[12];
if (fread(header, sizeof(header), 1, fp) != 1 || strcmp(header, "DTL"))
goto err;
uint32_t version = LittleEndian_getDW((uint8_t*)header, 4);
uint32_t index_size = LittleEndian_getDW((uint8_t*)header, 8);
if (version != 0 || index_size <= 1 || index_size > 1000)
goto err;
index_buf = xmalloc(index_size * 4);
if (fread(index_buf, index_size * 4, 1, fp) != 1)
goto err;
// Randomly select an index based on the seed.
struct mtrand43 mt;
mtrand43_init(&mt, seed);
for (;;) {
int index = mtrand43_genrand(&mt) % (index_size - 1) + 1;
uint32_t offset = LittleEndian_getDW(index_buf, index * 4);
if (offset) {
if (fseek(fp, offset, SEEK_SET))
goto err;
break;
}
}
dtx = xcalloc(1, sizeof(struct dtx));
dtx->version = DTX_VERSION_DTL;
dtx->nr_rows = 4;
dtx->nr_columns = 46; // number of lightmap textures
dtx->entries = xcalloc(dtx->nr_rows * dtx->nr_columns, sizeof(struct dtx_entry));
uint8_t buf[4];
for (int row = 0; row < dtx->nr_rows; row++) {
if (fread(buf, sizeof(buf), 1, fp) != 1)
goto err;
uint32_t nr_items = LittleEndian_getDW(buf, 0);
for (int col = 0; col < nr_items; col++) {
if (fread(buf, sizeof(buf), 1, fp) != 1)
goto err;
uint32_t texture_size = LittleEndian_getDW(buf, 0);
if (col >= dtx->nr_columns) {
// skip the rest of the row
if (fseek(fp, texture_size, SEEK_CUR))
goto err;
continue;
}
struct dtx_entry *entry = &dtx->entries[row * dtx->nr_columns + col];
entry->size = texture_size;
entry->data = xmalloc(texture_size);
if (fread(entry->data, texture_size, 1, fp) != 1)
goto err;
}
}
free(index_buf);
fclose(fp);
return dtx;
err:
if (dtx)
dtx_free(dtx);
if (index_buf)
free(index_buf);
if (fp)
fclose(fp);
return NULL;
}
+417 -77
View File
@@ -30,69 +30,79 @@
#include "dungeon/dgn.h"
#include "dungeon/dtx.h"
#include "dungeon/dungeon.h"
#include "dungeon/generator.h"
#include "dungeon/map.h"
#include "dungeon/polyobj.h"
#include "dungeon/renderer.h"
#include "dungeon/tes.h"
#include "gfx/gfx.h"
#include "cJSON.h"
#include "json.h"
#include "sact.h"
#include "sprite.h"
#include "vm.h"
#include "vm/page.h"
#include "xsystem4.h"
#ifndef M_PI
#define M_PI (3.14159265358979323846)
#endif
static const char plugin_name[] = "DrawDungeon";
static void dungeon_render(struct sact_sprite *sp);
static cJSON *dungeon_to_json(struct sact_sprite *sp, bool verbose);
static void dungeon_context_free(struct draw_plugin *plugin);
struct dungeon_context *dungeon_context_create(enum draw_dungeon_version version, int surface)
struct dungeon_context *dungeon_get_context(int surface)
{
struct dungeon_context *ctx = xcalloc(1, sizeof(struct dungeon_context));
ctx->plugin.name = "DrawDungeon";
struct sact_sprite *sp = sact_try_get_sprite(surface);
if (!sp || !sp->plugin || sp->plugin->name != plugin_name)
return NULL;
return (struct dungeon_context *)sp->plugin;
}
struct dungeon_context *dungeon_context_create(enum draw_dungeon_version version, int width, int height)
{
struct dungeon_context *ctx = xcalloc_aligned(1, struct dungeon_context);
ctx->plugin.name = plugin_name;
ctx->plugin.free = dungeon_context_free;
ctx->plugin.update = dungeon_render;
ctx->plugin.debug_print = NULL;
ctx->plugin.to_json = dungeon_to_json;
ctx->version = version;
ctx->surface = surface;
struct sact_sprite *sp = sact_get_sprite(ctx->surface);
if (!sp)
VM_ERROR("DrawDungeon.Init: invalid surface %d", surface);
// Dungeon scene will be rendered to this texture.
struct texture *texture = sprite_get_texture(sp);
sprite_bind_plugin(sp, &ctx->plugin);
gfx_init_texture_blank(&ctx->texture, width, height);
glGenRenderbuffers(1, &ctx->depth_buffer);
glBindRenderbuffer(GL_RENDERBUFFER, ctx->depth_buffer);
glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT16, texture->w, texture->h);
glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT16, width, height);
glBindRenderbuffer(GL_RENDERBUFFER, 0);
glm_perspective(GLM_PIf / 3.f, (float)width / height, 0.5f, 100.f, ctx->proj_transform);
ctx->map = dungeon_map_create(version);
if (version == DRAW_FIELD) {
ctx->characters = xcalloc(DRAWFIELD_NR_CHARACTERS, sizeof(struct drawfield_character));
}
return ctx;
}
void dungeon_context_free(struct dungeon_context *ctx)
static void dungeon_context_free(struct draw_plugin *plugin)
{
struct sact_sprite *sp = sact_try_get_sprite(ctx->surface);
if (sp)
sprite_bind_plugin(sp, NULL);
struct dungeon_context *ctx = (struct dungeon_context *)plugin;
if (ctx->dgn)
dgn_free(ctx->dgn);
if (ctx->dtx)
dtx_free(ctx->dtx);
if (ctx->tes)
tes_free(ctx->tes);
if (ctx->characters)
free(ctx->characters);
if (ctx->renderer)
dungeon_renderer_free(ctx->renderer);
gfx_delete_texture(&ctx->texture);
glDeleteRenderbuffers(1, &ctx->depth_buffer);
if (ctx->map)
dungeon_map_free(ctx->map);
free(ctx);
xfree_aligned(ctx);
}
static GLuint *load_event_textures(int *nr_textures_out)
@@ -158,7 +168,7 @@ bool dungeon_load(struct dungeon_context *ctx, int num)
struct archive_data *dgn = archive_get(dlf, num * 3);
if (dgn) {
ctx->dgn = dgn_parse(dgn->data, dgn->size);
ctx->dgn = dgn_parse(dgn->data, dgn->size, false);
archive_free_data(dgn);
}
struct archive_data *dtx = archive_get(dlf, num * 3 + 1);
@@ -172,6 +182,11 @@ bool dungeon_load(struct dungeon_context *ctx, int num)
archive_free_data(tes);
}
archive_free(dlf);
} else if (ctx->version == DRAW_DUNGEON_2) {
ctx->dgn = dgn_generate_drawdungeon2(num);
char *dtl_path = gamedir_path("Data/Texture.dtl");
ctx->dtx = dtx_load_from_dtl(dtl_path, (num * 25) | 1);
free(dtl_path);
} else if (ctx->version == DRAW_DUNGEON_14) {
char buf[100];
sprintf(buf, "Data/map%02d.dgn", num);
@@ -180,7 +195,7 @@ bool dungeon_load(struct dungeon_context *ctx, int num)
size_t len;
uint8_t *dgn = file_read(path, &len);
if (dgn) {
ctx->dgn = dgn_parse(dgn, len);
ctx->dgn = dgn_parse(dgn, len, false);
free(dgn);
}
@@ -220,7 +235,7 @@ bool dungeon_load(struct dungeon_context *ctx, int num)
if (!event_textures)
return false;
ctx->renderer = dungeon_renderer_create(ctx->version, ctx->dtx, event_textures, nr_event_textures, polyobj);
ctx->renderer = dungeon_renderer_create(ctx->version, num, ctx->dtx, event_textures, nr_event_textures, polyobj);
if (polyobj)
polyobj_free(polyobj);
@@ -231,6 +246,74 @@ bool dungeon_load(struct dungeon_context *ctx, int num)
return true;
}
bool dungeon_load_dungeon(struct dungeon_context *ctx, const char *filename, int num)
{
char *path = gamedir_path(filename);
size_t len;
uint8_t *dgn = file_read(path, &len);
if (!dgn) {
WARNING("Cannot load %s", path);
free(path);
return false;
}
free(path);
if (ctx->dgn)
dgn_free(ctx->dgn);
ctx->dgn = dgn_parse(dgn, len, ctx->version == DRAW_FIELD);
free(dgn);
if (!ctx->dgn)
return false;
dungeon_map_init(ctx);
ctx->loaded = ctx->dgn && ctx->dtx;
return true;
}
bool dungeon_load_texture(struct dungeon_context *ctx, const char *filename)
{
// load .dtx
char *path = gamedir_path(filename);
size_t dtx_len;
uint8_t *dtx = file_read(path, &dtx_len);
if (!dtx) {
WARNING("Cannot load %s", path);
free(path);
return false;
}
if (ctx->dtx)
dtx_free(ctx->dtx);
ctx->dtx = dtx_parse(dtx, dtx_len);
free(dtx);
if (!ctx->dtx) {
free(path);
return false;
}
// load .tes
if (ctx->tes)
tes_free(ctx->tes);
ctx->tes = NULL;
size_t path_len = strlen(path);
if (path_len > 4 && path[path_len - 4] == '.') {
strcpy(path + path_len - 4, ".tes"); // .dtx -> .tes
size_t tes_len;
uint8_t *tes = file_read(path, &tes_len);
if (tes) {
ctx->tes = tes_parse(tes, tes_len);
free(tes);
}
}
free(path);
if (ctx->renderer)
dungeon_renderer_free(ctx->renderer);
ctx->renderer = dungeon_renderer_create(ctx->version, 0, ctx->dtx, NULL, 0, NULL);
ctx->loaded = ctx->dgn && ctx->dtx;
return true;
}
void dungeon_set_camera(int surface, float x, float y, float z, float angle, float angle_p)
{
struct dungeon_context *ctx = dungeon_get_context(surface);
@@ -239,23 +322,59 @@ void dungeon_set_camera(int surface, float x, float y, float z, float angle, flo
ctx->camera.pos[0] = x;
ctx->camera.pos[1] = y;
ctx->camera.pos[2] = -z;
ctx->camera.angle = -angle * M_PI / 180;
ctx->camera.angle_p = angle_p * M_PI / 180;
ctx->camera.angle = -glm_rad(angle);
ctx->camera.angle_p = glm_rad(angle_p);
if (ctx->version != DRAW_FIELD) {
ctx->player_pos[0] = roundf(x / 2.f);
ctx->player_pos[1] = roundf(y / 2.f);
ctx->player_pos[2] = roundf(z / 2.f);
}
}
static void model_view_matrix(struct camera *camera, mat4 out)
void dungeon_set_perspective(int surface, int width, int height, float near, float far, float deg)
{
// The actual camera position is slightly behind camera->pos.
float dist = 0.9;
vec3 d = {
dist * sin(camera->angle) * cos(camera->angle_p),
dist * sin(camera->angle_p),
dist * -cos(camera->angle) * cos(camera->angle_p),
struct dungeon_context *ctx = dungeon_get_context(surface);
if (!ctx)
return;
float aspect = (float)width / height;
// XXX: Pastel Chime Continue sets unnecessarily small near (0.1) and large
// far (10000), which degrades depth buffer precision.
near = max(near, 0.4f);
far = min(far, 500.f);
glm_perspective(glm_rad(deg), aspect, near, far, ctx->proj_transform);
}
void dungeon_set_player_pos(int surface, int x, int y, int z)
{
struct dungeon_context *ctx = dungeon_get_context(surface);
if (!ctx)
return;
ctx->player_pos[0] = x;
ctx->player_pos[1] = y;
ctx->player_pos[2] = z;
}
static void model_view_matrix(struct dungeon_context *ctx, mat4 mv_out)
{
struct camera *camera = &ctx->camera;
float dist = 0.9f;
vec3 front = {
dist * sinf(camera->angle) * cosf(camera->angle_p),
dist * sinf(camera->angle_p),
dist * -cosf(camera->angle) * cosf(camera->angle_p),
};
vec3 eye;
glm_vec3_sub(camera->pos, d, eye);
vec3 up = {0.0, 1.0, 0.0};
glm_lookat(eye, camera->pos, up, out);
if (ctx->version != DRAW_FIELD) {
// The actual camera position is slightly behind camera->pos.
vec3 eye;
glm_vec3_sub(camera->pos, front, eye);
glm_lookat(eye, camera->pos, GLM_YUP, mv_out);
} else {
vec3 target;
glm_vec3_add(camera->pos, front, target);
glm_lookat(camera->pos, target, GLM_YUP, mv_out);
}
}
static void dungeon_render(struct sact_sprite *sp)
@@ -263,50 +382,64 @@ static void dungeon_render(struct sact_sprite *sp)
struct dungeon_context *ctx = (struct dungeon_context *)sp->plugin;
if (!ctx->loaded || !ctx->draw_enabled)
return;
sprite_dirty(sp);
struct texture *texture = sprite_get_texture(sp);
GLuint fbo = gfx_set_framebuffer(GL_DRAW_FRAMEBUFFER, texture, 0, 0, texture->w, texture->h);
GLuint fbo = gfx_set_framebuffer(GL_DRAW_FRAMEBUFFER, &ctx->texture, 0, 0, ctx->texture.w, ctx->texture.h);
glFramebufferRenderbuffer(GL_DRAW_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_RENDERBUFFER, ctx->depth_buffer);
if (glCheckFramebufferStatus(GL_DRAW_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE)
ERROR("Incomplete framebuffer");
glClearColor(ctx->dgn->back_color_r / 255.f, ctx->dgn->back_color_g / 255.f, ctx->dgn->back_color_b / 255.f, 1.f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glClearColor(0.f, 0.f, 0.f, 1.f);
glEnable(GL_DEPTH_TEST);
glEnable(GL_CULL_FACE);
mat4 local_transform, view_transform, proj_transform;
glm_mat4_identity(local_transform);
model_view_matrix(&ctx->camera, view_transform);
glm_perspective(M_PI / 3.0, (float)texture->w / texture->h, 0.5, 100.0, proj_transform);
mat4 view_transform;
model_view_matrix(ctx, view_transform);
// Tweak the projection transform so that the rendering result is vertically
// flipped. If we render the scene normally, the resulting image will be
// bottom-up (the first pixel is at the bottom-left), but we want a top-down
// image (the first pixel is at the top-left).
proj_transform[1][1] *= -1;
glFrontFace(GL_CW);
int dgn_x = round(ctx->camera.pos[0] / 2.0);
int dgn_y = round(ctx->camera.pos[1] / 2.0);
int dgn_z = round(ctx->camera.pos[2] / -2.0);
int dgn_x, dgn_y, dgn_z;
if (ctx->version == DRAW_FIELD) {
dgn_x = 0;
dgn_y = ctx->dgn->size_y - 1;
dgn_z = 0;
} else {
dgn_x = ctx->player_pos[0];
dgn_y = ctx->player_pos[1];
dgn_z = ctx->player_pos[2];
}
int nr_cells;
struct dgn_cell **cells = dgn_get_visible_cells(ctx->dgn, dgn_x, dgn_y, dgn_z, &nr_cells);
dungeon_renderer_render(ctx->renderer, cells, nr_cells, view_transform, proj_transform);
dungeon_renderer_render(ctx->renderer, cells, nr_cells, ctx->characters, view_transform, ctx->proj_transform);
glFrontFace(GL_CCW);
glDisable(GL_DEPTH_TEST);
glDisable(GL_CULL_FACE);
glFramebufferRenderbuffer(GL_DRAW_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_RENDERBUFFER, 0);
gfx_reset_framebuffer(GL_DRAW_FRAMEBUFFER, fbo);
dungeon_renderer_run_post_processing(ctx->renderer, &ctx->texture, sprite_get_texture(sp));
sprite_dirty(sp);
}
static void neighbor_reveal(struct dungeon_context *ctx, int x, int y, int z)
{
struct dgn_cell *cell = dgn_cell_at(ctx->dgn, x, y, z);
if (cell->floor < 0) {
cell->walked = 1;
dungeon_map_reveal(ctx, x, y, z, false);
switch (ctx->version) {
case DRAW_DUNGEON_1:
if (cell->floor < 0) {
cell->walked = 1;
dungeon_map_reveal(ctx, x, y, z, false);
}
break;
case DRAW_DUNGEON_2:
if (cell->floor >= 0) {
cell->walked |= 2;
dungeon_map_reveal(ctx, x, y, z, false);
}
break;
case DRAW_DUNGEON_14:
case DRAW_FIELD:
// do nothing
break;
}
}
@@ -315,9 +448,11 @@ void dungeon_set_walked(int surface, int x, int y, int z, int flag)
struct dungeon_context *ctx = dungeon_get_context(surface);
if (!ctx)
return;
dgn_cell_at(ctx->dgn, x, y, z)->walked = 1;
dungeon_map_reveal(ctx, x, y, z, false);
if (ctx->version == DRAW_DUNGEON_1) {
if (!dgn_is_in_map(ctx->dgn, x, y, z))
return; // avoid VM_ERROR in Pastel Chime Continue
if (flag) {
dgn_cell_at(ctx->dgn, x, y, z)->walked = ctx->version == DRAW_DUNGEON_2 ? 3 : 1;
dungeon_map_reveal(ctx, x, y, z, false);
if (x > 0)
neighbor_reveal(ctx, x - 1, y, z);
if (x + 1u < ctx->dgn->size_x)
@@ -326,6 +461,28 @@ void dungeon_set_walked(int surface, int x, int y, int z, int flag)
neighbor_reveal(ctx, x, y, z - 1);
if (z + 1u < ctx->dgn->size_z)
neighbor_reveal(ctx, x, y, z + 1);
} else {
dgn_cell_at(ctx->dgn, x, y, z)->walked = 0;
dungeon_map_hide(ctx, x, y, z);
}
}
void dungeon_set_walked_all(int surface)
{
struct dungeon_context *ctx = dungeon_get_context(surface);
if (!ctx)
return;
int nr_cells = dgn_nr_cells(ctx->dgn);
for (struct dgn_cell *c = ctx->dgn->cells; c < ctx->dgn->cells + nr_cells; c++) {
if (ctx->version == DRAW_DUNGEON_2) {
if (c->floor >= 0) {
c->walked = 3;
dungeon_map_reveal(ctx, c->x, c->y, c->z, false);
}
} else {
c->walked = 1;
dungeon_map_reveal(ctx, c->x, c->y, c->z, false);
}
}
}
@@ -348,7 +505,7 @@ int dungeon_calc_conquer(int surface)
/*
* WalkData serialization format:
*
* struct WalkData {
* struct DrawDungeon1_WalkData {
* int version; // zero
* int nr_maps;
* struct {
@@ -357,17 +514,26 @@ int dungeon_calc_conquer(int surface)
* int cells[size_x * size_y * size_z];
* } maps[nr_maps];
* };
*
* struct DrawDungeon2_WalkData {
* int magic; // 1977
* int reserved; // zero
* int size_x, size_y, size_z;
* int cells[size_x * size_y * size_z];
* };
*/
#define DD2_WALKDATA_MAGIC 1977
enum {
WALK_DATA_NOT_FOUND = -1,
WALK_DATA_BROKEN = -2,
};
static int find_walk_data(struct page *array, int map_no, struct dgn *dgn)
static int dd1_find_walk_data(struct page *array, int map_no, struct dgn *dgn)
{
if (!array)
return WALK_DATA_BROKEN;
return WALK_DATA_NOT_FOUND;
if (array->type != ARRAY_PAGE || array->a_type != AIN_ARRAY_INT || array->array.rank != 1)
VM_ERROR("Not a flat integer array");
@@ -396,16 +562,13 @@ static int find_walk_data(struct page *array, int map_no, struct dgn *dgn)
return WALK_DATA_NOT_FOUND;
}
bool dungeon_load_walk_data(int surface, int map, struct page **page)
static bool dd1_load_walk_data(struct dungeon_context *ctx, int map, struct page **page)
{
struct dungeon_context *ctx = dungeon_get_context(surface);
if (!ctx || !ctx->dgn)
return false;
struct page *array = *page;
int offset = find_walk_data(array, map, ctx->dgn);
int offset = dd1_find_walk_data(array, map, ctx->dgn);
if (offset < 0)
return false;
return offset != WALK_DATA_BROKEN;
offset += 4;
int nr_cells = dgn_nr_cells(ctx->dgn);
@@ -418,20 +581,62 @@ bool dungeon_load_walk_data(int surface, int map, struct page **page)
return true;
}
bool dungeon_save_walk_data(int surface, int map, struct page **page)
static bool dd2_load_walk_data(struct dungeon_context *ctx, struct page **page)
{
int nr_cells = dgn_nr_cells(ctx->dgn);
struct page *array = *page;
if (!array || array->nr_vars != 5 + nr_cells) {
WARNING("DrawDungeon2.LoadWalkData: invalid array size");
return false;
}
int ptr = 0;
if (array->values[ptr++].i != DD2_WALKDATA_MAGIC)
return false;
if (array->values[ptr++].i != 0)
return false;
uint32_t size_x = array->values[ptr++].i;
uint32_t size_y = array->values[ptr++].i;
uint32_t size_z = array->values[ptr++].i;
if (size_x != ctx->dgn->size_x || size_y != ctx->dgn->size_y || size_z != ctx->dgn->size_z)
return false;
for (struct dgn_cell *c = ctx->dgn->cells; c < ctx->dgn->cells + nr_cells; c++) {
c->walked = array->values[ptr++].i;
if (c->walked)
dungeon_map_reveal(ctx, c->x, c->y, c->z, true);
}
return true;
}
bool dungeon_load_walk_data(int surface, int map, struct page **page)
{
struct dungeon_context *ctx = dungeon_get_context(surface);
if (!ctx || !ctx->dgn)
return false;
switch (ctx->version) {
case DRAW_DUNGEON_1:
case DRAW_DUNGEON_14:
return dd1_load_walk_data(ctx, map, page);
case DRAW_DUNGEON_2:
return dd2_load_walk_data(ctx, page);
case DRAW_FIELD:
break; // DrawField does not export LoadWalkData
}
return false;
}
static bool dd1_save_walk_data(struct dungeon_context *ctx, int map, struct page **page)
{
struct page *array = *page;
int nr_cells = dgn_nr_cells(ctx->dgn);
int offset = find_walk_data(array, map, ctx->dgn);
int offset = dd1_find_walk_data(array, map, ctx->dgn);
if (offset == WALK_DATA_NOT_FOUND) {
offset = array->nr_vars;
array->values[1].i += 1;
union vm_value dim = { .i = array->nr_vars + 4 + nr_cells };
offset = array ? array->nr_vars : 0;
union vm_value dim = { .i = offset + 4 + nr_cells };
*page = array = realloc_array(array, 1, &dim, AIN_ARRAY_INT, 0, false);
array->values[1].i += 1;
} else if (offset == WALK_DATA_BROKEN) {
if (array)
WARNING("Discarding broken walk data");
@@ -449,3 +654,138 @@ bool dungeon_save_walk_data(int surface, int map, struct page **page)
array->values[offset++].i = ctx->dgn->cells[i].walked;
return true;
}
static bool dd2_save_walk_data(struct dungeon_context *ctx, struct page **page)
{
struct page *array = *page;
int nr_cells = dgn_nr_cells(ctx->dgn);
if (!array || array->nr_vars != 5 + nr_cells) {
WARNING("DrawDungeon2.SaveWalkData: invalid array size");
return false;
}
int ptr = 0;
array->values[ptr++].i = DD2_WALKDATA_MAGIC;
array->values[ptr++].i = 0;
array->values[ptr++].i = ctx->dgn->size_x;
array->values[ptr++].i = ctx->dgn->size_y;
array->values[ptr++].i = ctx->dgn->size_z;
for (int i = 0; i < nr_cells; i++)
array->values[ptr++].i = ctx->dgn->cells[i].walked;
return true;
}
bool dungeon_save_walk_data(int surface, int map, struct page **page)
{
struct dungeon_context *ctx = dungeon_get_context(surface);
if (!ctx || !ctx->dgn)
return false;
switch (ctx->version) {
case DRAW_DUNGEON_1:
case DRAW_DUNGEON_14:
return dd1_save_walk_data(ctx, map, page);
case DRAW_DUNGEON_2:
return dd2_save_walk_data(ctx, page);
case DRAW_FIELD:
break; // DrawField does not export SaveWalkData
}
return false;
}
void dungeon_paint_step(int surface, int x, int y, int z)
{
struct dungeon_context *ctx = dungeon_get_context(surface);
if (!ctx || !ctx->dgn)
return;
dgn_paint_step(ctx->dgn, x, z);
}
void dungeon_set_chara_sprite(int surface, int num, int sprite)
{
struct dungeon_context *ctx = dungeon_get_context(surface);
if (!ctx || !ctx->characters || num < 0 || num >= DRAWFIELD_NR_CHARACTERS)
return;
ctx->characters[num].sprite = sprite;
}
void dungeon_set_chara_pos(int surface, int num, float x, float y, float z)
{
struct dungeon_context *ctx = dungeon_get_context(surface);
if (!ctx || !ctx->characters || num < 0 || num >= DRAWFIELD_NR_CHARACTERS)
return;
ctx->characters[num].pos[0] = x;
ctx->characters[num].pos[1] = y;
ctx->characters[num].pos[2] = -z;
}
void dungeon_set_chara_cg(int surface, int num, int cg)
{
struct dungeon_context *ctx = dungeon_get_context(surface);
if (!ctx || !ctx->characters || num < 0 || num >= DRAWFIELD_NR_CHARACTERS)
return;
ctx->characters[num].cg_index = cg;
}
void dungeon_set_chara_cg_info(int surface, int num, int num_chara_x, int num_chara_y)
{
struct dungeon_context *ctx = dungeon_get_context(surface);
if (!ctx || !ctx->characters || num < 0 || num >= DRAWFIELD_NR_CHARACTERS)
return;
ctx->characters[num].rows = num_chara_y;
ctx->characters[num].cols = num_chara_x;
}
void dungeon_set_chara_show(int surface, int num, bool show)
{
struct dungeon_context *ctx = dungeon_get_context(surface);
if (!ctx || !ctx->characters || num < 0 || num >= DRAWFIELD_NR_CHARACTERS)
return;
ctx->characters[num].show = show;
}
bool dungeon_project_world_to_screen(struct dungeon_context *ctx, vec3 world_pos, Point *screen_pos)
{
mat4 view_transform;
model_view_matrix(ctx, view_transform);
mat4 mvp;
glm_mat4_mul(ctx->proj_transform, view_transform, mvp);
vec4 world_pos_h = {
world_pos[0],
world_pos[1],
-world_pos[2], // Z is negated to match coordinate system
1.f
};
vec4 clip_coords;
glm_mat4_mulv(mvp, world_pos_h, clip_coords);
if (clip_coords[3] <= 0.f) {
return false; // point is behind the near clipping plane
}
vec3 ndc;
ndc[0] = clip_coords[0] / clip_coords[3];
ndc[1] = clip_coords[1] / clip_coords[3];
ndc[2] = clip_coords[2] / clip_coords[3];
screen_pos->x = roundf(((ndc[0] + 1.f) / 2.f) * ctx->texture.w);
// Y is inverted from NDC to screen space (NDC is bottom-up, screen is top-down)
screen_pos->y = roundf(((1.f - ndc[1]) / 2.f) * ctx->texture.h);
return true;
}
static cJSON *dungeon_to_json(struct sact_sprite *sp, bool verbose)
{
cJSON *obj, *cam;
struct dungeon_context *ctx = (struct dungeon_context *)sp->plugin;
obj = cJSON_CreateObject();
cJSON_AddStringToObject(obj, "name", ctx->plugin.name);
cJSON_AddItemToObjectCS(obj, "camera", cam = cJSON_CreateObject());
cJSON_AddItemToObjectCS(cam, "pos", vec3_point_to_json(ctx->camera.pos, verbose));
cJSON_AddNumberToObject(cam, "angle", ctx->camera.angle);
cJSON_AddNumberToObject(cam, "angle_p", ctx->camera.angle_p);
return obj;
}
File diff suppressed because it is too large Load Diff
+257 -79
View File
@@ -25,38 +25,40 @@
#include "sact.h"
#include "vm.h"
#ifndef M_PI
#define M_PI (3.14159265358979323846)
#endif
#define CS 12 // pixel size of a map cell
#define LMAP_WIDTH 32
#define LMAP_HEIGHT 32
static const SDL_Color unenterable_cell_color = {182, 72, 0, 0};
enum symbol_type {
SYMBOL_PLAYER_NORTH = 0,
SYMBOL_PLAYER_SOUTH = 1,
SYMBOL_PLAYER_EAST = 2,
SYMBOL_PLAYER_WEST = 3,
SYMBOL_CROSS = 4,
SYMBOL_EXIT = 5,
SYMBOL_STAIRS_UP = 6,
SYMBOL_STAIRS_DOWN = 7,
SYMBOL_EVENT = 8,
SYMBOL_HEART = 9,
SYMBOL_WARP = 10,
SYMBOL_TREASURE = 11,
SYMBOL_MONSTER = 12,
SYMBOL_YELLOW_STAR = 13,
enum dd1_symbol_type {
DD1_SYMBOL_PLAYER_NORTH = 0,
DD1_SYMBOL_PLAYER_SOUTH = 1,
DD1_SYMBOL_PLAYER_EAST = 2,
DD1_SYMBOL_PLAYER_WEST = 3,
DD1_SYMBOL_CROSS = 4,
DD1_SYMBOL_EXIT = 5,
DD1_SYMBOL_STAIRS_UP = 6,
DD1_SYMBOL_STAIRS_DOWN = 7,
DD1_SYMBOL_EVENT = 8,
DD1_SYMBOL_HEART = 9,
DD1_SYMBOL_WARP = 10,
DD1_SYMBOL_TREASURE = 11,
DD1_SYMBOL_MONSTER = 12,
DD1_SYMBOL_YELLOW_STAR = 13,
NR_SYMBOLS = 14
};
enum dd2_symbol_type {
DD2_SYMBOL_PLAYER_NORTH = 0,
DD2_SYMBOL_PLAYER_EAST = 1,
DD2_SYMBOL_PLAYER_WEST = 2,
DD2_SYMBOL_PLAYER_SOUTH = 3,
DD2_SYMBOL_START = 4,
DD2_SYMBOL_EXIT = 5,
};
struct dungeon_map {
struct texture *textures;
int nr_textures;
int symbol_sprites[NR_SYMBOLS];
int grid_size;
int small_map_floor;
int large_map_floor;
bool radar;
@@ -67,8 +69,8 @@ struct dungeon_map {
static Point texture_pos(struct dungeon_context *ctx, int x, int z)
{
return (Point){
.x = (ctx->map->offset_x + x) * CS,
.y = (ctx->map->offset_y + ctx->dgn->size_z - z - 1) * CS
.x = (ctx->map->offset_x + x) * ctx->map->grid_size,
.y = (ctx->map->offset_y + ctx->dgn->size_z - z - 1) * ctx->map->grid_size,
};
}
@@ -78,6 +80,18 @@ struct dungeon_map *dungeon_map_create(enum draw_dungeon_version version)
return NULL; // GALZOO does not use DrawDungeon's 2D map functions.
struct dungeon_map *map = xcalloc(1, sizeof(struct dungeon_map));
switch (version) {
case DRAW_DUNGEON_1:
case DRAW_FIELD:
map->grid_size = 12;
break;
case DRAW_DUNGEON_2:
map->grid_size = 11;
break;
case DRAW_DUNGEON_14:
ERROR("cannot happen");
break;
}
map->small_map_floor = -1;
map->large_map_floor = -1;
return map;
@@ -98,33 +112,65 @@ void dungeon_map_init(struct dungeon_context *ctx)
if (!map)
return;
if (map->textures) {
for (int i = 0; i < map->nr_textures; i++)
gfx_delete_texture(&map->textures[i]);
free(map->textures);
}
map->textures = xcalloc(dgn->size_y, sizeof(struct texture));
map->nr_textures = dgn->size_y;
// Calculate the bounding box on the XZ plane so that map is drawn in the
// center of the texture.
uint32_t min_x = dgn->size_x;
uint32_t min_y = dgn->size_z;
uint32_t max_x = 0;
uint32_t max_y = 0;
for (uint32_t y = 0; y < dgn->size_y; y++) {
for (uint32_t z = 0; z < dgn->size_z; z++) {
uint32_t map_y = ctx->dgn->size_z - z - 1;
for (uint32_t x = 0; x < dgn->size_x; x++) {
if (dgn_cell_at(ctx->dgn, x, y, z)->floor < 0)
continue;
min_x = min(min_x, x);
min_y = min(min_y, map_y);
max_x = max(max_x, x);
max_y = max(max_y, map_y);
}
}
}
map->offset_x = (LMAP_WIDTH - (max_x - min_x + 1)) / 2 - min_x;
map->offset_y = (LMAP_HEIGHT - (max_y - min_y)) / 2 - min_y;
int map_width;
int map_height;
switch (ctx->version) {
case DRAW_DUNGEON_1: {
// Calculate the bounding box on the XZ plane so that map is drawn in the
// center of the texture.
uint32_t min_x = dgn->size_x;
uint32_t min_y = dgn->size_z;
uint32_t max_x = 0;
uint32_t max_y = 0;
for (uint32_t y = 0; y < dgn->size_y; y++) {
for (uint32_t z = 0; z < dgn->size_z; z++) {
uint32_t map_y = ctx->dgn->size_z - z - 1;
for (uint32_t x = 0; x < dgn->size_x; x++) {
if (dgn_cell_at(ctx->dgn, x, y, z)->floor < 0)
continue;
min_x = min(min_x, x);
min_y = min(min_y, map_y);
max_x = max(max_x, x);
max_y = max(max_y, map_y);
}
}
}
map_width = 32;
map_height = 32;
map->offset_x = (map_width - (max_x - min_x + 1)) / 2 - min_x;
map->offset_y = (map_height - (max_y - min_y)) / 2 - min_y;
}
break;
case DRAW_DUNGEON_2:
map_width = 19;
map_height = 19;
map->offset_x = 0;
map->offset_y = 1;
break;
case DRAW_DUNGEON_14:
ERROR("cannot happen");
break;
case DRAW_FIELD:
map_width = dgn->size_x;
map_height = dgn->size_z;
map->offset_x = 0;
map->offset_y = 0;
break;
}
// Initial draw
for (uint32_t y = 0; y < dgn->size_y; y++) {
gfx_init_texture_rgba(&map->textures[y], LMAP_WIDTH * CS, LMAP_HEIGHT * CS, unenterable_cell_color);
gfx_init_texture_rgba(&map->textures[y],
map_width * map->grid_size,
map_height * map->grid_size,
unenterable_cell_color);
for (uint32_t z = 0; z < dgn->size_z; z++) {
for (uint32_t x = 0; x < dgn->size_x; x++) {
dungeon_map_update_cell(ctx, x, y, z);
@@ -133,13 +179,43 @@ void dungeon_map_init(struct dungeon_context *ctx)
}
}
void dungeon_map_reveal(struct dungeon_context *ctx, int x, int y, int z, bool transparent)
void dungeon_map_reveal(struct dungeon_context *ctx, int x, int y, int z, bool from_walk_data)
{
if (!ctx->map)
return;
struct texture *dst = &ctx->map->textures[y];
struct dgn_cell *cell = dgn_cell_at(ctx->dgn, x, y, z);
Point pos = texture_pos(ctx, x, z);
int alpha;
switch (ctx->version) {
case DRAW_DUNGEON_1:
alpha = from_walk_data ? 128 : 255;
gfx_fill_amap(dst, pos.x, pos.y, ctx->map->grid_size, ctx->map->grid_size, alpha);
break;
case DRAW_DUNGEON_2:
if ((x == ctx->dgn->start_x && z == ctx->dgn->start_y) || cell->floor_event == 17) {
// Do not overwrite the start/goal symbol.
gfx_fill_amap(dst, pos.x, pos.y, ctx->map->grid_size, ctx->map->grid_size, 255);
} else {
int rg = (cell->walked & 1) ? 0 : 255;
gfx_fill_with_alpha(dst, pos.x, pos.y, ctx->map->grid_size, ctx->map->grid_size, rg, rg, 0, 255);
}
break;
case DRAW_FIELD:
alpha = cell->floor == -1 ? 160 : 255;
gfx_fill_amap(dst, pos.x, pos.y, ctx->map->grid_size, ctx->map->grid_size, alpha);
default:
break;
}
}
void dungeon_map_hide(struct dungeon_context *ctx, int x, int y, int z)
{
if (!ctx->map)
return;
struct texture *dst = &ctx->map->textures[y];
Point pos = texture_pos(ctx, x, z);
gfx_fill_amap(dst, pos.x, pos.y, CS, CS, transparent ? 128 : 255);
gfx_fill_amap(dst, pos.x, pos.y, ctx->map->grid_size, ctx->map->grid_size, 0);
}
static void draw_hline(struct texture *dst, int x, int y, int w, SDL_Color col)
@@ -155,13 +231,13 @@ static void draw_vline(struct texture *dst, int x, int y, int h, SDL_Color col)
static void draw_symbol(struct dungeon_map *map, struct texture *dst, int x, int y, int type)
{
struct sact_sprite *sp = sact_get_sprite(map->symbol_sprites[type]);
if (!sp || sp->rect.w != CS - 2 || sp->rect.h != CS - 2)
if (!sp)
VM_ERROR("Invalid map cg %d", map->symbol_sprites[type]);
struct texture *src = sprite_get_texture(sp);
gfx_copy(dst, x, y, src, 0, 0, src->w, src->h);
}
void dungeon_map_update_cell(struct dungeon_context *ctx, int dgn_x, int dgn_y, int dgn_z)
static void dd1_update_cell(struct dungeon_context *ctx, int dgn_x, int dgn_y, int dgn_z)
{
if (!ctx->map)
return;
@@ -170,6 +246,7 @@ void dungeon_map_update_cell(struct dungeon_context *ctx, int dgn_x, int dgn_y,
Point pos = texture_pos(ctx, dgn_x, dgn_z);
int x = pos.x;
int y = pos.y;
const int CS = ctx->map->grid_size;
if (cell->floor >= 0)
gfx_fill(dst, x, y, CS, CS, 0, 0, 0);
@@ -217,33 +294,126 @@ void dungeon_map_update_cell(struct dungeon_context *ctx, int dgn_x, int dgn_y,
bool draw_all_symbols = ctx->map->radar || ctx->map->all_visible;
int symbol = -1;
switch (cell->floor_event) {
case 11: if (draw_all_symbols) symbol = SYMBOL_TREASURE; break;
case 12: if (draw_all_symbols) symbol = SYMBOL_MONSTER; break;
case 14: case 140: symbol = SYMBOL_EVENT; break;
case 15: symbol = SYMBOL_HEART; break;
case 16: if (draw_all_symbols) symbol = SYMBOL_CROSS; break;
case 17: symbol = SYMBOL_EXIT; break;
case 18: symbol = SYMBOL_WARP; break;
case 28: if (draw_all_symbols) symbol = SYMBOL_YELLOW_STAR; break;
case 11: if (draw_all_symbols) symbol = DD1_SYMBOL_TREASURE; break;
case 12: if (draw_all_symbols) symbol = DD1_SYMBOL_MONSTER; break;
case 14: case 140: symbol = DD1_SYMBOL_EVENT; break;
case 15: symbol = DD1_SYMBOL_HEART; break;
case 16: if (draw_all_symbols) symbol = DD1_SYMBOL_CROSS; break;
case 17: symbol = DD1_SYMBOL_EXIT; break;
case 18: symbol = DD1_SYMBOL_WARP; break;
case 28: if (draw_all_symbols) symbol = DD1_SYMBOL_YELLOW_STAR; break;
}
if (cell->stairs_texture >= 0)
symbol = SYMBOL_STAIRS_UP;
symbol = DD1_SYMBOL_STAIRS_UP;
else if (dgn_y && dgn_cell_at(ctx->dgn, dgn_x, dgn_y - 1, dgn_z)->stairs_texture >= 0)
symbol = SYMBOL_STAIRS_DOWN;
symbol = DD1_SYMBOL_STAIRS_DOWN;
if (symbol >= 0)
draw_symbol(ctx->map, dst, x + 1, y + 1, symbol);
}
static void dd2_update_cell(struct dungeon_context *ctx, int dgn_x, int dgn_y, int dgn_z)
{
if (!ctx->map)
return;
struct dgn_cell *cell = dgn_cell_at(ctx->dgn, dgn_x, dgn_y, dgn_z);
struct texture *dst = &ctx->map->textures[0];
Point pos = texture_pos(ctx, dgn_x, dgn_z);
if (dgn_x == ctx->dgn->start_x && dgn_z == ctx->dgn->start_y) {
draw_symbol(ctx->map, dst, pos.x, pos.y, DD2_SYMBOL_START);
} else if (cell->floor_event == 17) {
draw_symbol(ctx->map, dst, pos.x, pos.y, DD2_SYMBOL_EXIT);
}
}
static void df_update_cell(struct dungeon_context *ctx, int dgn_x, int dgn_y, int dgn_z)
{
if (!ctx->map)
return;
struct dgn_cell *cell = dgn_cell_at(ctx->dgn, dgn_x, dgn_y, dgn_z);
struct texture *dst = &ctx->map->textures[dgn_y];
Point pos = texture_pos(ctx, dgn_x, dgn_z);
int x = pos.x;
int y = pos.y;
const int CS = ctx->map->grid_size;
if (cell->floor >= 0)
gfx_fill(dst, x, y, CS, CS, 128, 64, 32);
else
gfx_fill(dst, x, y, CS, CS, 0, 0, 0);
const SDL_Color wall_color = {255, 255, 255, 255};
if (cell->north_wall >= 0)
draw_hline(dst, x, y, CS, wall_color);
if (cell->south_wall >= 0)
draw_hline(dst, x, y + CS - 1, CS, wall_color);
if (cell->west_wall >= 0)
draw_vline(dst, x, y, CS, wall_color);
if (cell->east_wall >= 0)
draw_vline(dst, x + CS - 1, y, CS, wall_color);
const SDL_Color door_colors[2] = {{0, 255, 0, 255}, {255, 0, 0, 255}};
if (cell->north_door >= 0) {
draw_hline(dst, x, y, CS / 2 - 1, door_colors[cell->north_door_lock]);
draw_hline(dst, x + CS / 2 - 1, y, 2, COLOR(0, 0, 0, 0));
draw_hline(dst, x + CS / 2 + 1, y, CS / 2 - 1, door_colors[cell->north_door_lock]);
}
if (cell->south_door >= 0) {
draw_hline(dst, x, y + CS - 1, CS / 2 - 1, door_colors[cell->south_door_lock]);
draw_hline(dst, x + CS / 2 - 1, y + CS - 1, 2, COLOR(0, 0, 0, 0));
draw_hline(dst, x + CS / 2 + 1, y + CS - 1, CS / 2 - 1, door_colors[cell->south_door_lock]);
}
if (cell->west_door >= 0) {
draw_vline(dst, x, y, CS / 2 - 1, door_colors[cell->west_door_lock]);
draw_vline(dst, x, y + CS / 2 - 1, 2, COLOR(0, 0, 0, 0));
draw_vline(dst, x, y + CS / 2 + 1, CS / 2 - 1, door_colors[cell->west_door_lock]);
}
if (cell->east_door >= 0) {
draw_vline(dst, x + CS - 1, y, CS / 2 - 1, door_colors[cell->east_door_lock]);
draw_vline(dst, x + CS - 1, y + CS / 2 - 1, 2, COLOR(0, 0, 0, 0));
draw_vline(dst, x + CS - 1, y + CS / 2 + 1, CS / 2 - 1, door_colors[cell->east_door_lock]);
}
if (cell->stairs_texture >= 0)
gfx_fill(dst, x + 2, y + 2, CS - 4, CS - 4, 0, 255, 255);
else if (dgn_y && dgn_cell_at(ctx->dgn, dgn_x, dgn_y - 1, dgn_z)->stairs_texture >= 0)
gfx_fill(dst, x + 2, y + 2, CS - 4, CS - 4, 0, 0, 255);
}
void dungeon_map_update_cell(struct dungeon_context *ctx, int dgn_x, int dgn_y, int dgn_z)
{
switch (ctx->version) {
case DRAW_DUNGEON_1:
dd1_update_cell(ctx, dgn_x, dgn_y, dgn_z);
break;
case DRAW_DUNGEON_2:
dd2_update_cell(ctx, dgn_x, dgn_y, dgn_z);
break;
case DRAW_DUNGEON_14:
// unused
break;
case DRAW_FIELD:
df_update_cell(ctx, dgn_x, dgn_y, dgn_z);
}
}
static int player_symbol(struct dungeon_context *ctx)
{
const int symbols[] = {
SYMBOL_PLAYER_NORTH,
SYMBOL_PLAYER_EAST,
SYMBOL_PLAYER_SOUTH,
SYMBOL_PLAYER_WEST,
const int dd1_symbols[] = {
DD1_SYMBOL_PLAYER_NORTH,
DD1_SYMBOL_PLAYER_EAST,
DD1_SYMBOL_PLAYER_SOUTH,
DD1_SYMBOL_PLAYER_WEST,
};
return symbols[(int)(round(ctx->camera.angle * 2 / M_PI)) & 3];
const int dd2_symbols[] = {
DD2_SYMBOL_PLAYER_NORTH,
DD2_SYMBOL_PLAYER_EAST,
DD2_SYMBOL_PLAYER_SOUTH,
DD2_SYMBOL_PLAYER_WEST,
};
const int *symbols = ctx->version == DRAW_DUNGEON_1 ? dd1_symbols : dd2_symbols;
return symbols[(int)(roundf(ctx->camera.angle * 2 / GLM_PIf)) & 3];
}
void dungeon_map_draw(int surface, int sprite)
@@ -251,22 +421,27 @@ void dungeon_map_draw(int surface, int sprite)
struct dungeon_context *ctx = dungeon_get_context(surface);
if (!ctx || !ctx->map)
return;
if (ctx->version == DRAW_DUNGEON_2) {
// Draw the entire map
dungeon_map_draw_lmap(surface, sprite);
return;
}
struct sact_sprite *sp = sact_get_sprite(sprite);
if (!sp)
VM_ERROR("DrawDungeon.DrawMap: invalid sprite %d", sprite);
sprite_dirty(sp);
struct texture *dst = sprite_get_texture(sp);
int player_x = round(ctx->camera.pos[0] / 2.0);
int player_y = round(ctx->camera.pos[1] / 2.0);
int player_z = round(ctx->camera.pos[2] / -2.0);
int level = ctx->map->small_map_floor;
if (level < 0)
level = player_y;
level = ctx->player_pos[1];
struct texture *src = &ctx->map->textures[level];
Point pos = texture_pos(ctx, player_x, player_z);
const int CS = ctx->map->grid_size;
Point pos = texture_pos(ctx, ctx->player_pos[0], ctx->player_pos[2]);
int x = pos.x - (dst->w - CS) / 2;
int y = pos.y - (dst->h - CS) / 2;
@@ -292,12 +467,9 @@ void dungeon_map_draw_lmap(int surface, int sprite)
sprite_dirty(sp);
struct texture *dst = sprite_get_texture(sp);
int player_x = round(ctx->camera.pos[0] / 2.0);
int player_y = round(ctx->camera.pos[1] / 2.0);
int player_z = round(ctx->camera.pos[2] / -2.0);
int level = ctx->map->large_map_floor;
if (level < 0)
level = player_y;
level = ctx->player_pos[1];
struct texture *src = &ctx->map->textures[level];
gfx_copy_with_alpha_map(dst, 0, 0, src, 0, 0, src->w, src->h);
@@ -306,9 +478,15 @@ void dungeon_map_draw_lmap(int surface, int sprite)
gfx_fill_amap(dst, 0, 0, dst->w, dst->h, 255);
// Draw the player symbol.
Point pos = texture_pos(ctx, player_x, player_z);
draw_symbol(ctx->map, dst, pos.x + 1, pos.y + 1, player_symbol(ctx));
gfx_fill_amap(dst, pos.x + 1, pos.y + 1, CS - 2, CS - 2, level == player_y ? 255 : 128);
Point pos = texture_pos(ctx, ctx->player_pos[0], ctx->player_pos[2]);
if (ctx->version == DRAW_FIELD) {
int ofs = (ctx->map->grid_size - 4) / 2;
gfx_fill(dst, pos.x + ofs, pos.y + ofs, 4, 4, 255, 192, 255);
} else {
draw_symbol(ctx->map, dst, pos.x + 1, pos.y + 1, player_symbol(ctx));
int size = ctx->map->grid_size - 2;
gfx_fill_amap(dst, pos.x + 1, pos.y + 1, size, size, level == ctx->player_pos[1] ? 255 : 128);
}
}
static void redraw_event_symbols(struct dungeon_context *ctx)
+104
View File
@@ -0,0 +1,104 @@
// Mersenne Twister engine with N=4, M=3
// Derived from mt19937int.c in libsys4
/* A C-program for MT19937: Integer version (1998/4/6) */
/* genrand() generates one pseudorandom unsigned integer (32bit) */
/* which is uniformly distributed among 0 to 2^32-1 for each */
/* call. sgenrand(seed) set initial values to the working area */
/* of 624 words. Before genrand(), sgenrand(seed) must be */
/* called once. (seed is any 32-bit integer except for 0). */
/* Coded by Takuji Nishimura, considering the suggestions by */
/* Topher Cooper and Marc Rieffel in July-Aug. 1997. */
/* This library is free software; you can redistribute it and/or */
/* modify it under the terms of the GNU Library General Public */
/* License as published by the Free Software Foundation; either */
/* version 2 of the License, or (at your option) any later */
/* version. */
/* This library is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */
/* See the GNU Library General Public License for more details. */
/* You should have received a copy of the GNU Library General */
/* Public License along with this library; if not, write to the */
/* Free Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA */
/* 02111-1307 USA */
/* Copyright (C) 1997 Makoto Matsumoto and Takuji Nishimura. */
/* When you use this, send an email to: matumoto@math.keio.ac.jp */
/* with an appropriate reference to your work. */
/* REFERENCE */
/* M. Matsumoto and T. Nishimura, */
/* "Mersenne Twister: A 623-Dimensionally Equidistributed Uniform */
/* Pseudo-Random Number Generator", */
/* ACM Transactions on Modeling and Computer Simulation, */
/* Vol. 8, No. 1, January 1998, pp 3--30. */
#include "dungeon/mtrand43.h"
/* Period parameters */
#define N MTRAND43_STATE_SIZE
#define M 3
#define MATRIX_A 0x9908b0df /* constant vector a */
#define UPPER_MASK 0x80000000 /* most significant w-r bits */
#define LOWER_MASK 0x7fffffff /* least significant r bits */
/* Tempering parameters */
#define TEMPERING_MASK_B 0x9d2c5680
#define TEMPERING_MASK_C 0xefc60000
#define TEMPERING_SHIFT_U(y) (y >> 11)
#define TEMPERING_SHIFT_S(y) (y << 7)
#define TEMPERING_SHIFT_T(y) (y << 15)
#define TEMPERING_SHIFT_L(y) (y >> 18)
/* initializing the array with a NONZERO seed */
void mtrand43_init(struct mtrand43 *mt, uint32_t seed)
{
/* setting initial seeds to mt[N] using */
/* the generator Line 25 of Table 1 in */
/* [KNUTH 1981, The Art of Computer Programming */
/* Vol. 2 (2nd Ed.), pp102] */
mt->st[0]= seed & 0xffffffff;
for (int i=1; i<N; i++)
mt->st[i] = (69069 * mt->st[i-1]) & 0xffffffff;
mt->i = N;
}
uint32_t mtrand43_genrand(struct mtrand43 *mt)
{
uint32_t y;
static const uint32_t mag01[2]={0x0, MATRIX_A};
/* mag01[x] = x * MATRIX_A for x=0,1 */
if (mt->i >= N) { /* generate N words at one time */
int kk;
for (kk=0;kk<N-M;kk++) {
y = (mt->st[kk]&UPPER_MASK)|(mt->st[kk+1]&LOWER_MASK);
mt->st[kk] = mt->st[kk+M] ^ (y >> 1) ^ mag01[y & 0x1];
}
for (;kk<N-1;kk++) {
y = (mt->st[kk]&UPPER_MASK)|(mt->st[kk+1]&LOWER_MASK);
mt->st[kk] = mt->st[kk+(M-N)] ^ (y >> 1) ^ mag01[y & 0x1];
}
y = (mt->st[N-1]&UPPER_MASK)|(mt->st[0]&LOWER_MASK);
mt->st[N-1] = mt->st[M-1] ^ (y >> 1) ^ mag01[y & 0x1];
mt->i = 0;
}
y = mt->st[mt->i++];
y ^= TEMPERING_SHIFT_U(y);
y ^= TEMPERING_SHIFT_S(y) & TEMPERING_MASK_B;
y ^= TEMPERING_SHIFT_T(y) & TEMPERING_MASK_C;
y ^= TEMPERING_SHIFT_L(y);
return y;
}
// Returns a random float between [0.0, 1.0], inclusive.
float mtrand43_genfloat(struct mtrand43 *mt)
{
return (float)(mtrand43_genrand(mt)) / 4294967296.f;
}

Some files were not shown because too many files have changed in this diff Show More