Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-01 | SCI: Fix a non-initialized variable in GfxMenu - CID 1003110 | Filippos Karapetis | |
2013-02-23 | ALL: Fix typo (existant->existent) | Willem Jan Palenstijn | |
2012-06-18 | SCI: Add setter/getter methods to reg_t's | Filippos Karapetis | |
No functionality change has been made with this commit. This avoids setting and getting the reg_t members directly, and is the basis of any future work on large SCI3 scripts (larger than 64KB) | |||
2012-03-13 | JANITORIAL: Replace (x ? false : true) by !(x). | Christoph Mallon | |
2011-06-20 | ALL: Remove trailing whitespaces | Max Horn | |
This tries to make our code a bit more compliant with our code formatting conventions. For future use, this is the command I used: git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/[ \t]*$//' | |||
2011-06-12 | SCI: Fixed bug #3295931 - "SCI: JONES: Disabled commands are available using ↵ | md5 | |
shortcuts" | |||
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-03-13 | SCI: Fixed the flashing icon bar in the Mac version of Castle of Dr. Brain | md5 | |
Thanks to waltervn for his work and help on this | |||
2011-03-09 | SCI: Save mouse position in SciEvent. | Johannes Schickel | |
Instead of querying the event manager for the current mouse cursor coordinates kGetEvent now uses the saved mouse positions, which will assure every event will be processed with the correct coordinates instead of the current ones. Various other functions using SciEvent directly were adapted too. This fixes cursor click positions for the WinCE backend. Thanks to wjp and waltervn for helping me with this. | |||
2011-03-08 | SCI: Remove unused argument to said | Willem Jan Palenstijn | |
2011-01-15 | SCI: Plugged 2 memory leaks, reported by digitall | Filippos Karapetis | |
- Plugged 2 memory leaks in the SCI0 menu code (the lists of menu and submenu entries) - Got rid of the _listCount variable svn-id: r55254 | |||
2011-01-08 | SCI: Some function renaming | Filippos Karapetis | |
Draw_Status -> DrawStatus Draw_String -> DrawString svn-id: r55178 | |||
2011-01-01 | SCI: debugC calls no longer require a debug level of 2 to show output | Filippos Karapetis | |
svn-id: r55086 | |||
2010-11-02 | SCI: Remove any use of printf | Max Horn | |
svn-id: r54037 | |||
2010-09-26 | SCI: adding separate status drawing code | Martin Kiewitz | |
now also draws "IV" in KQ4 correctly. This wasn't the case before because we reused the regular drawing code, which would see the 0xA ("IV") as linebreak save for backport svn-id: r52913 | |||
2010-07-29 | SCI: Ignore setAttribute() on any non-existent menu items | Matthew Hoops | |
This fixes two fan games: Al Pond 2 and Aquarius. The original interpreter did this as well. svn-id: r51477 | |||
2010-07-28 | SCI: Fix using the parser in SCI Fan Games | Matthew Hoops | |
Get a pointer to the said spec instead of copying to a buffer. The fan games use a said spec with size < 64. Also, make said() take a const pointer as the spec cannot change. Thanks to waltervn and wjp. svn-id: r51432 | |||
2010-07-28 | SCI: Added bug report numbers for all the recently fixed bugs | Filippos Karapetis | |
svn-id: r51407 | |||
2010-07-26 | SCI: Fixed bug #3034507, "PQ2 Demo: Non-existant menu item" | Filippos Karapetis | |
svn-id: r51294 | |||
2010-07-20 | SCI: fixed jones/ega/vga port issue | Martin Kiewitz | |
getPortById() error was caused by us remembering port when going interactive, restoring it and restoring it all the time afterwards as well svn-id: r51071 | |||
2010-07-10 | SCI: calculate widths for menu after switching to menuport, i guess this was ↵ | Martin Kiewitz | |
the reason why we sometimes had issues drawing parts of the menu (random issue) svn-id: r50784 | |||
2010-07-06 | SCI: fix regression of r50721 - pausing/resuming only on actual menu usage | Martin Kiewitz | |
svn-id: r50724 | |||
2010-06-29 | SCI: Rewrap more comments | Max Horn | |
svn-id: r50500 | |||
2010-06-23 | Moved the SelectorCache struct inside selector.h, where it belongs, and ↵ | Filippos Karapetis | |
fixed some header dependencies in the process svn-id: r50183 | |||
2010-06-17 | SCI: Rename sciEvent to SciEvent | Max Horn | |
svn-id: r49960 | |||
2010-06-17 | SCI: Moved the event code a little bit around. | Max Horn | |
* Move sleep() from EventManager to SciEngine * Rename EventManager methods: get -> getSciEvent, and getFromScummVM -> getScummVMEvent * Make scancode_rows static const * Turn altify & numlockify from EventManager methods into static functions (and comment out the currently unused numlockify) svn-id: r49959 | |||
2010-06-15 | SCI: SciGui/SciGui32 gone for good... | Martin Kiewitz | |
svn-id: r49860 | |||
2010-06-09 | Renamed the SciEvent class to EventManager, to separate it from the sciEvent ↵ | Filippos Karapetis | |
structure, and removed it from the engine state svn-id: r49534 | |||
2010-05-29 | Mass renaming of selector-related functions, and removed some defines which ↵ | Filippos Karapetis | |
were just cloaking functions with a different name - GET_SEL32 -> readSelector - GET_SEL32V -> readSelectorValue - PUT_SEL32 -> writeSelector - PUT_SEL32V -> writeSelectorValue Also, changed some selector-related function names and variables to CamelCase svn-id: r49317 | |||
2010-05-15 | SCI: handle TAB like Ctrl-I on menu key checking, sci0 also did it that way ↵ | Martin Kiewitz | |
- makes TAB work for inventory in iceman/qfg1ega svn-id: r49044 | |||
2010-05-15 | SCI: SCI_SCREEN_MASK_* now GFX_SCREEN_MASK_*, using enum - added new enum ↵ | Martin Kiewitz | |
GFX_SCREEN_UPSCALED_* svn-id: r49039 | |||
2010-04-25 | SCI: fix regression of r48659 - now calculating menu width and splitting ↵ | Martin Kiewitz | |
text on kernelDrawMenuBar() as well - fixes menu not displaying all the time in hoyle 1&2 svn-id: r48791 | |||
2010-04-20 | SCI: menu - handle right aligned "=" as actual text not as tag marker, also ↵ | Martin Kiewitz | |
handle "=" as being a supported shortcut key svn-id: r48747 | |||
2010-04-20 | SCI: remove lone spaces at the end of right aligned menu items. fixes ↵ | Martin Kiewitz | |
"wrongly" aligned menu items in some games svn-id: r48746 | |||
2010-04-18 | SCI: fix regression from r48685 - english got always used for menu entries | Martin Kiewitz | |
svn-id: r48698 | |||
2010-04-17 | SCI: move menu window inside the screen, if parts of it are outside (happens ↵ | Martin Kiewitz | |
in multilingual sq3 and lsl3) svn-id: r48686 | |||
2010-04-17 | SCI: implement ability to handle multilingual menu separators (is actually 2 ↵ | Martin Kiewitz | |
separators with a language separator inbetween) svn-id: r48685 | |||
2010-04-17 | SCI: Remove subtitles in menu. | Walter van Niftrik | |
svn-id: r48683 | |||
2010-04-15 | SCI: split menu/item strings when displaying instead of when initializing - ↵ | Martin Kiewitz | |
makes on-the-fly menu language changes possible (used by multilingual SCI01 games) svn-id: r48659 | |||
2010-02-23 | SCI: Turn kernel_sleep() into SciEvent::sleep() | Max Horn | |
svn-id: r48119 | |||
2010-02-13 | SCI: Move language related code from EngineState to SciEngine | Max Horn | |
svn-id: r48052 | |||
2010-02-13 | SCI: Add global g_sci pointer to the active SciEngine instance | Max Horn | |
svn-id: r48046 | |||
2010-02-09 | SCI: also reset some variables inside reset(), so we dont error() out in ↵ | Martin Kiewitz | |
lsl2 and other games that reset game engine inbetween svn-id: r48015 | |||
2010-02-05 | SCI: Add a 'SELECTOR' macro | Max Horn | |
svn-id: r47918 | |||
2010-02-05 | SCI: drawMenuBar, drawStatus now called directly and w/o SciGui | Martin Kiewitz | |
svn-id: r47913 | |||
2010-02-05 | SCI: GfxCoordAdjuster class added, local2Global and global2Local use that ↵ | Martin Kiewitz | |
class directly, kGraph / RedrawBox is now using GfxPaint16 directly svn-id: r47908 | |||
2010-02-05 | SCI: calling most of the cursor functions directly via _gfxCursor instead of ↵ | Martin Kiewitz | |
SciGui/32 svn-id: r47903 | |||
2010-02-05 | SCI: renamed class Cursor to GfxCursor | Martin Kiewitz | |
svn-id: r47902 | |||
2010-02-01 | SCI: implemented reset for GfxMenu, not recreating object anymore | Martin Kiewitz | |
svn-id: r47793 | |||
2010-02-01 | SCI: class menu renamed to GfxMenu - now getting called directly, also fix ↵ | Martin Kiewitz | |
for loading savedgames svn-id: r47792 |