aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction
AgeCommit message (Collapse)Author
2007-04-21- Implemented Amiga halfbrite mode in palette code, though usage is limited ↵Nicola Mettifogo
to displayItemComment() for the moment. - Some changes to palette routines to make them fit with the new scheme. svn-id: r26553
2007-04-18Fixes bug 1702679.Nicola Mettifogo
svn-id: r26544
2007-04-16Fix compilationSven Hesse
svn-id: r26533
2007-04-16Now handling fonts with brand-new Font hierarchy. Amiga font have been ↵Nicola Mettifogo
implemented for dialogues/descriptions, but not for labels yet. svn-id: r26530
2007-04-15- Fonts are now preloaded at start.Nicola Mettifogo
- Replaced font string names with enums. - Some slight simplification to Disk. svn-id: r26518
2007-04-15Fixed some memory leaks.Nicola Mettifogo
svn-id: r26483
2007-04-11Implemented palette animation to Amiga version of Nippon Safes.Nicola Mettifogo
svn-id: r26453
2007-04-11- Moved Zone and Animation to List<>.Nicola Mettifogo
- Removed any reference to Node from codebase. svn-id: r26452
2007-04-10Moved Jobs to ManagedList. Since Jobs must be ordered according to their ↵Nicola Mettifogo
priority, a new insertSorted method has been added to the implementation. svn-id: r26451
2007-04-09Cleanup of Zone/Animation removal code. Only the good god of void pointers ↵Nicola Mettifogo
knows how it managed to work until now. svn-id: r26430
2007-04-09- moved walk code to List<>Nicola Mettifogo
- some adjustments to #include statements svn-id: r26424
2007-04-09Fixed regression bug in dialogue code.Nicola Mettifogo
svn-id: r26422
2007-04-07Fixed broken implementation of ManagedListNicola Mettifogo
svn-id: r26412
2007-04-07Added new ManagedList class to handle Instruction and Command lists. The ↵Nicola Mettifogo
same class will be used to hold Zone, Animation and WalkNode lists. svn-id: r26410
2007-04-07cleanupNicola Mettifogo
svn-id: r26409
2007-04-07Fixed incomplete implementation of Command lists.Nicola Mettifogo
svn-id: r26408
2007-04-07Changed Commands to use List<>Nicola Mettifogo
svn-id: r26407
2007-04-07Explicit constructor invoked when instancing WalkNode.Nicola Mettifogo
svn-id: r26406
2007-04-07Implemented destructors for Question and Answer.Nicola Mettifogo
svn-id: r26405
2007-04-07New struct Answer introduced.Nicola Mettifogo
svn-id: r26404
2007-04-07oops forgot to deallocate List nodes after usageNicola Mettifogo
svn-id: r26403
2007-04-07Added code for ~Command().Nicola Mettifogo
svn-id: r26402
2007-04-07change Program to use a List<> of Instructions instead of a homebrew linked listNicola Mettifogo
svn-id: r26401
2007-04-07Reduced dependency between project files, and prepared defs.h for deletion ↵Nicola Mettifogo
as soon as List<>'s usage is implemented. svn-id: r26400
2007-04-07Turned free___() routines into proper destructors for Zone, Animation and ↵Nicola Mettifogo
Program, and added memo comments for porting the engine to Common::List<>. svn-id: r26399
2007-04-06Enabled lazy removal for Job instances.Nicola Mettifogo
svn-id: r26396
2007-04-06Made Program hold an explicit reference to its set of Instruction(s) instead ↵Nicola Mettifogo
of simply being a Node chained with them. svn-id: r26393
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