2014-05-12 22:24:21 +02:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This code is based on original Sfinx source code
|
|
|
|
* Copyright (c) 1994-1997 Janus B. Wisniewski and L.K. Avalon
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cge2/spare.h"
|
|
|
|
|
|
|
|
namespace CGE2 {
|
|
|
|
|
2014-07-03 09:24:25 +02:00
|
|
|
void Spare::sync(Common::Serializer &s) {
|
2014-07-03 01:19:30 +02:00
|
|
|
if (s.isSaving()) {
|
|
|
|
int size = 0;
|
|
|
|
for (uint i = 0; i < _container.size(); i++)
|
|
|
|
if (_container[i]->_ref >= 141)
|
|
|
|
size++;
|
|
|
|
s.syncAsSint16LE(size);
|
|
|
|
|
|
|
|
for (uint i = 0; i < _container.size(); i++)
|
|
|
|
if (_container[i]->_ref >= 141)
|
|
|
|
_container[i]->sync(s);
|
|
|
|
} else {
|
|
|
|
int size;
|
|
|
|
s.syncAsSint16LE(size);
|
|
|
|
|
|
|
|
for (int i = 0; i < size; i++) {
|
|
|
|
Sprite *sprite = new Sprite(_vm);
|
|
|
|
sprite->sync(s);
|
2014-07-21 19:57:33 +02:00
|
|
|
update(sprite);
|
2014-07-03 01:19:30 +02:00
|
|
|
}
|
|
|
|
}
|
2014-05-12 22:24:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Spare::clear() {
|
2014-07-03 00:50:42 +02:00
|
|
|
for (uint i = 0; i < _container.size(); i++)
|
2014-07-03 00:39:23 +02:00
|
|
|
delete _container[i];
|
|
|
|
|
2014-05-12 22:24:21 +02:00
|
|
|
_container.clear();
|
|
|
|
}
|
|
|
|
|
2014-05-13 09:03:29 +02:00
|
|
|
Sprite *Spare::locate(int ref) {
|
2014-05-30 10:52:10 +02:00
|
|
|
for (uint i = 0; i < _container.size(); ++i) {
|
|
|
|
if (_container[i]->_ref == ref)
|
2014-05-13 07:46:13 +02:00
|
|
|
return _container[i];
|
2014-05-12 22:24:21 +02:00
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2014-06-02 14:33:30 +02:00
|
|
|
Sprite *Spare::take(int ref) {
|
|
|
|
Sprite *spr = nullptr;
|
|
|
|
if ((spr = locate(ref)) != nullptr) {
|
|
|
|
for (uint i = 0; i < _container.size(); ++i) {
|
|
|
|
if (spr == _container[i]) {
|
|
|
|
_container.remove_at(i);
|
2014-07-18 00:12:53 +02:00
|
|
|
break;
|
2014-06-02 14:33:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-18 00:12:53 +02:00
|
|
|
return spr;
|
2014-06-02 14:33:30 +02:00
|
|
|
}
|
|
|
|
|
2014-06-15 21:24:59 +02:00
|
|
|
void Spare::takeScene(int cav) {
|
2014-05-19 17:56:19 +02:00
|
|
|
int bakRef = cav << 8;
|
|
|
|
Common::Array<Sprite*> tempCont = _container;
|
2014-05-30 10:52:10 +02:00
|
|
|
for (uint i = 0; i < tempCont.size(); ++i) {
|
2014-05-19 17:56:19 +02:00
|
|
|
Sprite *spr = tempCont[i];
|
|
|
|
int c = spr->_scene;
|
|
|
|
if ((c == _vm->_now || c == 0) && spr->_ref != bakRef) {
|
2014-06-17 15:37:55 +02:00
|
|
|
spr = locate(spr->_ref);
|
2014-05-19 17:56:19 +02:00
|
|
|
_vm->_vga->_showQ->insert(spr);
|
|
|
|
}
|
|
|
|
}
|
2014-05-12 22:24:21 +02:00
|
|
|
}
|
|
|
|
|
2014-05-13 09:07:06 +02:00
|
|
|
void Spare::store(Sprite *spr) {
|
2014-07-17 16:41:32 +02:00
|
|
|
_container.push_back(spr);
|
2014-05-12 22:24:21 +02:00
|
|
|
}
|
|
|
|
|
2014-05-18 11:37:06 +02:00
|
|
|
void Spare::update(Sprite *spr) {
|
|
|
|
Sprite *sp = locate(spr->_ref);
|
|
|
|
if (sp == nullptr)
|
|
|
|
store(spr);
|
2014-07-21 19:52:46 +02:00
|
|
|
else {
|
|
|
|
sp->contract();
|
2014-06-10 14:38:30 +02:00
|
|
|
*sp = *spr;
|
2014-07-21 19:52:46 +02:00
|
|
|
}
|
2014-05-18 11:37:06 +02:00
|
|
|
}
|
2014-05-12 22:24:21 +02:00
|
|
|
|
2014-05-18 11:37:06 +02:00
|
|
|
void Spare::dispose(Sprite *spr) {
|
2014-05-12 22:24:21 +02:00
|
|
|
if (spr) {
|
|
|
|
_vm->_vga->_showQ->remove(spr);
|
2014-05-18 11:37:06 +02:00
|
|
|
update(spr->contract());
|
2014-05-12 22:24:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Spare::dispose(int ref) {
|
|
|
|
dispose(_vm->_vga->_showQ->locate(ref));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Spare::dispose() {
|
2014-05-30 10:52:10 +02:00
|
|
|
for (uint i = 0; i < _container.size(); ++i) {
|
|
|
|
if (_container[i]->_ref > 255)
|
2014-05-13 07:46:13 +02:00
|
|
|
dispose(_container[i]);
|
2014-05-12 22:24:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // End of namespace CGE2
|