EvEmu  0.8.4
11 September 2021
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
MapService.cpp File Reference
#include "eve-server.h"
#include "PyServiceCD.h"
#include "StaticDataMgr.h"
#include "map/MapData.h"
#include "map/MapService.h"
#include "system/SystemManager.h"
#include "system/sov/SovereigntyDataMgr.h"
Include dependency graph for MapService.cpp:

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (MapService) MapService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( MapService  )

not handled yet...these are empty calls

Definition at line 36 of file MapService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

39 : PyService(mgr, "map"),
40  m_dispatch(new Dispatcher(this))
41 {
42  _SetCallDispatcher(m_dispatch);
43 
44  PyCallable_REG_CALL(MapService, GetHistory);
45  PyCallable_REG_CALL(MapService, GetBeaconCount); //ColorStarsByCynosuralFields
46  PyCallable_REG_CALL(MapService, GetStationCount); //ColorStarsByStationCount
47  PyCallable_REG_CALL(MapService, GetMyExtraMapInfo); //ColorStarsByCorpMates
48  PyCallable_REG_CALL(MapService, GetStationExtraInfo);
49  PyCallable_REG_CALL(MapService, GetSolarSystemVisits);
50  PyCallable_REG_CALL(MapService, GetLinkableJumpArrays);
51  PyCallable_REG_CALL(MapService, GetMyExtraMapInfoAgents); //ColorStarsByMyAgents
52  PyCallable_REG_CALL(MapService, GetSolarSystemPseudoSecurities);
53 
55  PyCallable_REG_CALL(MapService, GetStuckSystems);
56  PyCallable_REG_CALL(MapService, GetRecentSovActivity);
57  PyCallable_REG_CALL(MapService, GetDeadspaceAgentsMap);
58  PyCallable_REG_CALL(MapService, GetDeadspaceComplexMap);
59  PyCallable_REG_CALL(MapService, GetIncursionGlobalReport);
60  PyCallable_REG_CALL(MapService, GetSystemsInIncursions); //ColorStarsByIncursions
61  PyCallable_REG_CALL(MapService, GetSystemsInIncursionsGM); //ColorStarsByIncursions
62  PyCallable_REG_CALL(MapService, GetVictoryPoints);
63  PyCallable_REG_CALL(MapService, GetAllianceJumpBridges);
64  PyCallable_REG_CALL(MapService, GetAllianceBeacons);
65  PyCallable_REG_CALL(MapService, GetCurrentSovData);
66  // custom call for displaying all items in system
67  PyCallable_REG_CALL(MapService, GetCurrentEntities);
68 
69 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78