fix rendering issue in workshop board preview
[carveJwlIkooP6JGAAIwe30JlM.git] / addon.h
1 #ifndef ADDON_H
2 #define ADDON_H
3
4 #include "skaterift.h"
5 #include "vg/vg_steam_ugc.h"
6 #include "addon_types.h"
7 #include "vg/vg_mem_pool.h"
8
9 #include "world.h"
10 #include "player.h"
11
12 typedef struct addon_reg addon_reg;
13 typedef struct addon_cache_entry addon_cache_entry;
14 typedef struct addon_alias addon_alias;
15
16 struct addon_alias {
17 enum addon_type type;
18 PublishedFileId_t workshop_id;
19 char foldername[ ADDON_FOLDERNAME_MAX ];
20 };
21
22 #define ADDON_REG_HIDDEN 0x1
23 #define ADDON_REG_MTZERO 0x2
24 #define ADDON_REG_CITY 0x4
25 #define ADDON_REG_PREMIUM 0x8
26
27 struct {
28 struct addon_reg{
29 addon_alias alias;
30 u32 foldername_hash;
31 u8 metadata[512]; /* vg_msg buffer */
32 u32 metadata_len;
33 u32 flags;
34
35 u16 cache_id;
36
37 enum addon_state{
38 k_addon_state_none,
39 k_addon_state_indexed,
40 k_addon_state_indexed_absent /* gone but not forgotten */
41 }
42 state;
43 }
44 *registry;
45 u32 registry_count;
46
47 /* deffered: updates in main thread */
48 u32 registry_type_counts[k_addon_type_max];
49
50 struct addon_cache{
51 struct addon_cache_entry{
52 u32 reg_index;
53 addon_reg *reg_ptr; /* TODO: only use reg_index? */
54
55 vg_pool_node poolnode;
56
57 enum addon_cache_state{
58 k_addon_cache_state_none,
59 k_addon_cache_state_loaded,
60 k_addon_cache_state_load_request
61 }
62 state;
63 }
64 *allocs;
65 vg_pool pool;
66
67 void *items; /* the real data */
68 size_t stride;
69 }
70 cache[k_addon_type_max];
71 SDL_SpinLock sl_cache_using_resources;
72 }
73 static addon_system;
74
75 static void addon_system_init( void );
76 static u32 addon_count( enum addon_type type, u32 ignoreflags );
77 static addon_reg *get_addon_from_index( enum addon_type type, u32 index,
78 u32 ignoreflags );
79 static u32 get_index_from_addon( enum addon_type type, addon_reg *a );
80 static int addon_get_content_folder( addon_reg *reg, vg_str *folder, int async);
81
82 /* scanning routines */
83 static u32 addon_match( addon_alias *alias );
84 static int addon_alias_eq( addon_alias *a, addon_alias *b );
85 static void addon_alias_uid( addon_alias *alias, char buf[ADDON_UID_MAX] );
86 static int addon_uid_to_alias( const char *uid, addon_alias *alias );
87 static void invalidate_addon_alias( addon_alias *alias );
88 static void addon_mount_content_folder( enum addon_type type,
89 const char *base_folder,
90 const char *content_ext );
91 static void addon_mount_workshop_items(void);
92 static void async_addon_reg_update( void *data, u32 size );
93 static addon_reg *addon_mount_local_addon( const char *folder,
94 enum addon_type type,
95 const char *content_ext );
96 static u16 addon_cache_fetch( enum addon_type type, u32 reg_index );
97 static u16 addon_cache_alloc( enum addon_type type, u32 reg_index );
98 static void *addon_cache_item( enum addon_type type, u16 id );
99 static void *addon_cache_item_if_loaded( enum addon_type type, u16 id );
100 static void async_addon_setstate( void *data, u32 size );
101 static void addon_cache_load_loop(void);
102 static u16 addon_cache_create_viewer( enum addon_type type, u16 reg_id);
103
104 static void addon_cache_watch( enum addon_type type, u16 cache_id );
105 static void addon_cache_unwatch( enum addon_type type, u16 cache_id );
106 static u16 addon_cache_create_viewer_from_uid( enum addon_type type,
107 char uid[ADDON_UID_MAX] );
108
109 #endif /* ADDON_H */