Implement sharing and loading grids from URL with a very naive encoding
This commit is contained in:
parent
ffebb1efb8
commit
17fd855ab2
6 changed files with 52 additions and 29 deletions
|
@ -34,10 +34,10 @@
|
||||||
filter: invert(1);
|
filter: invert(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
#save {
|
#export > * {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#save.active {
|
#save.active, #share.active {
|
||||||
display: initial;
|
display: initial;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,13 @@
|
||||||
import CellSet;
|
import CellSet;
|
||||||
import Grid;
|
import Grid;
|
||||||
|
import iter from Grid.Util;
|
||||||
import Toolbox;
|
import Toolbox;
|
||||||
|
import Mode;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
ize: colorize,
|
ize: colorize,
|
||||||
paint: paint
|
paint: paint,
|
||||||
|
set: set
|
||||||
};
|
};
|
||||||
|
|
||||||
function colorize(row, column, color) {
|
function colorize(row, column, color) {
|
||||||
|
@ -20,3 +23,18 @@ function paint(row, column) {
|
||||||
);
|
);
|
||||||
cellSet.iter(colorize);
|
cellSet.iter(colorize);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function set(grid) {
|
||||||
|
if(grid != undefined) {
|
||||||
|
iter(grid, function(row, column) {
|
||||||
|
if(grid[row][column] != undefined) {
|
||||||
|
colorize(row, column, grid[row][column]);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if(Grid.get().missing.isEmpty()) {
|
||||||
|
Mode.setEnabled(true, ['play', 'solve']);
|
||||||
|
} else {
|
||||||
|
Mode.set('edit');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -2,7 +2,6 @@ import * as File from WTK.File;
|
||||||
import * as Async from UnitJS.Async;
|
import * as Async from UnitJS.Async;
|
||||||
import Grid;
|
import Grid;
|
||||||
import Grid.Color;
|
import Grid.Color;
|
||||||
import iter from Grid.Util;
|
|
||||||
import Mode;
|
import Mode;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -24,27 +23,13 @@ function load() {
|
||||||
return File.load(input.files[0]);
|
return File.load(input.files[0]);
|
||||||
},
|
},
|
||||||
function(data) {
|
function(data) {
|
||||||
return Async.wrap(setGridData(JSON.parse(data)));
|
Grid.Color.set(JSON.parse(data));
|
||||||
|
return Async.wrap();
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function setGridData(data) {
|
|
||||||
if(data != undefined) {
|
|
||||||
iter(data, function(row, column) {
|
|
||||||
if(data[row][column] != undefined) {
|
|
||||||
Grid.Color.ize(row, column, data[row][column]);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
if(Grid.get().missing.isEmpty()) {
|
|
||||||
Mode.setEnabled(true, ['play', 'solve']);
|
|
||||||
} else {
|
|
||||||
Mode.set('edit');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function save() {
|
function save() {
|
||||||
File.save('data:text/json,' + JSON.stringify(Grid.get().colors), "grid.json");
|
File.save('data:text/json,' + JSON.stringify(Grid.get().colors), "grid.json");
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
import Grid;
|
import Grid;
|
||||||
import Grid.IO;
|
import Grid.IO;
|
||||||
|
import Grid.Color;
|
||||||
|
import Share;
|
||||||
import Toolbox;
|
import Toolbox;
|
||||||
import Mode;
|
import Mode;
|
||||||
import * as Play from Mode.Play;
|
import * as Play from Mode.Play;
|
||||||
|
@ -15,4 +17,8 @@ Mode.init({
|
||||||
edit: Edit
|
edit: Edit
|
||||||
});
|
});
|
||||||
Grid.init(size, Mode.dispatch);
|
Grid.init(size, Mode.dispatch);
|
||||||
|
if(window.location.search.length > 0) {
|
||||||
|
var urlSearchParameters = new URLSearchParams(window.location.search);
|
||||||
|
Grid.Color.set(Share.naiveDecode(size, urlSearchParameters.get('game')));
|
||||||
|
}
|
||||||
Grid.IO.init();
|
Grid.IO.init();
|
||||||
|
|
|
@ -10,7 +10,6 @@ Grid.get().element.addEventListener('mouseleave', function() {
|
||||||
down = false;
|
down = false;
|
||||||
});
|
});
|
||||||
var save = document.getElementById('save');
|
var save = document.getElementById('save');
|
||||||
var share = document.getElementById('share')
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
events: {
|
events: {
|
||||||
|
@ -26,11 +25,13 @@ function onEnter() {
|
||||||
GUI.activate(true, [Grid.get().element, Toolbox.get(), save]);
|
GUI.activate(true, [Grid.get().element, Toolbox.get(), save]);
|
||||||
if(!Grid.get().missing.isEmpty()) {
|
if(!Grid.get().missing.isEmpty()) {
|
||||||
Mode.setEnabled(false, ['play', 'solve']);
|
Mode.setEnabled(false, ['play', 'solve']);
|
||||||
|
} else {
|
||||||
|
Share.link(Grid.get().colors);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function onLeave() {
|
function onLeave() {
|
||||||
GUI.activate(false, [Grid.get().element, Toolbox.get(), save]);
|
GUI.activate(false, [Grid.get().element, Toolbox.get(), save, Share.get()]);
|
||||||
}
|
}
|
||||||
|
|
||||||
function onMousedown(e, row, column) {
|
function onMousedown(e, row, column) {
|
||||||
|
@ -66,6 +67,6 @@ function colorCell(row, column) {
|
||||||
function checkCompleteness() {
|
function checkCompleteness() {
|
||||||
if(Grid.get().missing.isEmpty()) {
|
if(Grid.get().missing.isEmpty()) {
|
||||||
Mode.setEnabled(true, ['play', 'solve']);
|
Mode.setEnabled(true, ['play', 'solve']);
|
||||||
share.href = '?game=' + Share.naiveEncode(Grid.get().data);
|
Share.link(Grid.get().colors);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
21
js/Share.js
21
js/Share.js
|
@ -1,13 +1,19 @@
|
||||||
import * as Decoder from Share.Decoder;
|
import * as Decoder from Share.Decoder;
|
||||||
import * as Encoder from Share.Encoder;
|
import * as Encoder from Share.Encoder;
|
||||||
import {iter, square} from Grid.Util;
|
import {generate, iter, square} from Grid.Util;
|
||||||
|
import GUI;
|
||||||
|
import Grid;
|
||||||
|
|
||||||
|
var share = document.getElementById('share')
|
||||||
|
|
||||||
return {
|
return {
|
||||||
compress: compress,
|
get: get,
|
||||||
naive: naive
|
naiveDecode: naiveDecode,
|
||||||
|
link: link
|
||||||
}
|
}
|
||||||
|
|
||||||
function compress(grid) {
|
function get() {
|
||||||
|
return share;
|
||||||
}
|
}
|
||||||
|
|
||||||
function naiveEncode(grid) {
|
function naiveEncode(grid) {
|
||||||
|
@ -19,6 +25,13 @@ function naiveEncode(grid) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function naiveDecode(size, input) {
|
function naiveDecode(size, input) {
|
||||||
|
if(input != undefined) {
|
||||||
var decoder = Decoder.make(input);
|
var decoder = Decoder.make(input);
|
||||||
return generate(size, size, function() {return decoder.int(3);});
|
return generate(size, size, function() {return decoder.int(3);});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function link(grid) {
|
||||||
|
share.href = '?game=' + naiveEncode(Grid.get().colors);
|
||||||
|
GUI.activate(true, share);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue