Example #1
0
        public Librg(Mode mode, ushort tickDelay, Vector3 worldSize, uint maxEntities)
        {
            ctx = new librg_ctx_t();

            ctx.mode         = (UInt16)mode;
            ctx.max_entities = maxEntities;
            ctx.tick_delay   = tickDelay;
            ctx.world_size   = worldSize;

            native.librg_init(ref ctx);
        }
Example #2
0
 [DllImport(DLL_PATH)] public static extern librg_entity_blob_t *librg_entity_blob(ref librg_ctx_t ctx, UInt32 entity);
Example #3
0
 [DllImport(DLL_PATH)] public static extern UInt32 librg_entity_type(ref librg_ctx_t ctx, UInt32 entity);
Example #4
0
 [DllImport(DLL_PATH)] public static extern bool librg_is_server(ref librg_ctx_t ctx);
Example #5
0
 [DllImport(DLL_PATH)] public static extern void librg_entity_iterate(ref librg_ctx_t ctx, UInt64 flags, librg_entity_cb callback);
Example #6
0
 [DllImport(DLL_PATH)] public static extern librg_peer_t *librg_entity_control_get(ref librg_ctx_t ctx, UInt32 entity);
Example #7
0
 [DllImport(DLL_PATH)] public static extern bool librg_entity_visibility_get_for(ref librg_ctx_t ctx, UInt32 entity, UInt32 target);
Example #8
0
 [DllImport(DLL_PATH)] public static extern UInt32 librg_entity_find(ref librg_ctx_t ctx, ref librg_peer_t peer);
Example #9
0
 [DllImport(DLL_PATH)] public static extern void librg_message_send_to(ref librg_ctx_t ctx, UInt16 id, ref librg_peer_t peer, void *data, UIntPtr size);
Example #10
0
 [DllImport(DLL_PATH)] public static extern void librg_network_remove(ref librg_ctx_t ctx, UInt16 id);
Example #11
0
 [DllImport(DLL_PATH)] public static extern void librg_network_add(ref librg_ctx_t ctx, UInt16 id, librg_message_cb callback);
Example #12
0
 [DllImport(DLL_PATH)] public static extern void librg_network_stop(ref librg_ctx_t ctx);
Example #13
0
 [DllImport(DLL_PATH)] public static extern void librg_network_start(ref librg_ctx_t ctx, librg_address_t address);
Example #14
0
 [DllImport(DLL_PATH)] public static extern bool librg_is_connected(ref librg_ctx_t ctx);
Example #15
0
 [DllImport(DLL_PATH)] public static extern bool librg_is_client(ref librg_ctx_t ctx);
Example #16
0
 [DllImport(DLL_PATH)] public static extern void librg_entity_destroy(ref librg_ctx_t ctx, UInt32 entity);
Example #17
0
 [DllImport(DLL_PATH)] public static extern UIntPtr librg_entity_query(ref librg_ctx_t ctx, UInt32 entity, UInt32 **result);
Example #18
0
 [DllImport(DLL_PATH)] public static extern void librg_message_send_instream_except(ref librg_ctx_t ctx, UInt16 id, UInt32 entity, ref librg_peer_t peer, void *data, UIntPtr size);
Example #19
0
 [DllImport(DLL_PATH)] public static extern void librg_entity_visibility_set_for(ref librg_ctx_t ctx, UInt32 entity, UInt32 target, bool state);
Example #20
0
 [DllImport(DLL_PATH)] public static extern UInt64 librg_event_add(ref librg_ctx_t ctx, UInt64 id, librg_event_cb callback);
Example #21
0
 [DllImport(DLL_PATH)] public static extern void librg_entity_control_set(ref librg_ctx_t ctx, UInt32 entity, ref librg_peer_t peer);
Example #22
0
 [DllImport(DLL_PATH)] public static extern void librg_event_trigger(ref librg_ctx_t ctx, UInt64 id, ref librg_event_t evt);
Example #23
0
 [DllImport(DLL_PATH)] public static extern void librg_entity_control_remove(ref librg_ctx_t ctx, UInt32 entity);
Example #24
0
 [DllImport(DLL_PATH)] public static extern void librg_event_remove(ref librg_ctx_t ctx, UInt64 id, UInt64 index);
Example #25
0
 [DllImport(DLL_PATH)] public static extern bool librg_entity_valid(ref librg_ctx_t ctx, UInt32 entity);
Example #26
0
 [DllImport(DLL_PATH)] public static extern void librg_tick(ref librg_ctx_t ctx);