OpenFusion/src/Transport.hpp

36 lines
1.1 KiB
C++
Raw Normal View History

2020-08-29 11:43:33 +00:00
#pragma once
#include "servers/CNShardServer.hpp"
2020-09-17 02:27:21 +00:00
#include "NPCManager.hpp"
#include <unordered_map>
2020-09-25 18:42:31 +00:00
const int SLIDER_SPEED = 1200;
2020-10-20 14:40:50 +00:00
const int SLIDER_STOP_TICKS = 16;
2020-12-19 00:18:39 +00:00
const int SLIDER_GAP_SIZE = 45000;
2020-09-25 18:42:31 +00:00
2020-09-17 02:27:21 +00:00
struct WarpLocation;
2020-08-29 11:43:33 +00:00
struct TransportRoute {
int type, start, end, cost, mssSpeed, mssRouteNum;
};
struct TransportLocation {
int npcID, x, y, z;
};
namespace Transport {
extern std::map<int32_t, TransportRoute> Routes;
extern std::map<int32_t, TransportLocation> Locations;
extern std::map<int32_t, std::queue<WarpLocation>> SkywayPaths; // predefined skyway paths with points
extern std::unordered_map<CNSocket*, std::queue<WarpLocation>> SkywayQueues; // player sockets with queued broomstick points
2020-09-23 14:29:29 +00:00
extern std::unordered_map<int32_t, std::queue<WarpLocation>> NPCQueues; // NPC ids with queued pathing points
2020-08-29 11:43:33 +00:00
void init();
void testMssRoute(CNSocket *sock, std::vector<WarpLocation>* route);
2020-09-26 22:45:19 +00:00
void lerp(std::queue<WarpLocation>*, WarpLocation, WarpLocation, int, float);
void lerp(std::queue<WarpLocation>*, WarpLocation, WarpLocation, int);
2020-08-29 11:43:33 +00:00
}