Matthew Jimenez
cde990a2f5
ULTIMA8: Switch U8SaveFile to inherit from Common::Archive
2023-12-29 08:35:15 +11:00
elasota
ade161c7c9
MTROPOLIS: Improve Punycode handling in VFS
...
This should fix MTI Mac not booting
2023-12-28 14:10:55 -05:00
Cameron Cawley
d5863dd513
ENGINES: Allow specifying a start position for initGraphicsAny()
2023-12-28 20:41:22 +02:00
Le Philousophe
2fdd7ce9d0
VITA: Add missing function for plugins
2023-12-28 18:18:31 +01:00
Walter Agazzi
f5ca933629
DIRECTOR: Add detection for Przygody Pippi
...
TRAC #14742
2023-12-28 14:50:49 +01:00
Le Philousophe
03a53b1a1e
OPENGL: Fix GLSL version parsing
...
Some old GLES2 implementation did have a different version prefix.
Be more relax like almost everyone and look for the first digit to start
parsing.
2023-12-28 09:31:31 +01:00
Le Philousophe
6990c1ccbf
ACCESS: Remove use of statically allocated variable
...
Even if this is a const and Rect is constexpr, this instantiation can't
be done at compile time as the parameters of Rect are defined in another
translation unit.
Using this construct make the compiler emit code at init which is
forbidden as per our rules.
2023-12-28 08:44:56 +01:00
Paul Gilbert
c39133674f
M4: Fix deputy animation in room 137
2023-12-27 19:51:36 -10:00
Paul Gilbert
e7d933bff7
M4: Fixes for talking to Vera in test 5
2023-12-27 19:33:01 -10:00
Paul Gilbert
5fc90d4454
M4: Fix interacting with cat in room 405
2023-12-27 18:11:35 -10:00
Paul Gilbert
b0f66f895f
M4: Cleanup of NPCs in room 405
2023-12-27 17:59:31 -10:00
Paul Gilbert
cc1314f9fe
M4: Fix talking to Roxy in test 5
2023-12-27 16:57:01 -10:00
Paul Gilbert
f78dde2e68
M4: Fix crash in room 407 playing random samples
2023-12-27 16:57:01 -10:00
Walter Agazzi
bf276503a6
AGS: Add entries for latest Wadjet Eye games updates
...
+ add some new games
2023-12-28 02:37:10 +01:00
Eugene Sandulenko
efb903204d
COMMON: Added more global debug levels
2023-12-28 01:52:44 +01:00
Eugene Sandulenko
b86688e717
CREATE_ENGINE: Switch debug channels to a sequential enum
2023-12-28 01:41:11 +01:00
Eugene Sandulenko
18ef024b4e
DIRECTOR: Turn debug channels into a sequential enum
2023-12-28 01:41:11 +01:00
Eugene Sandulenko
bf3117e935
COMMON: Switch debug channels to a hashmap
...
We used to use a bitfield there, which was restricting the total
number of flags to 32 (unless we switch to uint64, which is suboptimal).
Moreover, with the introduction of the global debug flags, we have
even fewer bits to flip, and this shared nature was restricting
the introduction of more global debug channels.
The goal for the bitfield was to make it possible to put a debug message into
more than one channel. But this feature was practically not used by the engines.
This was removed by the previous commits.
This commit turns the debug channels into a hashmap and puts the global channel
IDs after 100000.
There is no absolute need to renumber the existing debug channels, but
I could follow with an engine or two.
2023-12-28 01:41:10 +01:00
Eugene Sandulenko
4ccdf1f992
WINTERMUTE: Avoid using bitfields in debugC()
2023-12-28 01:41:10 +01:00
Eugene Sandulenko
8c8eee7d1c
NGI: Avoid using bitfields in debugC()
2023-12-28 01:41:10 +01:00
Eugene Sandulenko
c647a64345
LASTEXPRESS: Avoid using bitfields in debugC()
2023-12-28 01:41:10 +01:00
Eugene Sandulenko
7fa224c45e
GROOVIE: Avoid using bitfields in debugC()
2023-12-28 01:41:10 +01:00
Eugene Sandulenko
6090788468
DIRECTOR: Avoid using bitfields in debugC
2023-12-28 01:41:10 +01:00
Eugene Sandulenko
3a1701536f
AGI: Avoid using bitfields in debugC()
2023-12-28 01:41:10 +01:00
Paul Gilbert
8f70560000
M4: Fix animation for dragging chain in test 5
2023-12-27 14:38:35 -10:00
sluicebox
fb93706628
M4: Use delete instead of free. PVS-Studio V611
2023-12-27 00:13:28 -08:00
Paul Gilbert
c876f6d8a1
M4: Simplify mouse wheel click cursor toggle
...
It now toggles the cursor between Walk and Use, which is more
convenient for doing stuff
2023-12-26 13:27:43 -10:00
Paul Gilbert
619839295f
M4: Fix gerbils firing in upper cage level
2023-12-26 13:27:42 -10:00
Paul Gilbert
d5c0bd423e
M4: Clarifying gerbil flag and state variable
2023-12-26 13:27:42 -10:00
Eugene Sandulenko
9489ada7b7
SCUMM: Remove obsolete comment
2023-12-26 21:29:10 +01:00
Eugene Sandulenko
b0a624df76
GRAPHICS: MACGUI: More debug output to MacFontManager
2023-12-26 21:28:28 +01:00
eientei
a3eea519ab
M4: Fix English credits
2023-12-26 10:18:54 -10:00
eientei
91f12bd413
M4: Fix debug lines appearance in console
2023-12-26 10:18:54 -10:00
antoniou79
9f095fa4f9
DISTS: ANDROID: Correct build number purpose
2023-12-26 22:17:53 +02:00
AndywinXp
90084caa74
SCUMM: Change DEBUG_COLOR_COUNT from static const to define
2023-12-26 21:11:30 +01:00
Harri Pellikka
9a742b0c36
SCUMM: Colorize debugger box output
...
Draw boxes in scumm debugger with different colors to make them
easier to separate visually. Also, draw object rectangles with
different colors.
2023-12-26 21:10:15 +01:00
sluicebox
c6c89be3f8
AGI: Fix Cmd_RunOpcode output
2023-12-26 12:01:13 -08:00
sluicebox
b68f068b5a
ICB: Declare Fatal_error NORETURN
2023-12-26 12:01:12 -08:00
Cameron Cawley
eda69db63c
COMMON: Allow passing const pointers to BitArray::set_bits()
2023-12-26 20:23:59 +01:00
Cameron Cawley
6522c6e11d
GRAPHICS: Make the Graphics::PixelFormat constructors constexpr
2023-12-26 20:23:59 +01:00
Cameron Cawley
30b977c272
DETECTION: Mark more symbols as const
2023-12-26 20:23:59 +01:00
Cameron Cawley
5b1b14ad80
COMMON: Mark more symbols as const
2023-12-26 20:23:59 +01:00
sluicebox
5a63845005
M4: Declare error functions NORETURN
...
Should fix false positives in static analysis tools
2023-12-26 11:09:19 -08:00
Eugene Sandulenko
551906dd50
DISTS: ANDROID: German Release notes for 2.8.0
2023-12-26 19:25:31 +01:00
Eugene Sandulenko
c721e0ce69
SCUMM: Remove leftover warning
2023-12-26 18:07:31 +01:00
Eugene Sandulenko
0aedc770e4
SCUMM: Remove custom PICTv1 decoder in favor of general one
2023-12-26 17:52:52 +01:00
Eugene Sandulenko
ff6c4424bd
IMAGE: Added PackBitsRgn and BitsRgn opcodes to PICT decoder
...
Used in SCUMM Mac GUI
2023-12-26 17:52:52 +01:00
antoniou79
7a1baa20b6
DISTS: ANDROID: Use new schema for version codes
...
New version code numbering is indicative of current version, beta build and target architecture
2023-12-26 18:38:34 +02:00
antoniou79
4d2076ad84
DISTS: ANDROID: English Release notes for 2.8.0
2023-12-26 18:21:38 +02:00
Filippos Karapetis
9839b66447
DIRECTOR: Fix detection flags for Gadget demo entries
2023-12-26 17:01:02 +01:00