aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/pages/game_page.cpp
blob: 16f918d060769e776ad5e63fa14e47b64a29268c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* 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.
 *
 */

#include <engines/pink/objects/handlers/handler.h>
#include "game_page.h"
#include <engines/pink/objects/walk/walk_mgr.h>
#include "engines/pink/cursor_mgr.h"
#include "engines/pink/objects/actors/lead_actor.h"
#include "engines/pink/objects/sequences/sequencer.h"


namespace Pink {

void GamePage::deserialize(Archive &archive) {
    Page::deserialize(archive);
    _module = static_cast<Module*>(archive.readObject());
    assert(dynamic_cast<Module*>(_module) != 0);
}

void GamePage::load(Archive &archive) {
    archive.mapObject(_cursorMgr);
    archive.mapObject(_walkMgr);
    archive.mapObject(_sequencer);

    Page::load(archive);

    _leadActor = static_cast<LeadActor*>(archive.readObject());

    _walkMgr->deserialize(archive);

    _sequencer->deserialize(archive);
    archive >> _handlers;
}

void GamePage::init(bool isLoadingSave) {
    if (!isLoadingSave){
        //assert(perhapsIsLoaded == 0);
        loadManagers();
    }

    toConsole();

    Page::init();

    if (!isLoadingSave)
        initHandler();


}

void GamePage::initHandler() {
    for (uint i = 0; i < _handlers.size(); ++i) {
        if (_handlers[i]->isSuitable(_leadActor)){
            _handlers[i]->onMessage(_leadActor);
            break;
        }
    }
}

void GamePage::loadManagers() {
    perhapsIsLoaded = true;
    _cursorMgr = new CursorMgr(this);
    _walkMgr = new WalkMgr;
    _sequencer = new Sequencer(this);

    _resMgr.init(_module->getGame(), this);

    // memfile manipulations if from save or page changing

}

PinkEngine *GamePage::getGame() {
    return _resMgr.getGame();
}

Sequencer *GamePage::getSequencer() {
    return _sequencer;
}

Module *GamePage::getModule() const {
    return _module;
}

bool GamePage::checkValueOfVariable(Common::String &variable, Common::String &value) {
    assert(_variables.contains(variable));
    return _variables[variable] == value;
}

void GamePage::setVariable(Common::String &variable, Common::String &value) {
    _variables[variable] = value;
}

WalkMgr *GamePage::getWalkMgr() {
    return _walkMgr;
}

void GamePage::toConsole() {
    Page::toConsole();
    _walkMgr->toConsole();
    _sequencer->toConsole();
    for (int i = 0; i < _handlers.size(); ++i) {
        _handlers[i]->toConsole();
    }
}

} // End of namespace Pink