File: openvr_capi.cpp.py

package info (click to toggle)
openvr 1.23.7~ds1-2
  • links: PTS, VCS
  • area: contrib
  • in suites: bookworm
  • size: 9,980 kB
  • sloc: cpp: 14,644; cs: 7,754; ansic: 2,920; python: 1,692; makefile: 7
file content (78 lines) | stat: -rwxr-xr-x 1,772 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
print ("""//======= Copyright (c) Valve Corporation, All rights reserved. ===============
//
// Purpose: This is a flattened version of the OpenVR_API interfaces.
// This file is auto-generated, do not edit it.
//
//=============================================================================
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <ShellAPI.h>
#endif

#if defined(OSX)
#include <sys/syslimits.h>
#include <signal.h>
#define MAX_PATH PATH_MAX
#elif defined(LINUX)
#include <linux/limits.h>
#include <signal.h>
#define MAX_PATH PATH_MAX
#elif defined(WIN32)
#else
#error
#endif

#ifdef POSIX
#include <fcntl.h>
#include <dlfcn.h> // dlopen,dlclose, et al
#include <unistd.h>
#include <stdarg.h>
#define HMODULE void *
#define GetProcAddress dlsym
#define OutputDebugString( pchMsg ) fputs( pchMsg, stderr )
#define _strnicmp strncasecmp
//#include "../../common/linuxhelpers_nodeps.h"
#endif

#ifdef OSX
#include <sys/sysctl.h>
#endif

#include <stdlib.h>
#include <assert.h>

#include "../headers/openvr.h"
#include "openvr_capi.h"

class FnTableRegistration
{
public:
	FnTableRegistration( const char *pchInterfaceName, void *pInterface )
	{
		char buffer[255];
		sprintf(buffer, "FnTable:%s", pchInterfaceName);
		m_pInterfaceRegistration = new GenericInterfaceRegistration( buffer, pInterface );
	}
	~FnTableRegistration()
	{
		delete m_pInterfaceRegistration;
	}
private:
	GenericInterfaceRegistration *m_pInterfaceRegistration;
};

""")


import json
import sys
with open('../headers/openvr_api.json') as data_file:
	data = json.load(data_file)

import api_shared
api_shared.outputfntablefuncs('vr', data)
api_shared.outputfntabledecls('vr', data)
api_shared.outputfntableinit('vr', data)
api_shared.outputfntableaccess('vr', data)