]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/mapxml/plugin.cpp
more eol-style
[xonotic/netradiant.git] / plugins / mapxml / plugin.cpp
1 #include "plugin.h"
2
3 // =============================================================================
4 // Globals
5
6 // function tables
7 _QERFuncTable_1 g_FuncTable;
8 _QERShadersTable g_ShadersTable;
9 _QEREntityTable g_EntityTable;
10 _QERBrushTable g_BrushTable;
11 _QERPatchTable g_PatchTable;
12
13 // =============================================================================
14 // SYNAPSE
15
16 CSynapseServer* g_pSynapseServer = NULL;
17 CSynapseClientXMap g_SynapseClient;
18
19 static const XMLConfigEntry_t entries[] = 
20   { 
21     { SHADERS_MAJOR, SYN_REQUIRE, sizeof(g_ShadersTable), &g_ShadersTable },    
22     { NULL, SYN_UNKNOWN, 0, NULL } };
23   
24 #if __GNUC__ >= 4
25 #pragma GCC visibility push(default)
26 #endif
27 extern "C" CSynapseClient* SYNAPSE_DLL_EXPORT Synapse_EnumerateInterfaces( const char *version, CSynapseServer *pServer ) {
28 #if __GNUC__ >= 4
29 #pragma GCC visibility pop
30 #endif
31   if (strcmp(version, SYNAPSE_VERSION))
32   {
33     Syn_Printf("ERROR: synapse API version mismatch: should be '" SYNAPSE_VERSION "', got '%s'\n", version);
34     return NULL;
35   }
36   g_pSynapseServer = pServer;
37   g_pSynapseServer->IncRef();
38   Set_Syn_Printf(g_pSynapseServer->Get_Syn_Printf());
39   
40   g_SynapseClient.AddAPI(MAP_MAJOR, "mapxml", sizeof(_QERPlugMapTable));
41   g_SynapseClient.AddAPI(RADIANT_MAJOR, NULL, sizeof(_QERFuncTable_1), SYN_REQUIRE, &g_FuncTable);
42   g_SynapseClient.AddAPI(ENTITY_MAJOR, NULL, sizeof(g_EntityTable), SYN_REQUIRE, &g_EntityTable);
43   g_SynapseClient.AddAPI(BRUSH_MAJOR, NULL, sizeof(g_BrushTable), SYN_REQUIRE, &g_BrushTable);
44   g_SynapseClient.AddAPI(PATCH_MAJOR, NULL, sizeof(g_PatchTable), SYN_REQUIRE, &g_PatchTable);
45
46   if ( !g_SynapseClient.ConfigXML( pServer, NULL, entries ) ) {
47     return NULL;
48   }
49   
50   return &g_SynapseClient;
51 }
52
53 bool CSynapseClientXMap::RequestAPI(APIDescriptor_t *pAPI)
54 {
55   if (!strcmp(pAPI->major_name, MAP_MAJOR))
56   {
57     _QERPlugMapTable* pTable= static_cast<_QERPlugMapTable*>(pAPI->mpTable);
58     pTable->m_pfnMap_Read = &Map_Read;
59     pTable->m_pfnMap_Write = &Map_Write;
60     
61     return true;
62   }
63
64   Syn_Printf("ERROR: RequestAPI( '%s' ) not found in '%s'\n", pAPI->major_name, GetInfo());
65   return false;
66 }
67
68 #include "version.h"
69
70 const char* CSynapseClientXMap::GetInfo()
71 {
72   return "XMAP module built " __DATE__ " " RADIANT_VERSION;
73 }
74
75 const char* CSynapseClientXMap::GetName()
76 {
77   return "xmap";
78 }