This commit is contained in:
Nishi 2026-01-12 07:28:24 +09:00
commit bcefd78599
Signed by: nishi
GPG key ID: 27EF69B208EB9343
9 changed files with 102 additions and 4 deletions

View file

@ -1,4 +1,4 @@
<?xml version="1.0">
<?xml version="1.0"?>
<manifest>
<sfx base="sfx">
<sfx name="bang">bang.ogg</sfx>

View file

@ -19,7 +19,7 @@ file(GLOB GearSrc_SRC src/*.c)
add_library(GearSrc SHARED ${GearSrc_SRC})
target_include_directories(GearSrc PUBLIC include)
target_compile_definitions(GearSrc PRIVATE _GEARSRC)
target_link_libraries(GearSrc PRIVATE ode lz4)
target_link_libraries(GearSrc PRIVATE xemil ode lz4)
target_link_options(GearSrc PRIVATE -static-libgcc -static-libstdc++)
if(NOT ${CMAKE_SYSTEM_NAME} STREQUAL "Windows")
target_link_libraries(GearSrc PRIVATE m)

View file

@ -1,4 +1,4 @@
<?xml version="1.0">
<?xml version="1.0"?>
<manifest>
<skybox base="skybox">
<left>left.png</left>

View file

@ -15,5 +15,6 @@
#include <GearSrc/Resource.h>
#include <GearSrc/Endian.h>
#include <GearSrc/SkyBox.h>
#include <GearSrc/XML.h>
#endif

View file

@ -7,6 +7,10 @@
#include <stdarg.h>
#include <math.h>
#ifdef _GEARSRC
#include <xemil.h>
#endif
#if defined(_GEARSRC) && defined(_WIN32)
#define GSDECL extern __declspec(dllexport)
#elif defined(_WIN32)

View file

@ -48,6 +48,7 @@ typedef struct _GSFile* GSFile;
typedef struct _GSResource* GSResource;
typedef struct _GSGL* GSGL;
typedef struct _GSSkyBox* GSSkyBox;
typedef xemil_t* GSXML;
#else
typedef void* GSClient;
typedef void* GSServer;
@ -56,6 +57,7 @@ typedef void* GSFile;
typedef void* GSResource;
typedef void* GSGL;
typedef void* GSSkyBox;
typedef void* GSXML;
#endif
typedef float GSNumber;
typedef GSNumber GSVector2[2];
@ -72,6 +74,7 @@ typedef void (*GSSleepCallback)(int ms);
struct _GSResourceKV {
char* key;
GSResource value;
GSXML xml;
};
#ifdef _GEARSRC

View file

@ -0,0 +1,18 @@
#ifndef __GEARSRC_XML_H__
#define __GEARSRC_XML_H__
#include <GearSrc/MachDep.h>
#include <GearSrc/TypeDefs.h>
#ifdef __cplusplus
extern "C" {
#endif
GSDECL GSXML GSXMLOpen(GSEngine engine, const char* path);
GSDECL void GSXMLClose(GSXML xml);
#ifdef __cplusplus
}
#endif
#endif

View file

@ -4,8 +4,9 @@
#include <GearSrc/Log.h>
#include <GearSrc/Client.h>
#include <GearSrc/Server.h>
#include <GearSrc/GL.h>
#include <GearSrc/Resource.h>
#include <GearSrc/XML.h>
#include <GearSrc/String.h>
#include <stb_ds.h>
@ -20,8 +21,26 @@ void GSInit(void) {
int GSEngineRegisterResource(GSEngine engine, const char* name, const char* path) {
GSResource resource;
if((resource = GSResourceOpen(engine, path)) != NULL) {
GSXML xl;
char* s = GSStringConcat(name, ":/manifest.xml");
int ind;
shput(engine->resource, name, resource);
if((xl = GSXMLOpen(engine, s)) == NULL) {
free(s);
GSResourceClose(resource);
shdel(engine->resource, name);
return 0;
}
free(s);
ind = shgeti(engine->resource, name);
engine->resource[ind].xml = xl;
return 1;
}
@ -76,6 +95,7 @@ GSEngine GSEngineCreate(GSEngineParam* param) {
void GSEngineDestroy(GSEngine engine) {
int i;
for(i = 0; i < shlen(engine->resource); i++) {
GSXMLClose(engine->resource[i].xml);
GSResourceClose(engine->resource[i].value);
}
shfree(engine->resource);

52
engine/src/xml.c Normal file
View file

@ -0,0 +1,52 @@
#include <GearSrc/XML.h>
#include <GearSrc/File.h>
typedef struct arg {
GSEngine engine;
const char* path;
} arg_t;
static int driver_open(xemil_t* handle) {
arg_t* arg = handle->drv_arg;
if((handle->drv_opaque = GSFileOpen(arg->engine, arg->path)) == NULL) return 0;
return 1;
}
static int driver_read(xemil_t* handle, void* data, int size) {
return GSFileRead(handle->drv_opaque, data, size);
}
static void driver_close(xemil_t* handle) {
GSFileClose(handle->drv_opaque);
}
static xl_driver_t driver_rec = {
driver_open,
driver_read,
driver_close};
static xl_driver_t* driver = &driver_rec;
GSXML GSXMLOpen(GSEngine engine, const char* path) {
arg_t arg;
xemil_t* xl;
arg.engine = engine;
arg.path = path;
xl = xl_open(driver, &arg);
if(xl == NULL) return NULL;
if(!xl_parse(xl)) {
xl_close(xl);
return NULL;
}
return xl;
}
void GSXMLClose(GSXML xml) {
xl_close(xml);
}