mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
DIRECTOR: LINGO: Added manipulation of sprite patterns.
TODO: Figure out where in data it is stored.
This commit is contained in:
parent
29a07afc58
commit
eb02162def
@ -674,7 +674,7 @@ void Frame::renderShape(Graphics::ManagedSurface &surface, uint16 spriteId) {
|
||||
|
||||
// No minus one on the pattern here! MacPlotData will do that for us!
|
||||
//Graphics::MacPlotData pd(&tmpSurface, &_vm->getPatterns(), 1, 1, sp->_backColor);
|
||||
Graphics::MacPlotData pd(&tmpSurface, &_vm->getPatterns(), sp->_castId, sp->_lineSize + 1, sp->_backColor);
|
||||
Graphics::MacPlotData pd(&tmpSurface, &_vm->getPatterns(), sp->_pattern, sp->_lineSize + 1, sp->_backColor);
|
||||
Common::Rect fillRect(shapeRect.width(), shapeRect.height());
|
||||
|
||||
switch (sp->_spriteType) {
|
||||
|
@ -417,6 +417,9 @@ void Lingo::setTheSprite(Datum &id1, int field, Datum &d) {
|
||||
case kTheEditableText:
|
||||
sprite->_editableText = *d.toString();
|
||||
break;
|
||||
case kThePattern:
|
||||
sprite->_pattern = d.u.i;
|
||||
break;
|
||||
default:
|
||||
warning("Lingo::setTheSprite(): Unprocessed setting field %d of sprite", field);
|
||||
}
|
||||
@ -619,6 +622,9 @@ Datum Lingo::getTheSprite(Datum &id1, int field) {
|
||||
d.toString();
|
||||
d.u.s = &sprite->_editableText;
|
||||
break;
|
||||
case kThePattern:
|
||||
d.u.i = sprite->_pattern;
|
||||
break;
|
||||
default:
|
||||
warning("Lingo::getTheSprite(): Unprocessed getting field %d of sprite", field);
|
||||
d.type = VOID;
|
||||
|
@ -39,6 +39,7 @@ Sprite::Sprite() {
|
||||
_castId = 0;
|
||||
_backColor = 255;
|
||||
_foreColor = 0;
|
||||
_pattern = 0;
|
||||
_left = 0;
|
||||
_right = 0;
|
||||
_top = 0;
|
||||
|
@ -91,6 +91,8 @@ public:
|
||||
byte _moveable;
|
||||
byte _backColor;
|
||||
byte _foreColor;
|
||||
uint16 _pattern;
|
||||
|
||||
uint16 _left;
|
||||
uint16 _right;
|
||||
uint16 _top;
|
||||
|
Loading…
x
Reference in New Issue
Block a user