aboutsummaryrefslogtreecommitdiff
path: root/queen/queen.cpp
AgeCommit message (Collapse)Author
2004-12-19Fixed regression in queen floppy version. Before doing any speech/texts ↵Gregory Montoir
synchronization, we check the voice sfx exists. See also patch #1087870 svn-id: r16131
2004-12-17Even more paranoia, since the older ScummVM releases allowed speech_mute to ↵Joost Peters
be false for floppy versions. svn-id: r16101
2004-12-17Simplify check.Joost Peters
svn-id: r16099
2004-12-17Mute speech for floppy version as well.Joost Peters
This fixes the text speed for the floppy version after the recent Talk/Speech behaviour changes. svn-id: r16095
2004-12-09Pass subdirectories to gamedetector functionsRobert Göffringmann
svn-id: r16002
2004-12-03Minor cleanup, one more time.Gregory Montoir
Fixed a crash when returning to the launcher at the end of the game. I played FOTAQ (french) from the beginning to the end some hours ago, I haven't encountered any special problems/glitches (except the one mentionned above). svn-id: r15979
2004-12-02simplified palette handlingGregory Montoir
svn-id: r15971
2004-12-02enabled autosaveGregory Montoir
svn-id: r15970
2004-12-02Moved MidiDriver creation code into the MidiDriver class (as static ↵Max Horn
methods), same for some other MIDI related stuff svn-id: r15968
2004-11-30enabled savegame loading on startupGregory Montoir
svn-id: r15964
2004-11-28Fingolfin, I see what you mean about the volume control mess :)Jerome Fisher
This fixes Adlib playback, which was previously always mixed at volume 0. svn-id: r15956
2004-11-28- MIDI messages are now pre-processed and go through normal channel ↵Jerome Fisher
allocation, rather than being passed through directly. svn-id: r15951
2004-11-27Moved Engine::getSavePath() to class SaveFileManager; removed the ↵Max Horn
'directory' parameter from SaveFileManager::openSavefile and listSavefiles (they always use getSavePath() now, which is what we did anyway) svn-id: r15901
2004-11-24Fix a`ll engines. They work, though current fix is just temporary.Eugene Sandulenko
There are plans to add some brains to GameDetector class, which will let us avoid passing detector to init() method. svn-id: r15873
2004-11-23cleanup, follow code conventionsGregory Montoir
svn-id: r15872
2004-11-23sync queen engine with latest OSystem changesGregory Montoir
svn-id: r15871
2004-11-23Added Engine::init() method; added return value to Engine::go()Max Horn
svn-id: r15865
2004-11-20Removing walkthrough stuff again (talked to aquadran about this, he had no ↵Max Horn
objections) svn-id: r15849
2004-11-19added walkthroughPaweł Kołodziejski
svn-id: r15835
2004-11-15change engine initialization as suggested on -develGregory Montoir
svn-id: r15822
2004-10-22Support MT-32 emu.Eugene Sandulenko
svn-id: r15657
2004-10-10make queen engine returning to the launcher when finished (next step: plug ↵Gregory Montoir
all the memory leaks, mainly in Logic class) svn-id: r15511
2004-08-24Rewrote the way strings are extracting from the datafiles, now it should be ↵Gregory Montoir
'alignment safe'. Maybe it will fix bugs #923570 and #1013886, too. svn-id: r14734
2004-08-06cleanup and simplify Resource class a bit moreGregory Montoir
svn-id: r14488
2004-08-06minor cleanupGregory Montoir
svn-id: r14484
2004-08-05forgot thatGregory Montoir
svn-id: r14473
2004-08-05simplified some codeGregory Montoir
svn-id: r14472
2004-06-25Added Engine::_saveFileMan; thus was able to get rid of auto_ptr usage againMax Horn
svn-id: r14058
2004-03-09Enable music volume slider in JournalJoost Peters
svn-id: r13222
2004-02-24the OSystem changes we discussed on the ML (note: renaming of the existing ↵Max Horn
OSystem API is not yet finished); porters will have to fix their ports to get them to compile again svn-id: r13036
2004-02-05renamed (Const)Iterator to (const_)iterator; changed size() to return an uintMax Horn
svn-id: r12722
2004-02-01Match new[] with delete[]Joost Peters
svn-id: r12698
2004-01-28Interview has no speech iether.Travis Howell
svn-id: r12655
2004-01-27Allow using a real MT-32 (can someone with one please test this?)Joost Peters
svn-id: r12641
2004-01-25demos never have speechJoost Peters
svn-id: r12591
2004-01-25The Floppy version has speech in the intro. (it doesn't hurt if speechToggle ↵Joost Peters
is set for the floppy version) svn-id: r12588
2004-01-15got rid of timer stuff to handle display syncGregory Montoir
svn-id: r12416
2004-01-13- wrong sentence was spoken when Joe was trying to 'pick up' a personGregory Montoir
- clear command before switching rooms - clear texts at the end of cutaway (fix minor glitch in interview intro) svn-id: r12361
2004-01-12New save/load code, this *breaks* compatiblity with the previousGregory Montoir
savefile format. Use the 'qsc' tool to convert your old files (http://0x.7fc1.org/fotaq/qsc.[cpp|exe]). svn-id: r12339
2004-01-11cleanupGregory Montoir
svn-id: r12318
2004-01-09renamed some methods and moved some code to DisplayGregory Montoir
svn-id: r12276
2004-01-08- new Grid class to handle all zones / areas stuffGregory Montoir
- adapted Logic/Walk code to use it svn-id: r12250
2004-01-08mostly cleanup :Gregory Montoir
- moved main update() method to QueenEngine - merged update() & checkPlayer() - added a method in Logic class to handle the CUTAWAY_SPECIAL stuff - Journal remembers last seen page - no need to call loadPanel() to restore panel palette, use palSetPanel() instead svn-id: r12240
2004-01-06- enabled debugger in QueenEngine::errorStringGregory Montoir
- initialise Cutaway::_personCount* when the Cutaway starts - minor tweaks in BankManager svn-id: r12185
2004-01-06updated copyright noticeMax Horn
svn-id: r12176
2004-01-05- enabled debugger in QueenEngine::errorStringGregory Montoir
- initialise Cutaway::_personCount* when the Cutaway starts - minor tweaks in BankManager svn-id: r12163
2004-01-05added a class to manage banks, Queen::Graphics cleanupGregory Montoir
svn-id: r12157
2004-01-04- added code to only redraw changed blocks in order to avoid full screen refreshGregory Montoir
- minor code cleanup in Graphics/Display svn-id: r12147
2004-01-04renamed global var _debugLevel to g_debugLevel; let Engine constructor init ↵Max Horn
it (this way all engines get it for free, allows further cleanup); removed some useless/duplicate member vars in SwordEngine svn-id: r12134
2004-01-03Allow queen to use adlib driver as well (that was surprisingly easy :))Joost Peters
svn-id: r12100