-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdev.ts
60 lines (51 loc) · 1.72 KB
/
dev.ts
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
import { BufferSchema, Model, uint8, int16, uint16 } from './index'
import { Schema } from './schema'
import { string8, int64 } from './views'
const playerSchema = BufferSchema.schema('player', {
id: uint8,
name: { type: string8, length: 6 },
x: { type: int16, digits: 2 },
y: { type: int16, digits: 2 }
})
const towerSchema = BufferSchema.schema('tower', {
id: uint8,
health: uint8,
team: uint8
})
const mainSchema = BufferSchema.schema('snapshot', {
time: int64,
tick: uint16,
players: [playerSchema],
towers: [towerSchema]
})
const gameState = {
time: new Date().getTime(),
tick: 32580,
players: [
{ id: 0, name: 'Mistin', x: -14.43, y: 47.78 },
{ id: 1, name: 'Coobim', x: 21.85, y: -78.48 }
],
towers: [
{ id: 0, health: 100, team: 0 },
{ id: 1, health: 89, team: 0 },
{ id: 2, health: 45, team: 1 }
]
}
const mainModel = new Model(mainSchema)
const buffer = mainModel.toBuffer(gameState)
const data = mainModel.fromBuffer(buffer)
// toBuffer() shrunk the byte size from 241 to only 56
// that is -77% compression!
console.log(JSON.stringify(gameState).length) // 241
console.log(buffer.byteLength) // 56
console.log(JSON.stringify(data).length) // 241
//------------------------------------------------------------------
// Get the Schema IDs
//------------------------------------------------------------------
const bufferId = BufferSchema.getIdFromBuffer(buffer)
const schemaId = BufferSchema.getIdFromSchema(mainSchema)
const modelId = BufferSchema.getIdFromModel(mainModel)
console.log(`bufferId: ${bufferId}`)
console.log(`schemaId: ${schemaId}`)
console.log(`modelId: ${modelId}`)
if (bufferId === schemaId && schemaId === modelId) console.log(`Schema name is "${mainSchema.name}"`)