aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/graphics.cpp
AgeCommit message (Collapse)Author
2007-03-18removed unused parameter from Gfx::flatBlitCnvNicola Mettifogo
svn-id: r26195
2007-03-17renamed structures to be more generalNicola Mettifogo
svn-id: r26184
2007-03-15moved remaining background related functions to disk.cpp, and changed Gfx ↵Nicola Mettifogo
accordingly svn-id: r26145
2007-03-14removed explicit references to kMask0 since there is only 1 mask availableNicola Mettifogo
svn-id: r26140
2007-03-14some slight refactoringNicola Mettifogo
svn-id: r26139
2007-03-14removed dead codeNicola Mettifogo
svn-id: r26138
2007-03-14implemented clipping using Common::Rect::clipNicola Mettifogo
svn-id: r26137
2007-03-13enforced use of Common::Rect on all graphic routinesNicola Mettifogo
svn-id: r26128
2007-03-13removed special case of Graphics::copyRect in favor of more general codeNicola Mettifogo
svn-id: r26126
2007-03-13Moved inventory surface management into inventory.cpp, thus removing ↵Nicola Mettifogo
Graphics::kBit3. Some duplicated code now exists in graphics.cpp and inventory.cpp. svn-id: r26123
2007-03-13made hi-level graphics routine use Common::Rect instead of (x,y,w,h) t-uplesNicola Mettifogo
svn-id: r26121
2007-03-12moved background path buffer management into walk.cppNicola Mettifogo
svn-id: r26117
2007-03-12removed useless routines (maybe leftovers from the amiga conversion)Nicola Mettifogo
svn-id: r26116
2007-03-12renamed Graphics class to Gfx and Parallaction::_graphics to ↵Nicola Mettifogo
Parallaction::_gfx to shorten lines and avoid aliasing with framework's Graphics svn-id: r26111
2007-03-12The only uses for StaticCnv::_data2 were by Get and Door zones, so a new ↵Nicola Mettifogo
field has been added to those structure and _data2 has been deleted. Some graphic routines has been renamed to better reflect this change, too. svn-id: r26107
2007-03-10more robust font managementNicola Mettifogo
svn-id: r26068
2007-03-10character loading/freeing routines now also handle Heads and Talks, instead ↵Nicola Mettifogo
of having scattered code around svn-id: r26059
2007-03-04fixed regression: background used to get broken when items were picked upNicola Mettifogo
svn-id: r25981
2007-03-04wrapped loader routines into a new class named Disk. The new class is also ↵Nicola Mettifogo
responsible for handling Archives in place of the Parallaction engine. svn-id: r25972
2007-03-04moved background loading into disk.cppNicola Mettifogo
svn-id: r25968
2007-03-04moved platform-dependant resource loading routines into disk.cppNicola Mettifogo
svn-id: r25964
2007-03-04replaced memAlloc/memFree with standard malloc/freeNicola Mettifogo
svn-id: r25962
2007-03-03removed common-case code from loadBackgroundNicola Mettifogo
svn-id: r25949
2007-03-03loadBackground simplified: palette cycling is still broken, thoughNicola Mettifogo
svn-id: r25948
2007-03-02changed every font name to be platform independent, added font loader routineNicola Mettifogo
svn-id: r25935
2007-03-02replaced calls to loadExternalStaticCnv with separate loaders for Head and ↵Nicola Mettifogo
Pointer resources svn-id: r25934
2007-02-27changed font handling:Nicola Mettifogo
- engine doesn't see font as a low-level Cnv anymore - the Graphics class takes care of freeing memory on font changes svn-id: r25900
2007-02-25made Archive inherit from Common::File, added some methods to comply to ↵Nicola Mettifogo
interface, changed callers to exploit readByte capabilities svn-id: r25868
2007-02-25made Archive behave more like Common::File, preparing for inheritanceNicola Mettifogo
svn-id: r25867
2007-02-25wrapped archive routines into a new class named Archive. File-level static ↵Nicola Mettifogo
variables have been made members of the new class. svn-id: r25866
2007-02-25got rid of ArchievedFile. Since only one single file is being read from the ↵Nicola Mettifogo
archives at every moment, the ArchivedFile structure used for bookkeeping is useless. svn-id: r25864
2007-02-18more big-endianness fixesNicola Mettifogo
svn-id: r25672
2007-02-17fixed regression bug causing labels not to be aligned properly when near the ↵Nicola Mettifogo
right border svn-id: r25665
2007-02-17changed mapChar to use unsigned (byte) instead of char, to avoid possible ↵Nicola Mettifogo
sign issues svn-id: r25664
2007-02-17changed CNV loading code to be endian-safeNicola Mettifogo
svn-id: r25663
2007-02-17Some indentation and format changes. Mostly replacing spaces with tabs.Torbjörn Andersson
svn-id: r25654
2007-02-14More skip_whitespace -> Common::ltrim(). For real now.Eugene Sandulenko
svn-id: r25577
2007-02-05solved 64 bit casting issue from BUG #1648325Nicola Mettifogo
svn-id: r25391
2007-02-04added more debug levels and commentsNicola Mettifogo
svn-id: r25386
2007-02-04solved array out of bound issue in quickFadePaletteNicola Mettifogo
svn-id: r25380
2007-02-04added game palette static initializers to avoid warningsNicola Mettifogo
svn-id: r25379
2007-02-04oops fixed 64 bit warnings in the last revisionNicola Mettifogo
svn-id: r25377
2007-02-04changed handling of zone labels to match original engineNicola Mettifogo
svn-id: r25376
2007-01-27removed printf's spewing out tons of debug messagesNicola Mettifogo
svn-id: r25217
2007-01-26added NULLity checksNicola Mettifogo
svn-id: r25213
2007-01-21fixed occasional border issues in inventoryNicola Mettifogo
svn-id: r25145
2007-01-15made _glyphWidths only referenced into graphics.cppNicola Mettifogo
svn-id: r25096
2007-01-15enforced MemoryReadStream usage instead of custom byte swapping in ↵Nicola Mettifogo
background loading svn-id: r25094
2007-01-14Initial import of Parallaction engineEugene Sandulenko
svn-id: r25083