Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-05-23 | Reworked the DISPATCH current action to support NPC schedules like the ↵ | Paul Gilbert | |
original game does. Additionally added basic implementation of necessary support routines svn-id: r22582 | |||
2006-05-23 | Added a new outer loop for what will later allow the restarting of the game. ↵ | Paul Gilbert | |
Also added the animation of the Skorl catching the player if the game state indicates it has happened svn-id: r22581 | |||
2006-05-23 | Added the loading of NPC schedules | Paul Gilbert | |
svn-id: r22580 | |||
2006-05-23 | Added new resource entries for NPC schedules, the Skorl catching animation, ↵ | Paul Gilbert | |
and miscellaneous svn-id: r22579 | |||
2006-05-23 | Added support structures for NPC schedules | Paul Gilbert | |
svn-id: r22578 | |||
2006-05-23 | Added some extra safety checks. Also contains some started work on ↵ | Paul Gilbert | |
redesigning the display of the current action svn-id: r22577 | |||
2006-05-23 | Added script methods for manipulating current action support data and a stub ↵ | Paul Gilbert | |
for a script method that plays background music svn-id: r22576 | |||
2006-05-23 | Update details for Russian translations | Travis Howell | |
svn-id: r22574 | |||
2006-05-23 | Cleanup. | Torbjörn Andersson | |
svn-id: r22573 | |||
2006-05-22 | Fix debug messages. | Torbjörn Andersson | |
svn-id: r22570 | |||
2006-05-22 | Cleanup. | Torbjörn Andersson | |
svn-id: r22569 | |||
2006-05-21 | make printExpr, skipExpr accept both gob1 and gob2 expressions | Willem Jan Palenstijn | |
svn-id: r22568 | |||
2006-05-21 | Palette handling simplification, suggested by LordHoto. | Torbjörn Andersson | |
svn-id: r22567 | |||
2006-05-21 | If possible, sync the frame to getSoundElapsedTime(). | Torbjörn Andersson | |
svn-id: r22566 | |||
2006-05-21 | Grotesque hack to support the jung2.vqa movie. Either the VQA is less well | Torbjörn Andersson | |
understood than I hoped, or the offset to the first frame of the movie is completely out to lunch. Scan the file for the first VQFR chunk and use that offset instead. svn-id: r22565 | |||
2006-05-21 | The unsupported cutscene is called "jung", not "junk". (It just happens to look | Torbjörn Andersson | |
like junk at the moment.) svn-id: r22564 | |||
2006-05-21 | More VQA fixes: | Torbjörn Andersson | |
* Use setScreenPalette() rather than calling the backend directly. (As an extra bonus, the VQA player now only needs to store 3 bytes per colour.) * Hide the mouse cursor while the movie is playing. svn-id: r22563 | |||
2006-05-21 | Don't crash if drawMouse() is called before _mouseSurface is created. | Torbjörn Andersson | |
svn-id: r22562 | |||
2006-05-21 | At LordHoto's request... | Torbjörn Andersson | |
* The VQA move player isn't as similar to the WSA movie player as we first envisioned, so the VQA player no longer inherits from Movie. It does retain a fairly similar calling interface, though. * Use the Kyra engine's idea of screen dimensions, rather than the backend's. svn-id: r22561 | |||
2006-05-21 | Some minor VQA player fixes: | Torbjörn Andersson | |
* The playVQA() function now takes the name of the cutscene, rather than the filename. This is so that playVQA("FOO") will be able to play FOO0.VQA, FOO1.VQA or FOO2.VQA, depending on which movie size is selected. * The VQA player centers movies by default, so don't set the position to 0,0. * Ask the backend for screen dimensions (for centering the movie) rather than hard-coding them. svn-id: r22560 | |||
2006-05-21 | - allows kyra3 to exit again | Johannes Schickel | |
- implements language selection for kyra3 svn-id: r22559 | |||
2006-05-21 | - reworks quit handling (no _system->quit() anymore) | Johannes Schickel | |
- fixes some deinitalization problems svn-id: r22558 | |||
2006-05-21 | - adds debugC calls to KyraEngine_v3 functions | Johannes Schickel | |
- finishes KyraEngine_v3::gui_printString svn-id: r22557 | |||
2006-05-21 | Implements kyra3 main menu drawing. | Johannes Schickel | |
svn-id: r22556 | |||
2006-05-21 | Make it so that if the new cursor palette to be set has zero colours, the | Torbjörn Andersson | |
cursor palette is disabled. Also, when replacing a cursor palette, try to re-use the old palette buffer, as a minor optimization. (Not that these functions should need any optimization, but it's simple and shouldn't hurt.) svn-id: r22554 | |||
2006-05-21 | Added two lines for the Lure engine progress | Paul Gilbert | |
svn-id: r22553 | |||
2006-05-21 | Oops, I guess I never got around to fully implement replaceCursorPalette(). | Torbjörn Andersson | |
svn-id: r22552 | |||
2006-05-20 | fixed compilation when DISABLE_SCALERS | Paweł Kołodziejski | |
svn-id: r22551 | |||
2006-05-20 | fix compilation, that variable no longer exists | Paweł Kołodziejski | |
svn-id: r22550 | |||
2006-05-20 | Make the copy constructor / assignment operator of class File private to ↵ | Max Horn | |
prevent accidental copying of File objects svn-id: r22549 | |||
2006-05-20 | Pass values by-reference, using C++ references, and not by using pointers | Max Horn | |
svn-id: r22548 | |||
2006-05-20 | makes destructor of KyraEngine virtual | Johannes Schickel | |
svn-id: r22547 | |||
2006-05-20 | Apparently, passing a file handle directly to a function causes that file | Torbjörn Andersson | |
handle (a copy of the original?) to be destroyed at the end of the function, and that closes the internal file handle, even though we want it to stay open. Who am I to argue with how C++ handles its parameters? I've simply changed the functions to take pointers to file handles instead. Seems to fix crashes in the Macintosh resource extractor for me. svn-id: r22546 | |||
2006-05-20 | Forgot to set g_initialized to true. | Torbjörn Andersson | |
svn-id: r22544 | |||
2006-05-20 | After the GUI has finished, restore the old cursor palette (if any). For this | Torbjörn Andersson | |
to work, cursor palette now has to be set using the new "palette manager". See graphics/paletteman.cpp svn-id: r22543 | |||
2006-05-20 | Removed stray printf() from earlier commit. | Torbjörn Andersson | |
svn-id: r22542 | |||
2006-05-20 | Re-render the cursor when enabling/disabling cursor palette. Also, I don't | Torbjörn Andersson | |
think _cursorHasOwnPalette is needed any more, so I've removed it. svn-id: r22541 | |||
2006-05-20 | Set a cursor palette for the classic theme, as well. Otherwise we'll get the | Torbjörn Andersson | |
wrong colours in many games. svn-id: r22540 | |||
2006-05-20 | Our GUI uses the "cursor palette" feature, but the SDL backend did not use the | Torbjörn Andersson | |
cursor palette in overlay mode. Now it does, which fixes bug #1476666. The reason it worked at all before was that blitCursor() was called while still not in overlay mode. This, of course, means that the GUI can corrupt the in-game cursor palette. I don't have any game that uses this feature, so I don't know if it's properly restored again afterwards. But if it isn't, that should be fairly easy to fix. svn-id: r22539 | |||
2006-05-20 | Fixed cursor drawing in the classic theme. | Torbjörn Andersson | |
svn-id: r22538 | |||
2006-05-19 | Call the inherited handleScreenChanged() method, so that the widget can resize | Torbjörn Andersson | |
itself on scaler changes. svn-id: r22537 | |||
2006-05-19 | Call handleScreenChanged() *before* calling setEditString(). Otherwise | Torbjörn Andersson | |
_leftPadding may be wrong, or even undefined, when getEditRect() is called, which may cause ScummVM to trigger an "invalid rect" assertion. svn-id: r22536 | |||
2006-05-19 | Slighty modified patch #1491859: "Possible fix for recent cursor regressions" | Eugene Sandulenko | |
svn-id: r22535 | |||
2006-05-19 | Minor GUI tweaks | Eugene Sandulenko | |
svn-id: r22534 | |||
2006-05-19 | Using assert(_something->init()) is a bad idea. Assertions can be disabled. | Torbjörn Andersson | |
svn-id: r22533 | |||
2006-05-19 | Added some BS2 and Simon notes. | Torbjörn Andersson | |
svn-id: r22532 | |||
2006-05-19 | Added some FIXMEs to the kyra engine | Max Horn | |
svn-id: r22531 | |||
2006-05-19 | Fix warning | Max Horn | |
svn-id: r22530 | |||
2006-05-19 | Update HE version for another English version of socks | Travis Howell | |
svn-id: r22529 | |||
2006-05-18 | - load fonts for kyra3 | Johannes Schickel | |
- adds screen dim tables for kyra3 - adds palette / screen backup for the vqa player - small changes in the vqa player to use the Kyra::Screen functions - adds (partially implemented/unimplemented) main menu drawing/handling functions (nothing to see yet) svn-id: r22528 |