DIRECTOR: LINGO: Added manipulation of sprite patterns.

TODO: Figure out where in data it is stored.
This commit is contained in:
Eugene Sandulenko 2019-12-27 22:43:42 +01:00
parent 29a07afc58
commit eb02162def
4 changed files with 10 additions and 1 deletions

View File

@ -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) {

View File

@ -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;

View File

@ -39,6 +39,7 @@ Sprite::Sprite() {
_castId = 0;
_backColor = 255;
_foreColor = 0;
_pattern = 0;
_left = 0;
_right = 0;
_top = 0;

View File

@ -91,6 +91,8 @@ public:
byte _moveable;
byte _backColor;
byte _foreColor;
uint16 _pattern;
uint16 _left;
uint16 _right;
uint16 _top;