e5978ae3e33f5f3d42ef48e56a1911b0c30a9623
1 import { extractTime
} from "@/utils/timeControl";
3 // TODO: show game structure
5 // { gameId: "", players: [], timeControl: "", clocks: [] }
8 function dbOperation(callback
)
11 let DBOpenRequest
= window
.indexedDB
.open("vchess", 4);
13 DBOpenRequest
.onerror = function(event
) {
14 alert("Database error: " + event
.target
.errorCode
);
17 DBOpenRequest
.onsuccess = function(event
) {
18 db
= DBOpenRequest
.result
;
23 DBOpenRequest
.onupgradeneeded = function(event
) {
24 let db
= event
.target
.result
;
25 db
.onerror = function(event
) {
26 alert("Error while loading database: " + event
.target
.errorCode
);
28 // Create objectStore for vchess->games
29 db
.createObjectStore("games", { keyPath: "gameId" });
33 // Optional callback to get error status
34 function addGame(game
, callback
)
37 let transaction
= db
.transaction(["games"], "readwrite");
40 transaction
.oncomplete = function() {
41 callback({}); //everything's fine
43 transaction
.onerror = function() {
44 callback({errmsg: "addGame failed: " + transaction
.error
});
47 let objectStore
= transaction
.objectStore("games");
48 objectStore
.add(game
);
52 // Clear current live game from localStorage
54 localStorage
.deleteItem("gameInfo");
55 localStorage
.deleteItem("gameState");
61 return Object
.assign({},
62 JSON
.parse(localStorage
.getItem("gameInfo")),
63 JSON
.parse(localStorage
.getItem("gameState")));
66 // Only called internally after a score update
67 function transferToDb()
69 addGame(getCurrent(), (err
) => {
76 export const GameStorage
=
81 // Extract times (in [milli]seconds), set clocks, store in localStorage
82 const tc
= extractTime(o
.timeControl
);
84 // game infos: constant
91 timeControl: o
.timeControl
,
92 increment: tc
.increment
,
93 mode: "live", //function for live games only
96 // game state: will be updated
101 clocks: [...Array(o
.players
.length
)].fill(tc
.mainTime
),
102 initime: (o
.initime
? Date
.now() : undefined),
106 localStorage
.setItem("gameInfo", JSON
.stringify(gameInfo
));
107 localStorage
.setItem("gameState", JSON
.stringify(gameState
));
110 getInitime: function()
112 const gameState
= JSON
.parse(localStorage
.getItem("gameState"));
113 return gameState
.initime
;
117 // TODO: also option to takeback a move ?
118 // NOTE: for live games only (all on server for corr)
119 update: function(o
) //colorIdx, move, fen, addTime, initime, score
121 let gameState
= JSON
.parse(localStorage
.getItem("gameState"));
124 gameState
.moves
.push(o
.move);
125 gameState
.fen
= o
.fen
;
126 if (!!o
.addTime
) //NaN if first move in game
127 gameState
.clocks
[o
.colorIdx
] += o
.addTime
;
129 if (!!o
.initime
) //just a flag (true)
130 gameState
.initime
= Date
.now();
132 gameState
.score
= o
.score
;
133 localStorage
.setItem("gameState", JSON
.stringify(gameState
));
134 if (!!o
.score
&& o
.score
!= "*")
135 transferToDb(); //game is over
139 // Since DB requests are asynchronous, require a callback using the result
140 // TODO: option for remote retrieval (third arg, or just "gameRef")
141 getLocal: function(gameId
, callback
)
144 dbOperation((db
) => {
145 // TODO: if gameId is provided, limit search to gameId (just .get(gameId). ...)
146 let objectStore
= db
.transaction('games').objectStore('games');
147 objectStore
.openCursor().onsuccess = function(event
) {
148 var cursor
= event
.target
.result
;
149 // if there is still another cursor to go, keep running this code
152 games
.push(cursor
.value
);
161 // Delete a game in indexedDB
162 remove: function(gameId
, callback
)
164 dbOperation((db
) => {
165 let transaction
= db
.transaction(["games"], "readwrite");
168 transaction
.oncomplete = function() {
169 callback({}); //everything's fine
171 transaction
.onerror = function() {
172 callback({errmsg: "game removal failed: " + transaction
.error
});
175 transaction
.objectStore("games").delete(gameId
);
179 // Retrieve any live game from its identifiers (remote or not, running or not)
180 // NOTE: need callback because result might be obtained asynchronously
181 get: function(gameRef
, callback
)
183 const gid
= gameRef
.id
;
184 const rid
= gameRef
.rid
; //may be blank
187 // TODO: send request to server which forward to user sid == rid,
188 // need to listen to "remote game" event in main hall ?
189 return callback({}); //means "the game will arrive later" (TODO...)
192 const gameInfoStr
= localStorage
.getItem("gameInfo");
195 const gameInfo
= JSON
.parse(gameInfoStr
);
196 if (gameInfo
.gameId
== gid
)
198 const gameState
= JSON
.parse(localStorage
.getItem("gameState"));
199 return callback(Object
.assign({}, gameInfo
, gameState
));
203 // Game is local and not running
204 GameStorage
.getLocal(gid
, callback
);