-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathcreateSystemCalls.ts
126 lines (113 loc) · 3.69 KB
/
createSystemCalls.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
import { AccountInterface } from "starknet";
import { Entity, getComponentValue } from "@dojoengine/recs";
import { uuid } from "@latticexyz/utils";
import { ClientComponents } from "./createClientComponents";
import { Direction, updatePositionWithDirection } from "../utils";
import {
getEntityIdFromKeys,
getEvents,
setComponentsFromEvents,
} from "@dojoengine/utils";
import { ContractComponents } from "./generated/contractComponents";
import type { IWorld } from "./generated/generated";
export type SystemCalls = ReturnType<typeof createSystemCalls>;
export function createSystemCalls(
{ client }: { client: IWorld },
contractComponents: ContractComponents,
{ Position, Moves }: ClientComponents
) {
const spawn = async (account: AccountInterface) => {
const entityId = getEntityIdFromKeys([
BigInt(account.address),
]) as Entity;
const positionId = uuid();
Position.addOverride(positionId, {
entity: entityId,
value: { player: BigInt(entityId), vec: { x: 10, y: 10 } },
});
const movesId = uuid();
Moves.addOverride(movesId, {
entity: entityId,
value: {
player: BigInt(entityId),
remaining: 100,
last_direction: 0,
},
});
try {
const { transaction_hash } = await client.actions.spawn({
account,
});
console.log(
await account.waitForTransaction(transaction_hash, {
retryInterval: 100,
})
);
setComponentsFromEvents(
contractComponents,
getEvents(
await account.waitForTransaction(transaction_hash, {
retryInterval: 100,
})
)
);
} catch (e) {
console.log(e);
Position.removeOverride(positionId);
Moves.removeOverride(movesId);
} finally {
Position.removeOverride(positionId);
Moves.removeOverride(movesId);
}
};
const move = async (account: AccountInterface, direction: Direction) => {
const entityId = getEntityIdFromKeys([
BigInt(account.address),
]) as Entity;
const positionId = uuid();
Position.addOverride(positionId, {
entity: entityId,
value: {
player: BigInt(entityId),
vec: updatePositionWithDirection(
direction,
getComponentValue(Position, entityId) as any
).vec,
},
});
const movesId = uuid();
Moves.addOverride(movesId, {
entity: entityId,
value: {
player: BigInt(entityId),
remaining:
(getComponentValue(Moves, entityId)?.remaining || 0) - 1,
},
});
try {
const { transaction_hash } = await client.actions.move({
account,
direction,
});
setComponentsFromEvents(
contractComponents,
getEvents(
await account.waitForTransaction(transaction_hash, {
retryInterval: 100,
})
)
);
} catch (e) {
console.log(e);
Position.removeOverride(positionId);
Moves.removeOverride(movesId);
} finally {
Position.removeOverride(positionId);
Moves.removeOverride(movesId);
}
};
return {
spawn,
move,
};
}