aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction
AgeCommit message (Collapse)Author
2007-04-04Characters now only store the set of frames they actually need. Basically, ↵Nicola Mettifogo
mini characters and normal characters are now completely separated. svn-id: r26381
2007-04-03- added a new archive member variable to Disk, to decouple resource archives ↵Nicola Mettifogo
from location archives - made Script use a stream as input with overall simplification of Disk routines svn-id: r26379
2007-04-03- fixed RLEStreamNicola Mettifogo
- simplified unpacking of background for dos version - other minor changes svn-id: r26378
2007-04-03Reduced code duplication in AmigaDisk by means of a new wrapper class for ↵Nicola Mettifogo
Archive. svn-id: r26377
2007-04-02miscellaneous improvements for amigaNicola Mettifogo
svn-id: r26374
2007-04-02- slightly improved mask for amiga (not perfect yet)Nicola Mettifogo
- fixed loading of Talks for amiga - fixed handling of multiple frames svn-id: r26373
2007-04-01Renamed classes for consistency.Nicola Mettifogo
svn-id: r26362
2007-04-01- Added a new class RLEDecoder to avoid code duplication in Disk routines.Nicola Mettifogo
- Temporarily disabled mask loading in Amiga version. svn-id: r26361
2007-04-01Fixed loading of graphics. Now things really look what they are, except the ↵Nicola Mettifogo
character which still looks a bit jagged. svn-id: r26352
2007-04-01Added code for resource loading and fixed the bug having Amiga demo ↵Nicola Mettifogo
crashing. It is now limitedly playable, although graphics is still heavily messed up. svn-id: r26349
2007-04-01Implemented Disk routines for Amiga demo. Font are simulated with boxes, and ↵Nicola Mettifogo
frames aren't decoded properly yet. The engine will now show the first game screen, but crash as soon as the user clicks her mouse. svn-id: r26341
2007-04-01Added GF_DEMO flag and ability to load the correct location at start.Nicola Mettifogo
svn-id: r26340
2007-04-01Function changeCharacter is now responsible for loading character specific ↵Nicola Mettifogo
Zones and such svn-id: r26339
2007-04-01made Menu use _vm instead of _engineNicola Mettifogo
svn-id: r26336
2007-03-30made menu properly set languageNicola Mettifogo
svn-id: r26329
2007-03-29oopsNicola Mettifogo
svn-id: r26319
2007-03-29- changed Cnv to use a single large buffer for frames instead of small ↵Nicola Mettifogo
chunks of memory, to simplify loading by Disk. - added a new constructor with parameters to Cnv svn-id: r26318
2007-03-29- implemented destructor for Cnv, thus removing calls to Gfx::freeCnv()Nicola Mettifogo
- enforced use of getFramePtr instead of Cnv::_array member svn-id: r26317
2007-03-28Overhaul of palette management to bring it back to its original form. Gfx ↵Nicola Mettifogo
palette code has been updated, and _c_endComment (callable from scripts) has been implemented. As a by-product, palette cycling now finally works! svn-id: r26314
2007-03-27Fixed palette bug to allow proper display of splash screens, but dos palette ↵Nicola Mettifogo
is still broken in game. Palette code needs a general revision due to differences between dos and amiga. svn-id: r26313
2007-03-27engine can now handle amiga and dos splash screensNicola Mettifogo
svn-id: r26312
2007-03-27added code to load amiga background slidesNicola Mettifogo
svn-id: r26311
2007-03-24Changed detection of the dreaded 'fr' archive in Nippon Safes Amiga Demo. ↵Nicola Mettifogo
This is not a better hack than before, except that now it works. svn-id: r26299
2007-03-24Added new class Table, and updated Disk accordingly. Tables can be populated ↵Nicola Mettifogo
after their creation or wrapped around existing arrays. Thus, the old functions (initTable, freeTable and searchTable) have been removed. svn-id: r26295
2007-03-24made more functions members of ParallactionNicola Mettifogo
svn-id: r26294
2007-03-24started infrastructure for amiga demo:Nicola Mettifogo
- added Disk skeleton - adapted Archive to handle different structure for archives - moved Disk creation from engine constructor into init() [still sub-optimal] svn-id: r26293
2007-03-24- fixed regression bug: one free/delete mismatchNicola Mettifogo
- added needed virtual destructors to structs svn-id: r26292
2007-03-22unrolled loop in buildWalkPath and renamed some variablesNicola Mettifogo
svn-id: r26276
2007-03-22Fix warningsMax Horn
svn-id: r26274
2007-03-21- moved buildWalkPath inner loop into a new functionNicola Mettifogo
- renamed some variables in buildWalkPath - deleted an old extern for buildWalkPath svn-id: r26272
2007-03-21got rid of cryptic pseudo-boolean variable in buildWalkPathNicola Mettifogo
svn-id: r26269
2007-03-20replaced some x,y/left,top pairs with Common::PointNicola Mettifogo
svn-id: r26262
2007-03-20some refactoring for walking codeNicola Mettifogo
svn-id: r26260
2007-03-19final version of runDialogueNicola Mettifogo
svn-id: r26251
2007-03-19applied De Morgan's law to an expression to expose similaritiesNicola Mettifogo
svn-id: r26250
2007-03-19fixed bug from first decompileNicola Mettifogo
svn-id: r26249
2007-03-19refactoring of the main loop of runDialogue, now in a decent shapeNicola Mettifogo
svn-id: r26247
2007-03-19a bit of refactoring for dialogue codeNicola Mettifogo
svn-id: r26246
2007-03-19removed most useless (paranoid) debugCNicola Mettifogo
svn-id: r26245
2007-03-19made Animation a subclass of Zone (finally!)Nicola Mettifogo
svn-id: r26244
2007-03-19added member initializationNicola Mettifogo
svn-id: r26243
2007-03-19deleted some dead codeNicola Mettifogo
svn-id: r26242
2007-03-18Fixed warning: warning: base class 'struct Parallaction::Node' should be ↵Max Horn
explicitly initialized in the copy constructor svn-id: r26235
2007-03-18Made loadStatic return a new StaticCnv instead of accepting a parameter. All ↵Nicola Mettifogo
disk functions now accept only a resource name as their parameter. svn-id: r26232
2007-03-18Made loadFrames return a new Cnv instead of accepting a parameter.Nicola Mettifogo
svn-id: r26231
2007-03-18changed DoorData::_cnv to be a pointer, in view of changes to Disk::loadFrames()Nicola Mettifogo
svn-id: r26230
2007-03-18changed Animation::_cnv to be a pointer, in view of changes to ↵Nicola Mettifogo
Disk::loadFrames() svn-id: r26229
2007-03-18- added constructors for most structsNicola Mettifogo
- structs are now allocated via new instead of malloc's - respective free's have been replaced with delete svn-id: r26228
2007-03-18changed code to use WalkNode constructorsNicola Mettifogo
svn-id: r26227
2007-03-18- Made global Node's (_zones, _animations, _helperNode) and the functions ↵Nicola Mettifogo
using them members of the engine. - Added a constructor for Node svn-id: r26226