Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-12-06 | Fixed compile errors (for me at least). Still plenty of warnings, though. | Torbjörn Andersson | |
svn-id: r24809 | |||
2006-12-06 | first phase of objectisation of agi engine | Paweł Kołodziejski | |
svn-id: r24808 | |||
2006-12-06 | Enable yet unfinished IIgs sound, but this prevents IIgs games from crashing. | Eugene Sandulenko | |
svn-id: r24807 | |||
2006-11-23 | Only bring up the predictive dialog on left clicks, not just any event. (I.e. | Torbjörn Andersson | |
now we can still type commands, even if the mouse cursor is hovering over the text input area.) I hope this is the desired behaviour. svn-id: r24774 | |||
2006-11-22 | Don't crash in loadDict() if pred.txt is missing. | Torbjörn Andersson | |
svn-id: r24761 | |||
2006-11-18 | Specify proper copyright line for AGI engine. | Eugene Sandulenko | |
svn-id: r24737 | |||
2006-11-12 | Since we now generate warnings/messages for engine instantiation failures in ↵ | Max Horn | |
a central place, get rid of such messages printed by engines svn-id: r24686 | |||
2006-11-07 | fix (un)signedness warnings | Max Horn | |
svn-id: r24651 | |||
2006-11-06 | Predictive input for AGI engine. To Do: | Eugene Sandulenko | |
- Multitap - scummvm.ini-based dictionary path - speedup dictionary loading svn-id: r24635 | |||
2006-10-15 | Added some more const keywords | Max Horn | |
svn-id: r24330 | |||
2006-09-23 | Moved base/engine.cpp and .h to engines/ (main motivation: helps untangle ↵ | Max Horn | |
the linker dependency graph). Porters will have to update project files svn-id: r23974 | |||
2006-09-16 | Overhaul of the debugger code | Max Horn | |
* Moved Common::Debuggger to GUI::Debugger (mainly to satisfy linker restrictions) * Change the base Debugger class to *not* be a template class anymore; instead, a thin (template based) wrapper class is used to hook up debugger commands * Removed duplicate Cmd_Exit and Cmd_Help methods in favor of a single version of each in GUI::Debugger * New Cmd_Help doesn't word wrap after 39/78 chars, but rather queries the console to determine when to wrap * Debugger::preEnter and postEnter aren't pure virtual anymore svn-id: r23890 | |||
2006-09-16 | Reduce code duplication | Max Horn | |
svn-id: r23888 | |||
2006-09-09 | This printf isnot supportedon PalmOS 68k, taken from an old port of Sarien | Chris Apers | |
svn-id: r23841 | |||
2006-09-07 | Don't create a second Menu object unless the first one has been deleted. This | Torbjörn Andersson | |
seems to fix bug #1553513 ("AGI: Crash after restart"). svn-id: r23833 | |||
2006-09-04 | This could possibly fix bug #1551524 ("MAXOSX: Cannot Backspace in AGI Games"). | Torbjörn Andersson | |
We have a similar backspace handling in several other engines. svn-id: r23827 | |||
2006-08-26 | Fix bug #1544810 - AGI: Launching undefined target 'agi' shows a blank screen | Travis Howell | |
svn-id: r23754 | |||
2006-07-31 | * Added copyright string to all engine plugins | Max Horn | |
* Modified about dialog to list all available plugins with their resp. copyright * Modified about dialog credits to show the GPL last (like movie end credits do with their legal text, too) svn-id: r23645 | |||
2006-07-22 | Using FilesystemNode::name instead of FilesystemNode::displayName in all ↵ | Johannes Schickel | |
game detectors. svn-id: r23558 | |||
2006-06-26 | Patch #1512689: "Fixing AGI Game Detection" | Eugene Sandulenko | |
svn-id: r23315 | |||
2006-06-24 | Added some FIXME comments to AGI engine | Max Horn | |
svn-id: r23285 | |||
2006-06-24 | cleanup | Max Horn | |
svn-id: r23280 | |||
2006-06-24 | Renamed class Timer to TimerManager (the old name was somewhat ↵ | Max Horn | |
incorrect/confusing) svn-id: r23278 | |||
2006-06-24 | * Renamed config.mak to config.mk | Max Horn | |
* Renamed common.rules to rules.mk * Removed explicit declaration of MODULE_DIRS in various spots (instead we let rules.mk compute it) svn-id: r23275 | |||
2006-06-24 | Move backends/fs/fs.h and .cpp to common/fs/fs.h and .cpp | Max Horn | |
Rationale: backend implementations belong to backends/, but portable APIs meant to be used by high level code is for common / sound / graphics / ... (compare also with backends/midi vs. sound/mididrv.h) svn-id: r23274 | |||
2006-06-10 | Pop AGIs text.cpp into a class, for later cleanup. | James Brown | |
svn-id: r23011 | |||
2006-06-06 | For the masochists out there,i it is now possible to select the PC Speaker | Torbjörn Andersson | |
music driver. There are some other emulation modes, but I'm not sure how they should be mapped to from our music drivers. svn-id: r22952 | |||
2006-06-03 | Split ID string into several small strings for systems not coping with large ↵ | Lars Persson | |
string constants. svn-id: r22856 | |||
2006-06-01 | Fix keyboard input. Now it is possible to use key modifiers freely. | Eugene Sandulenko | |
svn-id: r22818 | |||
2006-05-31 | Don't let blocking rectangle extend below baseline (see Sarien bugs 810331 ↵ | Willem Jan Palenstijn | |
and 925074) svn-id: r22808 | |||
2006-05-31 | Fixed many const related warnings | Max Horn | |
svn-id: r22794 | |||
2006-05-30 | cleanup | Willem Jan Palenstijn | |
svn-id: r22783 | |||
2006-05-30 | objectify AGI sprite.h/cpp | Chris Apers | |
svn-id: r22781 | |||
2006-05-29 | objectify AGI menu.h/cpp | Willem Jan Palenstijn | |
svn-id: r22757 | |||
2006-05-28 | Apparently some games use the F10 key, which makes it a poor choice for opening | Torbjörn Andersson | |
the debug console. Ctrl-D may be just as bad. Does anyone know for sure? svn-id: r22711 | |||
2006-05-28 | Allow key pad navigation. | Torbjörn Andersson | |
svn-id: r22706 | |||
2006-05-26 | replace agi/list.h by Common::List; cleanup | Willem Jan Palenstijn | |
svn-id: r22666 | |||
2006-05-26 | If a game ends by natural causes, unload_object() will be called twice. Make | Torbjörn Andersson | |
sure it doesn't try to free the same memory twice. svn-id: r22659 | |||
2006-05-26 | replace agi/list.h by Common::List | Willem Jan Palenstijn | |
svn-id: r22658 | |||
2006-05-25 | remove superfluous struct keywords | Willem Jan Palenstijn | |
svn-id: r22640 | |||
2006-05-25 | Set and show/hide mouse cursors through a "cursor manager" (analogous to the | Torbjörn Andersson | |
recently added (cursor) palette manager) so that the cursor can be properly restored after returning from the GUI. If there's any C++ magic that can keep the backend functions from being called by anything else than these managing classes, that would probably be a good idea. Also, since the cursor manager keeps a copy of the cursor image, perhaps there are at least some backends that will no longer need to? svn-id: r22639 | |||
2006-05-25 | add and use is_ego_view() function | Willem Jan Palenstijn | |
svn-id: r22638 | |||
2006-05-25 | - Fix typo in debug level Scripts. | Eugene Sandulenko | |
- Show scripts execution if requested svn-id: r22637 | |||
2006-05-25 | Minor cleanup and formatting | Eugene Sandulenko | |
svn-id: r22634 | |||
2006-05-25 | Made CGA rendering, EGA/VGA palette selectable via render_mode | Eugene Sandulenko | |
svn-id: r22632 | |||
2006-05-25 | fix out-of-bounds array access | Willem Jan Palenstijn | |
svn-id: r22627 | |||
2006-05-25 | fixed regression after conversion console | Paweł Kołodziejski | |
svn-id: r22626 | |||
2006-05-24 | Fixed warning. | Torbjörn Andersson | |
svn-id: r22620 | |||
2006-05-24 | Fix crash. Console should be created after graphics init | Eugene Sandulenko | |
svn-id: r22619 | |||
2006-05-24 | converted to scummvm console style | Paweł Kołodziejski | |
svn-id: r22618 |