aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-01-31NEWS: Mention AGI rewriteEugene Sandulenko
2016-01-31Merge pull request #654 from m-kiewitz/masterEugene Sandulenko
AGI: graphics rewrite + cleanup
2016-01-31AGI: vol system setting gets sent to scriptsMartin Kiewitz
Volume changes in ScummVM system menu now gets sent to scripts as well.
2016-01-31AGI: properly implement volume control + syncMartin Kiewitz
Original code did assume that AGI volume level is 0-15 (0 for silence, 15 for maximum volume). It actually is the other way. 0 is maximum, 15 is silence. Fixed that. Also implemented sync with ScummVM settings dialog. In case "mute" is enabled by the user, any volume changes done by scripts are ignored. Fixes Manhunter 1 Apple IIgs not getting sound anymore since the VM Var cleanup (the script volume change by the scripts didn't reach us before)
2016-01-31AGI: remove timer hack, implement in game timerMartin Kiewitz
in game timer is now updated, when scripts read in game timer VM variables and during main loop. ScummVM total play time feature is used for it. Game cycle syncing is done at the same time.
2016-01-31AGI: adjust getFlag(), setVar() and getVar()Martin Kiewitz
2016-01-31SHERLOCK: SS: fix another warningMartin Kiewitz
2016-01-31SHERLOCK: SS: fix warningsMartin Kiewitz
thanks to eriktorbjorn for pointing those out
2016-01-31AGI: getflag/setflag/etc. cleanupMartin Kiewitz
renamed getflag() to getFlag() renamed setflag() to setFlag() renamed flipflag() to flipFlag() preagi: renamed setFlag for this engine to setWinnieFlag
2016-01-31AGI: VM Var code cleanupMartin Kiewitz
Don't access variables directly, but through method Shouldn't include any functional differences Also changed several hardcoded values to the corresponding enums.
2016-01-31AGI: revert "motion type check in objectstop AGI3"Martin Kiewitz
Caused issues with mouse support (that AGI on DOS never had). e.g. KQ1/KQ2 on end of mouse click move Graham automatically falls into water. The check was added in AGI3 only, but maybe non-DOS interpreters had it before. Or maybe mouse support was actually implemented differently. Needs more investigating.
2016-01-31AGI: rename VGA font to PC BIOS fontMartin Kiewitz
probably more accurate
2016-01-31AGI: added/improved font debug outputMartin Kiewitz
2016-01-31AGI: hardcoded value replaced with VM_VAR_SECONDSMartin Kiewitz
2016-01-31AGI: font cleanupMartin Kiewitz
We now only offer the original VGA font (a few characters were modified) and overwrite the extended set range with a Russian set, when needed.
2016-01-31AGI: change key -> direction handlingMartin Kiewitz
After the VM Var 6 <-> ego direction change, this is required Also our original behavior was inaccurate in that part as well.
2016-01-31AGI: motion type check in objectstop was AGI3 onlyMartin Kiewitz
verified via disassembly
2016-01-31AGI: copying between var + ego screen obj fixedMartin Kiewitz
We copied the wrong way see cycle.cpp This fixes the fan game 13th disciple. bug #3563 Also cleanup playercontrol variable is now a boolean
2016-01-30AGI: Ego motion type change on newroom only agi3Martin Kiewitz
Ego motion type change on newRoom() was only done for AGI3
2016-01-30AGI: fix agi256 view decompressionMartin Kiewitz
+ add extra security checks
2016-01-30SHERLOCK: SS: don't setup font for non-play demoMartin Kiewitz
Do not setup font for non-playable demo Non-playable demo does not have any font at all Fixes non-playable demo not working
2016-01-30SHERLOCK: SS: button code cleanupMartin Kiewitz
Change the default for the optional parameter "textContainsHotkey" to true, because it's needed almost all of the time.
2016-01-30SHERLOCK: SS: window hotkeys now multilingualMartin Kiewitz
2016-01-30SHERLOCK: SS: make main buttons multilingualMartin Kiewitz
Also fix graphical issue with "press any key to continue" text
2016-01-30SHERLOCK: SS: default to look in inventoryMartin Kiewitz
original interpreter did that too
2016-01-30SHERLOCK: SS: fix inventory button gfx glitchMartin Kiewitz
2016-01-30SHERLOCK: SS: make journal hotkeys multilingualMartin Kiewitz
2016-01-30SHERLOCK: SS: make inventory hotkeys multilingualMartin Kiewitz
2016-01-30SHERLOCK: SS: Make load/save menu multilingualMartin Kiewitz
Also change behavior of makeButton/buttonPrint to directly remove a hotkey-prefix, in case it was passed.
2016-01-30SHERLOCK: SS: make settings multilingualMartin Kiewitz
Also make it possible to somewhat easily have hotkeys within the button text itself and not just having to use the very first button text character as hotkey.
2016-01-30AMIGAOS: Add scripts for README conversionEugene Sandulenko
2016-01-30Merge pull request #655 from raziel-/patch-1Eugene Sandulenko
AMIGAOS: Update amigaos.mk to automatically create an AmigaGuide file…
2016-01-29SHERLOCK: RT: Simplify ascii char checks, since we don't support accentsPaul Gilbert
2016-01-30AGI: Fix some word parsing issuesMartin Kiewitz
- Keep a non-lowercased user input copy for copying out words - Check for user input word end after matching a dictionary word - Fix detection of "a" and "i" words
2016-01-30AGI: fix keyboard input code for keycodesMartin Kiewitz
Reset key, when no valid .ascii was received.
2016-01-30AGI: do not allow load/save while in inner loopMartin Kiewitz
load/saving via ScummVM menu Mixed up mother goose has an endless script loop, when no user name was entered, which means restoring while in there would result in us staying in the inner loop until the user entered something
2016-01-30AGI: fix F7-F10 keysMartin Kiewitz
2016-01-30AGI: fix amiga mouse cursor commentMartin Kiewitz
2016-01-30AMIGAOS: amigaos.mk - Revert rx command lineHubert Maier
rx doesn't find the program if "./" or ${srcdir} is kept in front. Probably a limitation of abc-shell...or rx
2016-01-30AMIGAOS: amigaos.mk path fixesHubert Maier
2016-01-29SCI: add code to make numpad cursor keys work againMartin Kiewitz
When the users presses keys on the numpad, we get digits in .ascii even when Num-Lock is not enabled. This caused numpad cursor keys not working anymore. Imo we should only get .ascii in those cases, when Num-Lock is enabled.
2016-01-29AGI: add hack to make numpad cursor keys workMartin Kiewitz
should probably get fixed at some point in backend
2016-01-29AGI: font loader support for Atari ST fontMartin Kiewitz
2016-01-29AMIGAOS: Fix the exe paths and delete the guide after installingHubert Maier
2016-01-29AMIGAOS: Update amigaos.mk to automatically create an AmigaGuide file from ↵Hubert Maier
README
2016-01-29AGI: overwrite save restore dialog font characterMartin Kiewitz
Overwrite it, to make sure that original save/restore dialogs look properly.
2016-01-29AGI: support for user-supplied font-fileMartin Kiewitz
agi-font-atarist.bin -> used for platform Atari ST agi-font-amiga.bin -> used for platform Amiga agi-font-dos.bin -> used for platform DOS agi-font-fanmade.bin -> used for fan-made games That way users can get a more accurate font.
2016-01-29AGI: new font class createdMartin Kiewitz
moved font stuff into GfxFont class removed Mickey Mouse font data (is loaded from mickey.exe)
2016-01-29AGI: use Common::RenderMode instead of its ownMartin Kiewitz
AppleIIgs + Atari ST weren't available back then in the enum. They now are, so I can use the Common one.
2016-01-29AGI: remove commented out code from CmdSetSimple()Martin Kiewitz
should have been removed already.