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 126 127 128 129 130 131 132 133
|
/* 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 3 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, see <http://www.gnu.org/licenses/>.
*
*/
#include "ags/engine/ac/route_finder.h"
#include "ags/engine/ac/route_finder_impl.h"
#include "ags/engine/ac/route_finder_impl_legacy.h"
#include "ags/shared/debugging/out.h"
#include "ags/globals.h"
namespace AGS3 {
using AGS::Shared::Bitmap;
class AGSRouteFinder : public IRouteFinder {
public:
virtual ~AGSRouteFinder() {}
void init_pathfinder() override {
AGS::Engine::RouteFinder::init_pathfinder();
}
void shutdown_pathfinder() override {
AGS::Engine::RouteFinder::shutdown_pathfinder();
}
void set_wallscreen(Bitmap *wallscreen) override {
AGS::Engine::RouteFinder::set_wallscreen(wallscreen);
}
int can_see_from(int x1, int y1, int x2, int y2) override {
return AGS::Engine::RouteFinder::can_see_from(x1, y1, x2, y2);
}
void get_lastcpos(int &lastcx, int &lastcy) override {
AGS::Engine::RouteFinder::get_lastcpos(lastcx, lastcy);
}
int find_route(short srcx, short srcy, short xx, short yy, int move_speed_x, int move_speed_y, Bitmap *onscreen, int movlst, int nocross = 0, int ignore_walls = 0) override {
return AGS::Engine::RouteFinder::find_route(srcx, srcy, xx, yy, move_speed_x, move_speed_y, onscreen, movlst, nocross, ignore_walls);
}
void recalculate_move_speeds(MoveList *mlsp, int old_speed_x, int old_speed_y, int new_speed_x, int new_speed_y) override {
AGS::Engine::RouteFinder::recalculate_move_speeds(mlsp, old_speed_x, old_speed_y, new_speed_x, new_speed_y);
}
bool add_waypoint_direct(MoveList *mlsp, short x, short y, int move_speed_x, int move_speed_y) override {
return AGS::Engine::RouteFinder::add_waypoint_direct(mlsp, x, y, move_speed_x, move_speed_y);
}
};
class AGSLegacyRouteFinder : public IRouteFinder {
public:
virtual ~AGSLegacyRouteFinder() {}
void init_pathfinder() override {
AGS::Engine::RouteFinderLegacy::init_pathfinder();
}
void shutdown_pathfinder() override {
AGS::Engine::RouteFinderLegacy::shutdown_pathfinder();
}
void set_wallscreen(Bitmap *wallscreen) override {
AGS::Engine::RouteFinderLegacy::set_wallscreen(wallscreen);
}
int can_see_from(int x1, int y1, int x2, int y2) override {
return AGS::Engine::RouteFinderLegacy::can_see_from(x1, y1, x2, y2);
}
void get_lastcpos(int &lastcx, int &lastcy) override {
AGS::Engine::RouteFinderLegacy::get_lastcpos(lastcx, lastcy);
}
int find_route(short srcx, short srcy, short xx, short yy, int move_speed_x, int move_speed_y, Bitmap *onscreen, int movlst, int nocross = 0, int ignore_walls = 0) override {
return AGS::Engine::RouteFinderLegacy::find_route(srcx, srcy, xx, yy, move_speed_x, move_speed_y, onscreen, movlst, nocross, ignore_walls);
}
void recalculate_move_speeds(MoveList *mlsp, int old_speed_x, int old_speed_y, int new_speed_x, int new_speed_y) override {
assert(false); // not supported
}
bool add_waypoint_direct(MoveList *mlsp, short x, short y, int move_speed_x, int move_speed_y) override {
return AGS::Engine::RouteFinder::add_waypoint_direct(mlsp, x, y, move_speed_x, move_speed_y);
}
};
void init_pathfinder(GameDataVersion game_file_version) {
if (game_file_version >= kGameVersion_350) {
AGS::Shared::Debug::Printf(AGS::Shared::MessageType::kDbgMsg_Info, "Initialize path finder library");
_GP(route_finder_impl).reset(new AGSRouteFinder());
} else {
AGS::Shared::Debug::Printf(AGS::Shared::MessageType::kDbgMsg_Info, "Initialize legacy path finder library");
_GP(route_finder_impl).reset(new AGSLegacyRouteFinder());
}
_GP(route_finder_impl)->init_pathfinder();
}
void shutdown_pathfinder() {
if (_GP(route_finder_impl))
_GP(route_finder_impl)->shutdown_pathfinder();
}
void set_wallscreen(Bitmap *wallscreen) {
_GP(route_finder_impl)->set_wallscreen(wallscreen);
}
int can_see_from(int x1, int y1, int x2, int y2) {
return _GP(route_finder_impl)->can_see_from(x1, y1, x2, y2);
}
void get_lastcpos(int &lastcx, int &lastcy) {
_GP(route_finder_impl)->get_lastcpos(lastcx, lastcy);
}
int find_route(short srcx, short srcy, short xx, short yy, int move_speed_x, int move_speed_y, Bitmap *onscreen, int movlst, int nocross, int ignore_walls) {
return _GP(route_finder_impl)->find_route(srcx, srcy, xx, yy, move_speed_x, move_speed_y, onscreen, movlst, nocross, ignore_walls);
}
void recalculate_move_speeds(MoveList *mlsp, int old_speed_x, int old_speed_y, int new_speed_x, int new_speed_y) {
_GP(route_finder_impl)->recalculate_move_speeds(mlsp, old_speed_x, old_speed_y, new_speed_x, new_speed_y);
}
bool add_waypoint_direct(MoveList *mlsp, short x, short y, int move_speed_x, int move_speed_y) {
return _GP(route_finder_impl)->add_waypoint_direct(mlsp, x, y, move_speed_x, move_speed_y);
}
} // namespace AGS3
|