]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/archivezip/plugin.cpp
Merge branch 'TimePath/gtk++' into 'master'
[xonotic/netradiant.git] / plugins / archivezip / plugin.cpp
1 /*
2    Copyright (C) 2001-2006, William Joseph.
3    All Rights Reserved.
4
5    This file is part of GtkRadiant.
6
7    GtkRadiant is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    GtkRadiant is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GtkRadiant; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21
22 #include "iarchive.h"
23
24 #include "debugging/debugging.h"
25 #include "modulesystem/singletonmodule.h"
26
27 #include "archive.h"
28
29
30 class ArchiveZipAPI
31 {
32 _QERArchiveTable m_archivezip;
33 public:
34 typedef _QERArchiveTable Type;
35 STRING_CONSTANT( Name, "pk3" );
36
37 ArchiveZipAPI(){
38         m_archivezip.m_pfnOpenArchive = &OpenArchive;
39 }
40 _QERArchiveTable* getTable(){
41         return &m_archivezip;
42 }
43 };
44
45 typedef SingletonModule<ArchiveZipAPI> ArchiveZipModule;
46
47 ArchiveZipModule g_ArchiveZipModule;
48
49
50 class ArchivePK4API
51 {
52 _QERArchiveTable m_archivepk4;
53 public:
54 typedef _QERArchiveTable Type;
55 STRING_CONSTANT( Name, "pk4" );
56
57 ArchivePK4API(){
58         m_archivepk4.m_pfnOpenArchive = &OpenArchive;
59 }
60 _QERArchiveTable* getTable(){
61         return &m_archivepk4;
62 }
63 };
64
65 typedef SingletonModule<ArchivePK4API> ArchivePK4Module;
66
67 ArchivePK4Module g_ArchivePK4Module;
68
69
70 class ArchiveDPKAPI
71 {
72 _QERArchiveTable m_archivedpk;
73 public:
74 typedef _QERArchiveTable Type;
75 STRING_CONSTANT( Name, "dpk" );
76
77 ArchiveDPKAPI(){
78         m_archivedpk.m_pfnOpenArchive = &OpenArchive;
79 }
80 _QERArchiveTable* getTable(){
81         return &m_archivedpk;
82 }
83 };
84
85 typedef SingletonModule<ArchiveDPKAPI> ArchiveDPKModule;
86
87 ArchiveDPKModule g_ArchiveDPKModule;
88
89
90 extern "C" void RADIANT_DLLEXPORT Radiant_RegisterModules( ModuleServer& server ){
91         initialiseModule( server );
92
93         g_ArchiveZipModule.selfRegister();
94         g_ArchivePK4Module.selfRegister();
95         g_ArchiveDPKModule.selfRegister();
96 }