Autor Thema: ScummVM page on MMM-Wiki  (Gelesen 130 mal)

CyberTentacle

  • Tentakelschleim
  • *
  • Beiträge: 2
    • Profil anzeigen
ScummVM page on MMM-Wiki
« am: 05. April 2024, 15:05:12 »
Hi all!
Maybe it's already known, but I'd like to point out that the wiki page related to ScummVM is quite outdated.
Since version 2.8.0 the fonts should match the AGS implementation, so there are no more problems with squashed characters or broken outlines.

Additionally, daily development builds include a fix for the stairs bug in Bernard's house  ;D

Cmdr

  • volljähriger Tentakel
  • *****
  • Beiträge: 721
    • Profil anzeigen
Re: ScummVM page on MMM-Wiki
« Antwort #1 am: 05. April 2024, 16:07:45 »
Hi all!
Maybe it's already known, but I'd like to point out that the wiki page related to ScummVM is quite outdated.
Since version 2.8.0 the fonts should match the AGS implementation, so there are no more problems with squashed characters or broken outlines.

Additionally, daily development builds include a fix for the stairs bug in Bernard's house  ;D

Wow, that's interesting!
Thank you for your great work  ;D

Kaktus

  • volljähriger Tentakel
  • *****
  • Beiträge: 754
  • Geschlecht: Männlich
  • Waaaah!
    • Profil anzeigen
    • E-Mail
Re: ScummVM page on MMM-Wiki
« Antwort #2 am: 05. April 2024, 16:28:29 »
Thank you, funnily I just read about the stairs bug in ScummVM earlier this year.
Back then there was the opinion prevailed that it's not a bug. Glad to here hear that changed.

ScummVM rocks!
« Letzte Änderung: 06. April 2024, 20:37:26 von Kaktus »

Cone Arex

  • Mod
  • alter Tentakel
  • **
  • Beiträge: 2304
  • Geschlecht: Männlich
  • Skandal-Entwickler und Idiot
    • Profil anzeigen
    • Conequest
Re: ScummVM page on MMM-Wiki
« Antwort #3 am: 06. April 2024, 13:33:40 »
Thank you. I will update the wiki page once I have the time for it.
Out of curiosity, how was the stairs bug fixed?


Folge mir auf X und itch.io

Kaktus

  • volljähriger Tentakel
  • *****
  • Beiträge: 754
  • Geschlecht: Männlich
  • Waaaah!
    • Profil anzeigen
    • E-Mail

AmigaMaster

  • kleiner Tentakel
  • ***
  • Beiträge: 101
    • Profil anzeigen
    • Mein YouTube Kanal
Re: ScummVM page on MMM-Wiki
« Antwort #5 am: 06. April 2024, 20:46:58 »
There was a problem with the walkable area search function which returned wrong coordinates with the default value of 3 pixel granularity. For older game engine versions, the granularity now is pixel perfect within a range of 100 pixels around the target position.

Commit: https://github.com/scummvm/scummvm/commit/c3a0553e25983651f4f823503e9c56ba8bcd3432

if (tempw->GetPixel(tox, toy) != 232) {
// Destination pixel is not walkable
// Try the 100x100 square around the target first at 3-pixel granularity
int tryFirstX = tox - 50, tryToX = tox + 50;
int tryFirstY = toy - 50, tryToY = toy + 50;

// This is a fix for the Treppenbug in old (pre-3.0) Maniac Mansion Mania games.
// Using a higher granularity the find_nearest_walkable_area sets a wrong coordinate that prevents
// the staircase in Bernard's home from working.
int sweep_granularity = _G(loaded_game_file_version) > kGameVersion_272 ? 3 : 1;
if (!find_nearest_walkable_area(tempw, tryFirstX, tryFirstY, tryToX, tryToY, tox, toy, sweep_granularity)) {
// Nothing found, sweep the whole room at 5 pixel granularity
find_nearest_walkable_area(tempw, 0, 0, tempw->GetWidth(), tempw->GetHeight(), tox, toy, 5);
}
Mein YouTube Kanal mit Longplays zu allen 10 MMM Staffeln!
Mein Discord Server mit vielen Retrobegeisterten.
Meine Lösungen - Jeder kann mitmachen

Cone Arex

  • Mod
  • alter Tentakel
  • **
  • Beiträge: 2304
  • Geschlecht: Männlich
  • Skandal-Entwickler und Idiot
    • Profil anzeigen
    • Conequest
Re: ScummVM page on MMM-Wiki
« Antwort #6 am: 06. April 2024, 21:22:17 »
Not that it matters, but I just noticed that my original posting about the stairs is now nearly 10 years old: https://www.maniac-mansion-mania.de/forum/index.php?topic=2304.0
Finally!


Folge mir auf X und itch.io

CyberTentacle

  • Tentakelschleim
  • *
  • Beiträge: 2
    • Profil anzeigen
Re: ScummVM page on MMM-Wiki
« Antwort #7 am: 07. April 2024, 14:28:36 »
I was about to link the commit and add an explanation but you were faster :D
Just a note: the fix is currently in ScummVM but not in the upstream AGS implementation, so if you use the interpreter downloaded from the ags website (or github) you'll still have the bug