Difference between revisions of "SCI/TODO"

From ScummVM :: Wiki
< SCI
Jump to navigation Jump to search
(Wikify)
(Remove outdated SCI32 TODOs/bugs)
 
(421 intermediate revisions by 9 users not shown)
Line 1: Line 1:
== Engine Status ==
{{Infobox_TODO|
taskname=SCI Engine TODO|
techcontact=[[SCI]] Engine Team|
subsystem=Engine|
}}


=== Known games that can be completed ===
= Missing features =
* Hero's Quest (10/24/2009), King's Quest 5 (10/18/2009), King's Quest 6 (10/2009), Larry 1 (01/01/2010), Larry 5 (10/19/2009), Larry 6 (10/2009), Laura Bow 1 Colonel's Bequest (12/28/2009), Space Quest 1 VGA (10/21/2009)


=== Currently running tests ===
== SCI0-SCI1.1 missing features ==
* Quest for Glory 1 VGA - [md5], m_kiewitz
* Quest for Glory 2 - syke


== TODO ==
=== Sound ===
=== Missing features (SCI0-SCI1.1) ===
* Voice mapping. This is used by all SCI games to assign hardware voices to midi channels in the AdLib and FB-01 drivers. So, for example, if a song tries to play more than 9 notes at the same time, we need to stop an earlier note. We currently do this round-robin, while we should be respecting voice assignments. If a game sets 3 voices for piano, we should not take one away unless 4 piano notes are played, then it's OK to stop one piano note. Currently if a song were to use 5 notes at once we would just play them all, even if that midi channel was set to use 2 voices, and those 3 extra notes might stop more important notes, e.g. in the melody. This has been implemented for SCI0, but it's not hooked up to AdLib at the moment. Also we're not sure if the initial voice assignments are in the MIDI stream in SCI1 (they're not in SCI0). Of course, channel remapping has an effect on this too
* SCI1.1 character scaling - assigned to [md5]
* Improve Amiga (SCI01/1) and Mac sound support ([[SCI/Specifications/Sound/SCI0 Resource Format#Amiga Sound (SCI1)/Macintosh Sound (SCI1/1.1)|same format]])
* Palette morphing (kPalVary - used for example in the SQ5 intro) and kAssertPalette - assigned to m_kiewitz
* kDoAudio subops 12 and 13 (used in Freddy Pharkas: subop 12 is called while people are talking and subop 13 is called while the narrator's voice is heard)
* Menu mouse interaction - assigned to m_kiewitz
* Adapt the CMS driver to support earlier SCI versions too.
* MT-32 music driver - assigned to waltervn
* MT-32 is only using 10 channels (1-10), but our music code always assumes 16 channels leading to lost notes
* GM instrument mapping
* Rewrite the MIDI parser (which is using ticks) so that it uses byte offsets instead


=== Current regressions ===
=== Mac-specific ===
* LSL5: Mud wrestling doesnt start anymore, lana thinks that you didnt jump in - worked before
* Support for the SCI1 Mac version of kGetEvent
* Support for the SCI1 Mac version of kNewWindow
* Support for SCI1.1 partially hardcoded icon bar
** Images stored in PICT resources (tags: 'IBIN' (not-selected), 'IBIS' (selected), 'PICT' (inventory image))
** kPlatform subop 4 is called various times for the icon bar. One call sets up the scripts for the icons, etc.


= Bugs =
== SCI2-SCI3 missing features ==
== Known bugs ==
=== Castle of Dr. Brain ===
* computer room - right side puzzle
** After finishing, a sound is played that contains a digital channel, which has data + 4 != 0
* computer trivia
** Scrolling text doesnt work right (seems to be a VM issue)


=== Conquest of the Longbow ===
* Support for Macintosh versions of games
* In chapter 1, room 110, when Robin meets Little John at the lookout, a signal is sent to a non-object when Little John stops walking. Ignoring this selector modification freezes the screen (VM issue, this room never worked properly even in FreeSCI)


=== Freddy Pharkas ===
= Known bugs =
* Priority issues (e.g. in the options menu)


=== Hero's Quest (Quest for Glory 1 EGA) ===
== SCI0-SCI1.1 known bugs ==
* Graphics?!
** on character customization screen the percentage bar isnt shown


=== Jones ===
=== Graphics ===
* Graphics
** corruption on difficulty setting menu when challenging jones (ega/cd)
** statistics are broken (list control), dollar amounts missing (ega/cd)
** speech bubbles are drawn under the faces of people, instead of on top


=== King's Quest 5 ===
=== Sound ===
* Graphic
* The Tandy/PCjr driver needs more work
** At least in the desert when getting the staff grahams head is where his feet should be and his body is completely gone. Fixes itself as soon as he walks
* Castle Dr. Brain: In the programming puzzle room 280 the music is using one bad instrument
* Castle Dr. Brain: in the first room, some notes aren't played during the memory puzzle
* KQ5: End credits song is broken (resource 699). we are now filtering out invalid channels, but at the end of the song it plays back garbled somewhat. This video proves that it worked fully in original sci http://www.youtube.com/watch?v=GerEZ68YSzc - the resource is uncompressed inside resource.000 right at the end, this is definitely no decompression or resource size error
* LSL6: when saving when music is fading out (and restoring) the music will stay on that level and keep playing - we should check for fading and modify selectors to the endpoint


=== King's Quest 6 ===
=== VM ===
* Graphics
* LSL6: =NOT OUR BUG= sometimes the tram does not stop. This is a game script issue and not an engine one, but we should still figure out what goes wrong and fix it. To make it work -> see SCI bugs
** Flickering right in the first room when discovering the chest - caused by 2 lists that are being used on kAnimate, where one contains Alexander - it seems as if the flickering is caused by Alexander not being scaled, so a bigger rect is bitsShow()n. This rect overlaps with the ring animation, that's why it flickers. Should be fixed as soon scaling is implemented.
* PQ2: Room 26 isn't exitable - happens if you warp from inside the car at the start into room 26 - happened to me during the game although I'm not unable to reproduce it anymore. I guess I did something differently last time.
* QFG1 EGA: when buying something from the shop and the merchant is reading at that time, it will get bought twice
* QFG1 VGA: ending music isn't played at all. no sound calls are done, so I guess it's VM.


=== Larry 1 (Remake) ===
=== Known Warnings ===
* Reason unknown
* KQ5: Warning - kStrAt with offset 0xFFFF is called when graham gets the staff, also happens when getting the heart in the forest
** bartender animation when ordering a whiskey and the rat animation in the room with the drunken man are much too fast
* KQ5: Warning - try to peek at 0:0, 0:2 and 0:4 most of the time when dialogue windows appear
* Graphics (newgui only)
* LSL5: Warning - Invalid character in kReadNumber input (happens right at the start of the game)
** doors at the casino wont open. Seems to be an off-by-two error. A workaround is in place till the actual issue is found
* LSL6: WARNING: Attempt to read character from non-raw data! during end credits
* Remarks
* PQ2: WARNING: ADLIB: Invalid patch 124 requested!
** Priority issues in bathroom right at the start are also in original interpreter and not caused by us
* PQ3: During End Sequence, WARNING: kDoSound(setHold): Slot not found (0026:0fc4)! and WARNING: Unhandled SCI MIDI command 0x51 (parameter 1)!
* QFG1EGA: Invalid adlib patch 1xx used, occurs several times in the game
* SQ4: During intro - "WARNING: Unhandled SCI MIDI command 0x0 (parameter 0)!"


=== Larry 5 ===
== SCI2-SCI3 known bugs ==
* VM
** one screen nearly at the end with text disappears far too quick
* Graphics
** tramps casino: when woman asks about random number, cursor of textedit control is not correctly positioned (i am not able to replicate the issue though there are still problems with textedit control that will get fixed)
** Window placement is not 100% like sierra sci. it seems this only happens on windows with shadows. In sierra sci shadows are shown so actually the window is moved one up. Under our engine the shadow is not there, because the window is outside screen
* Remarks
** during first flight Larry dreams about Patti: she is playing the piano. Strangely this isnt animated, but it is if you save/reload your game. Seems to be a script issue, because original sci does the same thing
** tramps casino: during mud wrestling the script is using cycle counts. Currently its playable but a bit difficult to do cause its quite fast (not a bug but ffs when changing speed throttler)
** almost at the end during last flight, one textbox in the patti conversation gets overdrawn with patti. Happens only in german version and I guess this also happens with original interpreter. I am unable to test this easily because I would need to play through the whole game again


=== Space Quest 1 (Remake, VGA) ===
* Please check the [https://bugs.scummvm.org/report/12 bug tracker]
* Graphics
** Ulence Flats - when entering the ship, another ship appears. We see this ship shortly completely and then it starts appearing, probably related to kAssertPalette()
** Some effects missing, definitely non-implemented kAssertPalette()/kPalVary (example: when destroying lasers on kerona)
 
=== Additional notes ===
* Show priority and control map in original interpreter (SCI1/SCI11)
** search for A9 06 00 74 05 in original interpreter, replace with all 90h (NOP)
 
== Bugs from freesci, probably some of them are already solved ==
=== Quest for Glory ===
* The FileSelector (SCI) class used in the import screens in QfG2 and QfG3 has a 'text' pointer, and 'cursor' and 'lsTop'/'topString' pointers that should point to inside 'text'. However, in FileSelector::readFiles, 'text' is freed and reallocated, causing the other pointers to sometimes become invalid.
 
=== Longbow ===
* The sound of the bow in the opening screen is repeated a number of times
* After leaving the cave and the conversation that follows, a list is not sane anymore (perhaps it's related to pathfinding? There's a relevant warning just before this occurs)
 
=== King's Quest 1 ===
* After typing a wrong word, the game attempts to open a file with an empty name
 
== Bugs observed from FreeSCI ==
check [http://www-plan.cs.colorado.edu/freesci/darcs/glutton/BUGS-IN-GAMES here]
 
=== Codename: Iceman ===
* displays the warning "NodeValue() on a NULL pointer attempted" at numerous points during the map table scene
 
=== Quest for Glory 1 ===
* displays the warning "List node at x is not sane anymore" when the dinosaur snaps at you during the intro
 
=== Space Quest 3 ===
* calls functions from a script which has already been unloaded when Roger climbs up the ladder from the rat cave (the place containing the reactor at the very beginning of the game) - NOTE: This should be fixed in ScummVM, to the best of my knowledge
 
=== PQ2 ===
* calls CanBeHere() with a disposed object in the clip list when Keith enters the car
 
=== LSL2 ===
* tries to allocate zero bytes of memory when entering Molto Lira.
 
=== QG1 ===
* accesses property 0xf02 in a couple of cases
 
=== SQ1 ===
* calls UnLoad() with only one argument when exiting the Ulence Flats bar
=== SQ4/Floppy ===
* will set the speed to maximum if you access the control panel without tweaking the speed slider. Either tweak the speed slider, or use function keys to access the control panel functionality

Latest revision as of 01:49, 24 April 2017

TODO List
Name SCI Engine TODO
Technical Contact(s) SCI Engine Team
Subsystem Engine

Missing features

SCI0-SCI1.1 missing features

Sound

  • Voice mapping. This is used by all SCI games to assign hardware voices to midi channels in the AdLib and FB-01 drivers. So, for example, if a song tries to play more than 9 notes at the same time, we need to stop an earlier note. We currently do this round-robin, while we should be respecting voice assignments. If a game sets 3 voices for piano, we should not take one away unless 4 piano notes are played, then it's OK to stop one piano note. Currently if a song were to use 5 notes at once we would just play them all, even if that midi channel was set to use 2 voices, and those 3 extra notes might stop more important notes, e.g. in the melody. This has been implemented for SCI0, but it's not hooked up to AdLib at the moment. Also we're not sure if the initial voice assignments are in the MIDI stream in SCI1 (they're not in SCI0). Of course, channel remapping has an effect on this too
  • Improve Amiga (SCI01/1) and Mac sound support (same format)
  • kDoAudio subops 12 and 13 (used in Freddy Pharkas: subop 12 is called while people are talking and subop 13 is called while the narrator's voice is heard)
  • Adapt the CMS driver to support earlier SCI versions too.
  • MT-32 is only using 10 channels (1-10), but our music code always assumes 16 channels leading to lost notes
  • Rewrite the MIDI parser (which is using ticks) so that it uses byte offsets instead

Mac-specific

  • Support for the SCI1 Mac version of kGetEvent
  • Support for the SCI1 Mac version of kNewWindow
  • Support for SCI1.1 partially hardcoded icon bar
    • Images stored in PICT resources (tags: 'IBIN' (not-selected), 'IBIS' (selected), 'PICT' (inventory image))
    • kPlatform subop 4 is called various times for the icon bar. One call sets up the scripts for the icons, etc.

SCI2-SCI3 missing features

  • Support for Macintosh versions of games

Known bugs

SCI0-SCI1.1 known bugs

Graphics

Sound

  • The Tandy/PCjr driver needs more work
  • Castle Dr. Brain: In the programming puzzle room 280 the music is using one bad instrument
  • Castle Dr. Brain: in the first room, some notes aren't played during the memory puzzle
  • KQ5: End credits song is broken (resource 699). we are now filtering out invalid channels, but at the end of the song it plays back garbled somewhat. This video proves that it worked fully in original sci http://www.youtube.com/watch?v=GerEZ68YSzc - the resource is uncompressed inside resource.000 right at the end, this is definitely no decompression or resource size error
  • LSL6: when saving when music is fading out (and restoring) the music will stay on that level and keep playing - we should check for fading and modify selectors to the endpoint

VM

  • LSL6: =NOT OUR BUG= sometimes the tram does not stop. This is a game script issue and not an engine one, but we should still figure out what goes wrong and fix it. To make it work -> see SCI bugs
  • PQ2: Room 26 isn't exitable - happens if you warp from inside the car at the start into room 26 - happened to me during the game although I'm not unable to reproduce it anymore. I guess I did something differently last time.
  • QFG1 EGA: when buying something from the shop and the merchant is reading at that time, it will get bought twice
  • QFG1 VGA: ending music isn't played at all. no sound calls are done, so I guess it's VM.

Known Warnings

  • KQ5: Warning - kStrAt with offset 0xFFFF is called when graham gets the staff, also happens when getting the heart in the forest
  • KQ5: Warning - try to peek at 0:0, 0:2 and 0:4 most of the time when dialogue windows appear
  • LSL5: Warning - Invalid character in kReadNumber input (happens right at the start of the game)
  • LSL6: WARNING: Attempt to read character from non-raw data! during end credits
  • PQ2: WARNING: ADLIB: Invalid patch 124 requested!
  • PQ3: During End Sequence, WARNING: kDoSound(setHold): Slot not found (0026:0fc4)! and WARNING: Unhandled SCI MIDI command 0x51 (parameter 1)!
  • QFG1EGA: Invalid adlib patch 1xx used, occurs several times in the game
  • SQ4: During intro - "WARNING: Unhandled SCI MIDI command 0x0 (parameter 0)!"

SCI2-SCI3 known bugs