Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-04-24 | Long messages in Eco Quest 1 are now shown correctly | Filippos Karapetis | |
svn-id: r40127 | |||
2009-04-24 | Changed an error to a warning, to make Longbow playable again | Filippos Karapetis | |
svn-id: r40124 | |||
2009-04-24 | Merged kSetCursor and kSetCursorNew, and changed KQ5 CD to use the newer ↵ | Filippos Karapetis | |
kSetCursor version svn-id: r40120 | |||
2009-04-24 | SCI: Fix sci_max_allowed_unknown_kernel_functions[], it was missing an entry. | Walter van Niftrik | |
svn-id: r40118 | |||
2009-04-24 | SCI: Fix signature of kPalette(). | Walter van Niftrik | |
svn-id: r40117 | |||
2009-04-24 | SCI: Fix transparency in view-based mouse cursors. | Walter van Niftrik | |
svn-id: r40116 | |||
2009-04-24 | SCI: Turned GfxWidget::draw function pointer into virtual method | Max Horn | |
svn-id: r40115 | |||
2009-04-24 | SCI: Turned GfxWidget::tag function pointer into virtual method | Max Horn | |
svn-id: r40114 | |||
2009-04-24 | SCI: Turned GfxWidget::print function pointer into virtual method | Max Horn | |
svn-id: r40113 | |||
2009-04-24 | SCI: Doxygenified some comments | Max Horn | |
svn-id: r40112 | |||
2009-04-24 | SCI: Fixed mouse cursor hotspots in ECO1. | Walter van Niftrik | |
svn-id: r40110 | |||
2009-04-24 | SCI: Changed GfxWidget::set_visual function pointer to virtual method setVisual | Max Horn | |
svn-id: r40108 | |||
2009-04-24 | SCI: Got rid of GFXW() macro; turned GfxWidget::widfree into destructors | Max Horn | |
svn-id: r40107 | |||
2009-04-24 | SCI: font_nr -> _font | Max Horn | |
svn-id: r40106 | |||
2009-04-24 | SCI: Rewrote the port_refs code (fixing at least three serious bugs in it. ↵ | Max Horn | |
Wow, crappy) svn-id: r40105 | |||
2009-04-24 | SCI: Renamed gfxw_widget_t and subtypes to GfxWidget etc. | Max Horn | |
svn-id: r40104 | |||
2009-04-24 | SCI: Started to C++ify the gfxw_widget_t codebase | Max Horn | |
svn-id: r40103 | |||
2009-04-24 | SCI: Changed GFXERROR to be fatal | Max Horn | |
svn-id: r40102 | |||
2009-04-24 | SCI: Some const corrections, removed dead stuff, cleanup | Max Horn | |
svn-id: r40101 | |||
2009-04-24 | SCI: Store parse_tree_branch_t in a Common::Arraay | Max Horn | |
svn-id: r40100 | |||
2009-04-23 | Changed the "Intersections" opcode to "MoveCursor", after verifying it with ↵ | Filippos Karapetis | |
Greg's SCI implementation and discussing it with waltervn. Also, the cursor hotspot is now fixed for Eco Quest 1 and probably SCI11 games as well (e.g. the game menu in KQ6 is now working) svn-id: r40096 | |||
2009-04-23 | The mouse cursor is now working in Eco Quest 1, though the hotspot is still ↵ | Filippos Karapetis | |
wrong. Many thanks to waltervn for his findings on this. svn-id: r40095 | |||
2009-04-23 | Removed a FIXME concerning CanBeHere and CantBeHere and added an ↵ | Filippos Karapetis | |
explanation. Also, removed some unused code. svn-id: r40094 | |||
2009-04-23 | Fixed the GetMessage kernel opcode. Eco Quest 1 text is showing up correctly now | Filippos Karapetis | |
svn-id: r40093 | |||
2009-04-23 | WIP code for kGetMessage (tested with Eco Quest 1). Currently, it doesn't ↵ | Filippos Karapetis | |
always work for some reason... svn-id: r40092 | |||
2009-04-22 | Cleanup | Filippos Karapetis | |
svn-id: r40082 | |||
2009-04-22 | SCI: Slim down struct SciKernelFunction | Max Horn | |
svn-id: r40081 | |||
2009-04-22 | SCI: Changed kfunct_table to a Common::Array | Max Horn | |
svn-id: r40080 | |||
2009-04-22 | SCI: getInt -> READ_LE_UINT16 | Max Horn | |
svn-id: r40079 | |||
2009-04-22 | SCI: Changed knames (kernel function name table) to Common::StringList | Max Horn | |
svn-id: r40078 | |||
2009-04-21 | Updated some of the detector entries for KQ5 | Filippos Karapetis | |
svn-id: r40060 | |||
2009-04-21 | - Fixed some of the GUI graphical glitches in SCI1 games (e.g. the inventory ↵ | Filippos Karapetis | |
screen in several SCI1 games and the menus in PQ3). It's still not right, but it's better than nothing - Removed the confusing ADD_TO_CURRENT_BG_WIDGETS and ADD_TO_CURRENT_FG_WIDGETS defines, which had the same functionality svn-id: r40058 | |||
2009-04-21 | Restored the ability to change the active port bound, by moving it inside ↵ | Filippos Karapetis | |
gfx_state_t (it makes much more sense for it to be there, instead of inside user-defined settings). Placed notes inside gfxr_draw_pic01() and gfxr_draw_pic11() for the usage of the current titlebar size in there svn-id: r40057 | |||
2009-04-21 | Removed per-picture port bounds, which were set to the global port bounds | Filippos Karapetis | |
svn-id: r40055 | |||
2009-04-20 | SCI: Replaced memory ref counting code in the SongIterator code by a simple ↵ | Max Horn | |
Common::Array<byte> object; also doxygenified some source comments svn-id: r40032 | |||
2009-04-20 | SCI: Renamed global array 'formats' to the slightly more descriptive ↵ | Max Horn | |
g_opcode_formats svn-id: r40031 | |||
2009-04-20 | SCI: Moved list of kernel func declarations to header file, where it belongs | Max Horn | |
svn-id: r40030 | |||
2009-04-20 | SCI: cleanup | Max Horn | |
svn-id: r40029 | |||
2009-04-20 | SCI: Mapped BREAKPOINT macro to error() for now | Max Horn | |
svn-id: r40028 | |||
2009-04-18 | Disable MSVC warning in autogenerated code | Willem Jan Palenstijn | |
svn-id: r40005 | |||
2009-04-18 | Fix outdated comments | Willem Jan Palenstijn | |
svn-id: r40003 | |||
2009-04-18 | Retreive -> retrieve | Willem Jan Palenstijn | |
svn-id: r39996 | |||
2009-04-15 | SCI: Added a new song player (work-in-progress). | Walter van Niftrik | |
svn-id: r39953 | |||
2009-04-11 | SCI: Renamed bp_flag -> breakpointFlag; replaced global send_calls_allocated ↵ | Max Horn | |
& send_calls vars by a local Common::Stack instance svn-id: r39930 | |||
2009-04-09 | SCI: Clarify hack in kgraphics.cpp based on what lars wrote on scummvm-devel | Max Horn | |
svn-id: r39905 | |||
2009-04-07 | Fixed the language of the German version of Longbow | Filippos Karapetis | |
svn-id: r39898 | |||
2009-04-07 | SCI: Do not skip last entry in kernel table for SCI1. | Walter van Niftrik | |
svn-id: r39895 | |||
2009-04-07 | SCI: Swapped x and y parameters of IsItSkip. Added IsItSkip to kernel table. | Walter van Niftrik | |
svn-id: r39894 | |||
2009-04-07 | Print out the SCI interpreter version and not the resource version when ↵ | Matthew Hoops | |
saying what version we're emulating svn-id: r39892 | |||
2009-04-07 | SCI: Fix endian-unsafe read [bug #2739122 ] | Willem Jan Palenstijn | |
svn-id: r39891 |