Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-02-26 | COMMON: Move Language and Platform functionality into separate files | Max Horn | |
2011-08-23 | GRAPHICS: Display warning in case the SJIS.FNT version does not match. | Johannes Schickel | |
2011-08-07 | JANITORIAL: Remove trailing empty lines. | Christoph Mallon | |
2011-07-10 | GRAPHICS: remove char/line spacing handling from sjis code | athrxx | |
(as discussed with LordHoto this should rather be handled in the engine) | |||
2011-07-09 | SCUMM: Make use of graphics/sjis code for LOOM PCE sjis drawing | athrxx | |
Also move font rom loader to graphics/sjis and make the necessary changes there. | |||
2011-07-01 | GRAPHICS: More default parameter remove in SJIS code. | Johannes Schickel | |
2011-07-01 | GRAPHICS: Remove default values from FontSJIS::drawChar. | Johannes Schickel | |
drawChar is overloaded in FontSJIS. One takes a "Surface &" as first parameter another one "void *", they furthermore have the exact same number of required parameters. The one "void *" just had a few extra parameters with default values. This resulted in a bug in SCUMM, where "VirtScreen *" (a subclass of Surface) was passed instead of "VirtScreen &" and thus the method taking "void *" was incorrectly used. To make it easier to spot such bugs in the future I just removed the default values and thus disallow such calls. | |||
2011-07-01 | GRAPHICS: Offer support for PCE font data of SJIS.FNT. | Johannes Schickel | |
2011-07-01 | GRAPHICS: Cleanup SJIS font code a bit. | Johannes Schickel | |
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-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2010-11-19 | ALL: Push down deps on stream.h from .h to .cpp files | Max Horn | |
svn-id: r54358 | |||
2010-11-05 | GRAPHICS/SJIS: cleanup | Florian Kagerer | |
svn-id: r54099 | |||
2010-11-05 | GRAPHICS/SJIS: fix out of bounds shadow mode text drawing | Florian Kagerer | |
svn-id: r54080 | |||
2010-11-05 | SCUMM/FM-TOWNS JAPANESE: fix out of bounds text drawing | Florian Kagerer | |
(could cause invalid memory access in MI1) svn-id: r54079 | |||
2010-10-19 | SCUMM/FM-TOWNS JAPANESE: implement flipped text | Florian Kagerer | |
(used in the MI1 circus scene after Guybrush gets shot out of the cannon) svn-id: r53616 | |||
2010-10-17 | GRAPHICS: enable sjis code for scumm engine | Florian Kagerer | |
svn-id: r53555 | |||
2010-10-17 | SCUMM/FM-TOWNS: more improvements to japanese font drawing | Florian Kagerer | |
- made use of LordHotos graphics/sjis code to reduce code duplication - japanese mode for version 3 and 5 works fine now with few exceptions (some line spacing glitches in MI1 intro etc.) svn-id: r53554 | |||
2009-11-19 | Cleanup. | Johannes Schickel | |
svn-id: r45993 | |||
2009-10-11 | Add support for 8x16 chars in the FM-Towns font ROM code. | Johannes Schickel | |
svn-id: r44910 | |||
2009-10-11 | Revert changes to graphics/sjis.h in r44709. | Johannes Schickel | |
svn-id: r44904 | |||
2009-10-06 | KYRA/LOL: - get rid of ascii/sjis detection which could cause problems when ↵ | Florian Kagerer | |
typing savegame names - fixed some minor bugs svn-id: r44709 | |||
2009-10-04 | Change a couple places from 'end of namespace' to 'End of namespace', for ↵ | Max Horn | |
consistency svn-id: r44634 | |||
2009-09-30 | Implemented support for drawing 8x16 chars from our custom SJIS font. | Johannes Schickel | |
svn-id: r44486 | |||
2009-09-30 | Update SJIS code to read SJIS.FNT version 2 data (no support for drawing ↵ | Johannes Schickel | |
ASCII and half-width katakana glyphs yet). svn-id: r44483 | |||
2009-08-12 | Change SJIS code guard to also check whether dynamic plugins are enabled. | Johannes Schickel | |
svn-id: r43318 | |||
2009-07-26 | Add a todo to FontSJIS::drawChar taking an Graphics::Surface. | Johannes Schickel | |
svn-id: r42824 | |||
2009-07-26 | Add way to overwrite default SJIS font. | Johannes Schickel | |
svn-id: r42819 | |||
2009-07-26 | Specify that the chars passed to FontSJIS::drawChar should be little endian. | Johannes Schickel | |
svn-id: r42818 | |||
2009-07-26 | Add a factory method, which tries to open different SJIS fonts/ROMs and ↵ | Johannes Schickel | |
returns a font for the first present data. svn-id: r42816 | |||
2009-07-26 | Change the way the font data for SJIS fonts is load. | Johannes Schickel | |
svn-id: r42815 | |||
2009-07-26 | Add support for our custom SJIS font. | Johannes Schickel | |
svn-id: r42813 | |||
2009-07-26 | Create base class FontSJIS16x16 for our own SJIS font. | Johannes Schickel | |
svn-id: r42812 | |||
2009-07-09 | Reverted commit #42257, as the original issue was with the compilation ↵ | Filippos Karapetis | |
process of MSVC and the ENABLE_* checks work correctly svn-id: r42289 | |||
2009-07-08 | The ENABLE_* flags are only checked for *.cpp files in MSVC, so move the ↵ | Filippos Karapetis | |
ENABLE_* checks to sjis.cpp to fix compilation under MSVC svn-id: r42257 | |||
2009-07-07 | Simply compile guard of SJIS code and fix comment. | Johannes Schickel | |
svn-id: r42234 | |||
2009-07-07 | Add guards to only include SJIS font code, when KYRA or SCI is enabled. | Johannes Schickel | |
svn-id: r42233 | |||
2009-07-07 | Change "FM-Towns" to "FM-TOWNS" for consistency. | Johannes Schickel | |
svn-id: r42232 | |||
2009-07-07 | - Rename FontSJIS::enableShadow to enableOutline. | Johannes Schickel | |
- Initialize outline to false by default in FontTowns. svn-id: r42231 | |||
2009-07-07 | - Added support for outlined FM-Towns ROM drawing | Johannes Schickel | |
- Adapted KYRA to use that svn-id: r42230 | |||
2009-07-07 | Add generic functionallity to draw FM-Towns ROM. (To be used by KYRA and SCI) | Johannes Schickel | |
svn-id: r42221 |