diff --git a/.ipynb_checkpoints/Untitled0-checkpoint.ipynb b/.ipynb_checkpoints/Untitled0-checkpoint.ipynb new file mode 100644 index 0000000..64fab9d --- /dev/null +++ b/.ipynb_checkpoints/Untitled0-checkpoint.ipynb @@ -0,0 +1,9 @@ +{ + "metadata": { + "name": "", + "signature": "sha256:75ae90dd9efb8c17f74ffbcf0b84c75bf22ce3964745d68eb6461b00d14cc1b7" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [] +} \ No newline at end of file diff --git a/Untitled0.ipynb b/Untitled0.ipynb new file mode 100644 index 0000000..3cd86be --- /dev/null +++ b/Untitled0.ipynb @@ -0,0 +1,60 @@ +{ + "metadata": { + "name": "", + "signature": "sha256:f811fc625a7ce723c171d5490cda4d9b8501943811abe69feb9e028db8bdf7fc" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [ + { + "cells": [ + { + "cell_type": "code", + "collapsed": false, + "input": [ + "data_dir = '/Users/d/Desktop/data/Alyssa/Scan1/021/000001'\n", + "import os\n" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 12 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "level = 0\n", + "for root, dirs, files in os.walk(data_dir):\n", + " if 'image_coordinates.txt' in files:\n", + " print level\n", + " level += 1\n", + " \n", + " " + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "0\n" + ] + } + ], + "prompt_number": 13 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [], + "language": "python", + "metadata": {}, + "outputs": [] + } + ], + "metadata": {} + } + ] +} \ No newline at end of file diff --git a/_dojo/__init__.py b/_dojo/__init__.py index 0c8597a..5934b96 100644 --- a/_dojo/__init__.py +++ b/_dojo/__init__.py @@ -5,3 +5,4 @@ from websockets import Websockets from controller import Controller from database import Database +from neuroblocks import Neuroblocks diff --git a/_dojo/controller.py b/_dojo/controller.py index e7935bf..a8dd5ce 100644 --- a/_dojo/controller.py +++ b/_dojo/controller.py @@ -1,3 +1,4 @@ +import datetime import h5py import os, errno import json @@ -11,7 +12,7 @@ class Controller(object): - def __init__(self, mojo_dir, out_dir, tmp_dir, database): + def __init__(self, mojo_dir, out_dir, tmp_dir, database, neuroblocks=None, neuroblocks_project_id=None): ''' ''' self.__websocket = None @@ -32,6 +33,10 @@ def __init__(self, mojo_dir, out_dir, tmp_dir, database): self.__database = database + self.__neuroblocks = neuroblocks + + self.__neuroblocks_project_id = neuroblocks_project_id + if self.__database: self.__largest_id = self.__database.get_largest_id() else: @@ -63,7 +68,12 @@ def send_welcome(self): output = {} output['name'] = 'WELCOME' output['origin'] = 'SERVER' - output['value'] = '' + + config = {} + config['neuroblocks'] = self.__neuroblocks != None + config['neuroblocks_project_id'] = self.__neuroblocks_project_id + + output['value'] = config self.__websocket.send(json.dumps(output)) @@ -127,6 +137,19 @@ def send_problem_table(self, origin): self.__websocket.send(json.dumps(output)) + def send_restore_state(self, origin, state_id): + ''' + ''' + + output = {} + output['name'] = 'RESTORE_STATE' + output['origin'] = origin + output['value'] = self.__neuroblocks.get_state(state_id) + + self.__websocket.send(json.dumps(output)) + + + def on_message(self, message): ''' ''' @@ -137,6 +160,14 @@ def on_message(self, message): self.__users.append(input['origin']) + # + # let's check if we should restore a neuroblocks state + # + state_id = input['value']['neuroblocks_state_id'] + if state_id: + # we do have a state restore request + self.send_restore_state(input['origin'], state_id) + elif input['name'] == 'MERGETABLE': self.__merge_table = input['value'] @@ -178,6 +209,44 @@ def on_message(self, message): elif input['name'] == 'SAVE': self.save(input) + elif input['name'] == 'SAVE_STATE': + self.save_state(input) + + elif input['name'] == 'SAVE_PICK2D': + self.save_pick2d(input) + + elif input['name'] == 'SAVE_ACTION': + self.save_action(input) + + def save_action(self, input): + ''' + ''' + values = input['value'] + values['on'] = datetime.datetime.utcnow() + + self.__neuroblocks.save_action(values) + + + def save_pick2d(self, input): + ''' + ''' + values = input['value'] + values['on'] = datetime.datetime.utcnow() + + self.__neuroblocks.save_pick2d(values) + + + def save_state(self, input): + ''' + ''' + values = input['value'] + values['on'] = datetime.datetime.utcnow() + + + new_id = self.__neuroblocks.save_state(values) + + print 'Stored state', new_id + def adjust(self, input): ''' diff --git a/_dojo/datasource.py b/_dojo/datasource.py index 9fcf785..16dc42b 100644 --- a/_dojo/datasource.py +++ b/_dojo/datasource.py @@ -124,9 +124,16 @@ def get_volume(self, zoomlevel): tile_files = [] for d in dirs: + if d.startswith('.'): + continue + files = os.listdir(os.path.join(w_path,d)) for f in files: + + if f.startswith('.'): + continue + # check if we have an updated version for this tile if os.path.exists(os.path.join(w_path_tmp, d, f)): tile_files.append(os.path.join(w_path_tmp, d, f)) diff --git a/_dojo/neuroblocks.py b/_dojo/neuroblocks.py new file mode 100644 index 0000000..d340dc2 --- /dev/null +++ b/_dojo/neuroblocks.py @@ -0,0 +1,98 @@ +import pymongo +from bson.objectid import ObjectId + +class Neuroblocks(object): + + DATABASE = 'meteor' + + def __init__(self, server): + ''' + ''' + if server: + try: + self._connection = pymongo.Connection('mongodb://'+server+'/meteor') + self._db = self._connection[Neuroblocks.DATABASE] + print 'Connected to Neuroblocks.' + except: + print 'Connection to Neuroblocks failed.' + + + else: + self._connection = None + + def get_segmentation(self, id): + ''' + ''' + + return self._db.segmentation.find_one({"_id": id}) + + def get_segmentation_log(self, id): + ''' + ''' + return self._db.segmentationLog.find_one({"_id": id}) + + def save_state(self, state): + ''' + ''' + + # first store the screenshot + screenshot = state['screenshot'] + # delete state['screenshot']; + state.pop('screenshot', 0) + + screenshot_id = self._db.screenshotsApps.insert({'img':screenshot, 'type':''}) + + state['img_id'] = screenshot_id + + return self._db.appStates.insert(state) + + def save_pick2d(self, values): + ''' + ''' + return self._db.appPickSegment.insert(values) + + def save_action(self, values): + ''' + ''' + + db = self._db + + project_id = values['projectId'] + user_id = values['userId'] + segmentId2 = values['values'][0] + segmentId1 = values['values'][1] + date = values['on'] + + + segment1 = db.segmentation.find_one({"projectId":project_id, "id":segmentId1}); + + segment2 = db.segmentation.find_one({"projectId":project_id, "id":segmentId2}); + + db.segmentationLog.insert({'objId':segment1['_id'], + 'projectId':project_id, + 'operation':'merge', + 'by':user_id, + 'on': date, + 'obj': segment1, + 'objId2': segment2['_id'], + 'obj2':segment2 }); + + voxelsSum = segment1['voxels'] + segment2['voxels']; + db.segmentation.update({'_id':segment1['_id']}, + {'$set':{'voxels': voxelsSum, 'merged':2, 'lastUpdateOn': date, 'lastUpdateBy':user_id}}); + db.segmentation.update({'_id':segment2['_id']}, + {'$set':{ 'merged':1, 'lastUpdateOn': date, 'lastUpdateBy':user_id}}); + + print 'stored neuroblocks action' + + + def get_state(self, state_id): + ''' + ''' + + state = self._db.appStates.find_one({"_id": ObjectId(state_id)}) + state['_id'] = str(state['_id']) + state['img_id'] = str(state['img_id']) + state['on'] = str(state['on']) + + return state diff --git a/_dojo/scripts/iframe.html b/_dojo/scripts/iframe.html new file mode 100644 index 0000000..ee5a1cf --- /dev/null +++ b/_dojo/scripts/iframe.html @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/_dojo/scripts/sub.py b/_dojo/scripts/sub.py new file mode 100644 index 0000000..67eb8ff --- /dev/null +++ b/_dojo/scripts/sub.py @@ -0,0 +1,29 @@ +import cv2 +import numpy as np +import sys + + +factor = int(sys.argv[2]) + +out = np.zeros((16384/factor,16384/factor), dtype=np.uint8) + + +img = cv2.imread(sys.argv[1], cv2.CV_LOAD_IMAGE_GRAYSCALE) + +k = 0 +l = 0 + +for i in range(16384): + if i % factor == 0: + + for j in range(16384): + if j % factor == 0: + + out[k][l] = img[i][j] + + l += 1 + + l = 0 + k += 1 + +cv2.imwrite('/tmp/subplain.jpg', out) diff --git a/_dojo/scripts/subcv.py b/_dojo/scripts/subcv.py new file mode 100644 index 0000000..7f44fc4 --- /dev/null +++ b/_dojo/scripts/subcv.py @@ -0,0 +1,11 @@ +import cv2 +import numpy as np +import sys + + +factor = int(sys.argv[2]) + + +img = cv2.imread(sys.argv[1], cv2.CV_LOAD_IMAGE_GRAYSCALE) +# img = cv2.resize(img, (16384/factor, 16384/factor)) +# cv2.imwrite('/tmp/subcv.jpg', img) diff --git a/_dojo/viewer.py b/_dojo/viewer.py index ea08568..6ee7f4a 100644 --- a/_dojo/viewer.py +++ b/_dojo/viewer.py @@ -9,7 +9,7 @@ def __init__(self): ''' self.__query_viewer_regex = re.compile('^/dojo/.*$') - self.__web_dir = '_web/' + self.__web_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), '../_web/') def content_type(self, extension): ''' @@ -45,8 +45,6 @@ def handle(self, request): requested_file = self.__web_dir + url.replace('/dojo/', '') extension = os.path.splitext(requested_file)[1] - - if not os.path.exists(requested_file): return 'Error 404', 'text/html' diff --git a/_web/camera.js b/_web/camera.js index 930ce56..2f6b4a9 100644 --- a/_web/camera.js +++ b/_web/camera.js @@ -81,7 +81,7 @@ J.camera.prototype.zoom = function(x, y, delta) { // don't zoom when using adjust or split if (this._viewer._controller._split_mode != -1) return; - if (this._viewer._controller._adjust_mode != -1) return; + if (this._viewer._controller._adjust_mode != -1 && !DOJO.single_segment) return; // perform linear zooming until a new image zoom level is reached // then reset scale to 1 and show the image @@ -186,8 +186,10 @@ J.camera.prototype.slice_up = function() { if (this._z == this._viewer._image.max_z_tiles-1) return; // dont slice when using tools - if (this._viewer._controller._split_mode != -1) return; - if (this._viewer._controller._adjust_mode != -1) return; + if (!DOJO.single_segment) { + if (this._viewer._controller._split_mode != -1) return; + if (this._viewer._controller._adjust_mode != -1) return; + } this._viewer._controller.clear_exclamationmarks(); this._viewer._controller.reset_cursors(); @@ -207,8 +209,11 @@ J.camera.prototype.slice_down = function() { if (this._z == 0) return; // dont slice when using tile tools - if (this._viewer._controller._split_mode != -1) return; - if (this._viewer._controller._adjust_mode != -1) return; + if (!DOJO.single_segment) { + if (this._viewer._controller._split_mode != -1) return; + if (this._viewer._controller._adjust_mode != -1) return; + } + this._viewer._controller.clear_exclamationmarks(); this._viewer._controller.reset_cursors(); diff --git a/_web/controller.js b/_web/controller.js index 0b1076c..3b7fef8 100644 --- a/_web/controller.js +++ b/_web/controller.js @@ -45,6 +45,12 @@ J.controller = function(viewer) { this._brush_size = 3; this._brush_ijs = []; + this._neuroblocks = false; + this._neuroblocks_project_id = null; + this._neuroblocks_task_id = null; + this._neuroblocks_user_id = null; + this._neuroblocks_state_id = null; + this.create_gl_3d_labels(); }; @@ -86,7 +92,6 @@ J.controller.prototype.receive = function(data) { // we are the sender or the requester if (input.name == 'SPLITRESULT') { - console.log(input) this.show_split_line(input.value); return; } else if (input.name == 'SPLITDONE') { @@ -95,6 +100,8 @@ J.controller.prototype.receive = function(data) { this.finish_adjust(input.value); } else if (input.name == 'SAVED') { console.log('All saved. Yahoo!'); + } else if (input.name == 'RESTORE_STATE') { + this.restore_state(input.value); } return; @@ -102,7 +109,15 @@ J.controller.prototype.receive = function(data) { if (input.name == 'WELCOME') { - this.send('WELCOME', {}); + // check for the config + var config = input.value; + if (config['neuroblocks'] == true) { + this._neuroblocks = true; + this._neuroblocks_project_id = config['neuroblocks_project_id']; + DOJO.init_save_state_button(); + } + + this.send('WELCOME', {'neuroblocks_state_id': this._neuroblocks_state_id}); } else if (input.name == 'MERGETABLE') { @@ -134,8 +149,7 @@ J.controller.prototype.receive = function(data) { console.log('force reload'); this.reload_tiles(input.value); - - } + } }; @@ -1064,6 +1078,23 @@ J.controller.prototype.merge = function(id) { this.highlight(this._last_id); + // at this point, let's check for neuroblocks + if (this._neuroblocks) { + + // we want to store some extra information + var data = {}; + data['operation'] = 'merge'; + data['projectId'] = this._neuroblocks_project_id; + data['app'] = 'dojo'; + data['userId'] = this._neuroblocks_user_id; + // data['on'] = new Date(); <-- now on the server + data['taskId'] = this._neuroblocks_task_id; + data['values'] = [id, this._last_id]; + + this.send('SAVE_ACTION', data); + + } + }; J.controller.prototype.undo = function(x, y) { @@ -1314,3 +1345,92 @@ J.controller.prototype.end = function() { this.activate(null); }; + +J.controller.prototype.save_pick2d = function(id) { + + console.log('Picked segment', id); + + var data = {}; + data['projectId'] = this._neuroblocks_project_id; + data['taskId'] = this._neuroblocks_task_id; + data['userId'] = this._neuroblocks_user_id; + data['segmentId'] = id; + + this.send('SAVE_PICK2D', data); + +}; + +J.controller.prototype.save_state = function() { + + console.log('Saving state..'); + + // we need the merge table and the viewport + + // the merge table + var merge_table = this._merge_table; + + // the viewport + var camera = this._viewer._camera; + + var viewport = { + 'x': camera._x, + 'y': camera._y, + 'z': camera._z, + 'w': camera._w, + 'i_j': camera._i_j, + 'view': camera._view + } + + var screenshot = this._viewer._canvas.toDataURL('image/jpeg'); + + if (this._viewer._width >= this._viewer._height) { + var new_width = 200; + var new_height = this._viewer._height / (this._viewer._width / new_width); + } else { + var new_height = 200; + var new_width = this._viewer._width / (this._viewer._height / new_height); + } + + // resize the screenshot + resize_data_uri(screenshot, new_width, new_height, function(screenshot) { + + var data = {}; + data['projectId'] = this._neuroblocks_project_id; + data['mergeTable'] = merge_table; + data['viewPort'] = viewport; + data['screenshot'] = screenshot; + data['app'] = 'dojo'; + data['userId'] = this._neuroblocks_user_id; + // data['on'] = new Date(); <-- now on the server + data['taskId'] = this._neuroblocks_task_id; + + this.send('SAVE_STATE', data); + + + setTimeout(function() { + + DOJO.save_state_done(); + + }, 500); + + + }.bind(this)); + +}; + +J.controller.prototype.restore_state = function(state) { + + // the viewport + var camera = this._viewer._camera; + camera._x = state.viewPort.x; + camera._y = state.viewPort.y; + camera._z = state.viewPort.z; + camera._w = state.viewPort.w; + camera._i_j = state.viewPort.i_j; + camera._view = state.viewPort.view; + + this.update_merge_table(state.mergeTable) + + this._viewer.redraw(); + +}; diff --git a/_web/css/dojo.css b/_web/css/dojo.css index 3b1c047..4af145b 100644 --- a/_web/css/dojo.css +++ b/_web/css/dojo.css @@ -49,6 +49,17 @@ body { z-index: 1000; } +.threeDpanelLarge { + position: absolute; + left: 0px; + top: 0px; + width:100%; + height:100%; + background-color:black; + opacity: 1; + z-index: 1000; +} + #slicenumber { font-weight: bold; float: left; diff --git a/_web/dojo.js b/_web/dojo.js index 370780b..37f2657 100644 --- a/_web/dojo.js +++ b/_web/dojo.js @@ -12,14 +12,73 @@ DOJO.modes = { DOJO.threeD_active = false; DOJO.link_active = false; DOJO.mousemove_timeout = null; +DOJO.save_state_active = false; +DOJO.picking_active = false; +DOJO.single_segment = false; +DOJO.neuroblocks_threed_link = false; +DOJO.initial_threeD_id = null; -DOJO.init = function() { +DOJO.init = function(threeD) { + + var threeD = threeD || false; DOJO.viewer = new J.viewer('dojo1'); + + // check for neuroblocks args + args = parse_args(); + if (typeof(args['userName']) != 'undefined') { + DOJO.viewer._controller._origin = args['userName']; + } + if (typeof(args['userId']) != 'undefined') { + DOJO.viewer._controller._neuroblocks_user_id = args['userId']; + } + if (typeof(args['taskId']) != 'undefined') { + DOJO.viewer._controller._neuroblocks_task_id = args['taskId']; + } + if (typeof(args['appStateId']) != 'undefined') { + DOJO.viewer._controller._neuroblocks_state_id = args['appStateId']; + } + if (typeof(args['pick2d']) != 'undefined') { + DOJO.picking_active = true; + } + + DOJO.viewer.init(function() { DOJO.update_slice_number(1); + if (typeof(args['activeId']) != 'undefined') { + + var id = args['activeId']; + DOJO.viewer._controller._adjust_mode = 1; + DOJO.viewer._controller._adjust_id = id; + + DOJO.viewer._controller.activate(id); + DOJO.viewer._controller.highlight(id); + + DOJO.single_segment = true; + } + + if (threeD) { + + if (typeof(args['threeD_id']) != 'undefined') { + + DOJO.initial_threeD_id = args['threeD_id']; + + } + + if (typeof(args['link']) != 'undefined') { + + DOJO.neuroblocks_threed_link = true; + DOJO.viewer._websocket_nb = new J.websocketNB(); + } + + + DOJO.init_threeD(); + } + + + }); DOJO.setup_buttons(); @@ -35,7 +94,8 @@ DOJO.setup_buttons = function() { if (DOJO.mode != DOJO.modes.merge) { - DOJO.reset_tools(); + if (!DOJO.single_segment) + DOJO.reset_tools(); merge.style.display = 'none'; merge_selected.style.display = 'block'; @@ -163,6 +223,35 @@ DOJO.setup_buttons = function() { }; +DOJO.init_save_state_button = function() { + + var save_state = document.getElementById('save_state'); + var save_state_selected = document.getElementById('save_state_selected'); + + save_state.onclick = save_state_selected.onclick = function() { + + // link.style.border = '1px solid white'; + save_state.style.display = 'none'; + save_state_selected.style.display = 'block'; + + DOJO.save_state_active = true; + + DOJO.viewer._controller.save_state(); + + }; + +}; + +DOJO.save_state_done = function() { + + save_state.style.display = 'block'; + save_state_selected.style.display = 'none'; + + DOJO.save_state_active = false; + +}; + + DOJO.reset_tools = function() { DOJO.mode = DOJO.modes.pan_zoom; @@ -227,6 +316,20 @@ DOJO.onleftclick = function(x, y) { DOJO.viewer._controller.remove_3d_label(id); } + } else if (DOJO.picking_active) { + + // picking of segment in 2d + DOJO.viewer._controller.save_pick2d(id); + + // now show only the picked segment + DOJO.viewer._controller._adjust_mode = 1; + DOJO.viewer._controller._adjust_id = id; + + DOJO.viewer._controller.activate(id); + DOJO.viewer._controller.highlight(id); + + DOJO.single_segment = true; + } } @@ -487,6 +590,24 @@ DOJO.init_threeD = function() { // we also need to redraw the problem table DOJO.viewer._controller.redraw_exclamationmarks(); + if (DOJO.viewer._controller._neuroblocks && DOJO.neuroblocks_threed_link) { + console.log('ThreeD view for neuroblocks is ready.', 'pid:'+DOJO.viewer._controller._neuroblocks_project_id); + + // send the project id + DOJO.viewer._websocket_nb.send('pid:'+DOJO.viewer._controller._neuroblocks_project_id); + + } + + if (DOJO.initial_threeD_id) { + + // directly show one segment + DOJO.viewer._controller._use_3d_labels = true; + + DOJO.viewer._controller.add_fixed_3d_label(parseInt(DOJO.initial_threeD_id,10)); + DOJO.viewer._controller.add_3d_label(parseInt(DOJO.initial_threeD_id,10)); + + } + } r.interactor.onMouseDown = function() { diff --git a/_web/gfx/save_state.png b/_web/gfx/save_state.png new file mode 100644 index 0000000..d166bab Binary files /dev/null and b/_web/gfx/save_state.png differ diff --git a/_web/gfx/save_state_selected.png b/_web/gfx/save_state_selected.png new file mode 100644 index 0000000..2c4bebb Binary files /dev/null and b/_web/gfx/save_state_selected.png differ diff --git a/_web/index.html b/_web/index.html index 74bb0f5..67abf9e 100644 --- a/_web/index.html +++ b/_web/index.html @@ -343,6 +343,8 @@ + +
diff --git a/_web/lib/unzip.min.js b/_web/lib/unzip.min.js new file mode 100644 index 0000000..8d19e36 --- /dev/null +++ b/_web/lib/unzip.min.js @@ -0,0 +1,31 @@ +/** @license zlib.js 2012 - imaya [ https://github.com/imaya/zlib.js ] The MIT License */(function() {'use strict';function m(a){throw a;}var q=void 0,u,aa=this;function v(a,b){var c=a.split("."),d=aa;!(c[0]in d)&&d.execScript&&d.execScript("var "+c[0]);for(var f;c.length&&(f=c.shift());)!c.length&&b!==q?d[f]=b:d=d[f]?d[f]:d[f]={}};var w="undefined"!==typeof Uint8Array&&"undefined"!==typeof Uint16Array&&"undefined"!==typeof Uint32Array&&"undefined"!==typeof DataView;new (w?Uint8Array:Array)(256);var x;for(x=0;256>x;++x)for(var y=x,ba=7,y=y>>>1;y;y>>>=1)--ba;var z=[0,1996959894,3993919788,2567524794,124634137,1886057615,3915621685,2657392035,249268274,2044508324,3772115230,2547177864,162941995,2125561021,3887607047,2428444049,498536548,1789927666,4089016648,2227061214,450548861,1843258603,4107580753,2211677639,325883990,1684777152,4251122042,2321926636,335633487,1661365465,4195302755,2366115317,997073096,1281953886,3579855332,2724688242,1006888145,1258607687,3524101629,2768942443,901097722,1119000684,3686517206,2898065728,853044451,1172266101,3705015759, +2882616665,651767980,1373503546,3369554304,3218104598,565507253,1454621731,3485111705,3099436303,671266974,1594198024,3322730930,2970347812,795835527,1483230225,3244367275,3060149565,1994146192,31158534,2563907772,4023717930,1907459465,112637215,2680153253,3904427059,2013776290,251722036,2517215374,3775830040,2137656763,141376813,2439277719,3865271297,1802195444,476864866,2238001368,4066508878,1812370925,453092731,2181625025,4111451223,1706088902,314042704,2344532202,4240017532,1658658271,366619977, +2362670323,4224994405,1303535960,984961486,2747007092,3569037538,1256170817,1037604311,2765210733,3554079995,1131014506,879679996,2909243462,3663771856,1141124467,855842277,2852801631,3708648649,1342533948,654459306,3188396048,3373015174,1466479909,544179635,3110523913,3462522015,1591671054,702138776,2966460450,3352799412,1504918807,783551873,3082640443,3233442989,3988292384,2596254646,62317068,1957810842,3939845945,2647816111,81470997,1943803523,3814918930,2489596804,225274430,2053790376,3826175755, +2466906013,167816743,2097651377,4027552580,2265490386,503444072,1762050814,4150417245,2154129355,426522225,1852507879,4275313526,2312317920,282753626,1742555852,4189708143,2394877945,397917763,1622183637,3604390888,2714866558,953729732,1340076626,3518719985,2797360999,1068828381,1219638859,3624741850,2936675148,906185462,1090812512,3747672003,2825379669,829329135,1181335161,3412177804,3160834842,628085408,1382605366,3423369109,3138078467,570562233,1426400815,3317316542,2998733608,733239954,1555261956, +3268935591,3050360625,752459403,1541320221,2607071920,3965973030,1969922972,40735498,2617837225,3943577151,1913087877,83908371,2512341634,3803740692,2075208622,213261112,2463272603,3855990285,2094854071,198958881,2262029012,4057260610,1759359992,534414190,2176718541,4139329115,1873836001,414664567,2282248934,4279200368,1711684554,285281116,2405801727,4167216745,1634467795,376229701,2685067896,3608007406,1308918612,956543938,2808555105,3495958263,1231636301,1047427035,2932959818,3654703836,1088359270, +936918E3,2847714899,3736837829,1202900863,817233897,3183342108,3401237130,1404277552,615818150,3134207493,3453421203,1423857449,601450431,3009837614,3294710456,1567103746,711928724,3020668471,3272380065,1510334235,755167117],B=w?new Uint32Array(z):z;function C(a){var b=a.length,c=0,d=Number.POSITIVE_INFINITY,f,h,k,e,g,l,p,s,r,A;for(s=0;sc&&(c=a[s]),a[s]>=1;A=k<<16|s;for(r=l;rE;E++)switch(!0){case 143>=E:D.push([E+48,8]);break;case 255>=E:D.push([E-144+400,9]);break;case 279>=E:D.push([E-256+0,7]);break;case 287>=E:D.push([E-280+192,8]);break;default:m("invalid literal: "+E)} +var ca=function(){function a(a){switch(!0){case 3===a:return[257,a-3,0];case 4===a:return[258,a-4,0];case 5===a:return[259,a-5,0];case 6===a:return[260,a-6,0];case 7===a:return[261,a-7,0];case 8===a:return[262,a-8,0];case 9===a:return[263,a-9,0];case 10===a:return[264,a-10,0];case 12>=a:return[265,a-11,1];case 14>=a:return[266,a-13,1];case 16>=a:return[267,a-15,1];case 18>=a:return[268,a-17,1];case 22>=a:return[269,a-19,2];case 26>=a:return[270,a-23,2];case 30>=a:return[271,a-27,2];case 34>=a:return[272, +a-31,2];case 42>=a:return[273,a-35,3];case 50>=a:return[274,a-43,3];case 58>=a:return[275,a-51,3];case 66>=a:return[276,a-59,3];case 82>=a:return[277,a-67,4];case 98>=a:return[278,a-83,4];case 114>=a:return[279,a-99,4];case 130>=a:return[280,a-115,4];case 162>=a:return[281,a-131,5];case 194>=a:return[282,a-163,5];case 226>=a:return[283,a-195,5];case 257>=a:return[284,a-227,5];case 258===a:return[285,a-258,0];default:m("invalid length: "+a)}}var b=[],c,d;for(c=3;258>=c;c++)d=a(c),b[c]=d[2]<<24|d[1]<< +16|d[0];return b}();w&&new Uint32Array(ca);function F(a,b){this.l=[];this.m=32768;this.d=this.f=this.c=this.t=0;this.input=w?new Uint8Array(a):a;this.u=!1;this.n=G;this.L=!1;if(b||!(b={}))b.index&&(this.c=b.index),b.bufferSize&&(this.m=b.bufferSize),b.bufferType&&(this.n=b.bufferType),b.resize&&(this.L=b.resize);switch(this.n){case H:this.a=32768;this.b=new (w?Uint8Array:Array)(32768+this.m+258);break;case G:this.a=0;this.b=new (w?Uint8Array:Array)(this.m);this.e=this.X;this.B=this.S;this.q=this.W;break;default:m(Error("invalid inflate mode"))}} +var H=0,G=1; +F.prototype.r=function(){for(;!this.u;){var a=I(this,3);a&1&&(this.u=!0);a>>>=1;switch(a){case 0:var b=this.input,c=this.c,d=this.b,f=this.a,h=b.length,k=q,e=q,g=d.length,l=q;this.d=this.f=0;c+1>=h&&m(Error("invalid uncompressed block header: LEN"));k=b[c++]|b[c++]<<8;c+1>=h&&m(Error("invalid uncompressed block header: NLEN"));e=b[c++]|b[c++]<<8;k===~e&&m(Error("invalid uncompressed block header: length verify"));c+k>b.length&&m(Error("input buffer is broken"));switch(this.n){case H:for(;f+k>d.length;){l= +g-f;k-=l;if(w)d.set(b.subarray(c,c+l),f),f+=l,c+=l;else for(;l--;)d[f++]=b[c++];this.a=f;d=this.e();f=this.a}break;case G:for(;f+k>d.length;)d=this.e({H:2});break;default:m(Error("invalid inflate mode"))}if(w)d.set(b.subarray(c,c+k),f),f+=k,c+=k;else for(;k--;)d[f++]=b[c++];this.c=c;this.a=f;this.b=d;break;case 1:this.q(da,ea);break;case 2:fa(this);break;default:m(Error("unknown BTYPE: "+a))}}return this.B()}; +var J=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],K=w?new Uint16Array(J):J,L=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,258,258],M=w?new Uint16Array(L):L,ga=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0],O=w?new Uint8Array(ga):ga,ha=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577],ia=w?new Uint16Array(ha):ha,ja=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11, +12,12,13,13],P=w?new Uint8Array(ja):ja,Q=new (w?Uint8Array:Array)(288),R,la;R=0;for(la=Q.length;R=R?8:255>=R?9:279>=R?7:8;var da=C(Q),S=new (w?Uint8Array:Array)(30),T,ma;T=0;for(ma=S.length;T=k&&m(Error("input buffer is broken")),c|=f[h++]<>>b;a.d=d-b;a.c=h;return e} +function U(a,b){for(var c=a.f,d=a.d,f=a.input,h=a.c,k=f.length,e=b[0],g=b[1],l,p;d=k);)c|=f[h++]<>>16;a.f=c>>p;a.d=d-p;a.c=h;return l&65535} +function fa(a){function b(a,b,c){var d,e=this.K,f,g;for(g=0;gh)d>=f&&(this.a=d,c=this.e(),d=this.a),c[d++]=h;else{k=h-257;g=M[k];0=f&&(this.a=d,c=this.e(),d=this.a);for(;g--;)c[d]=c[d++-e]}for(;8<=this.d;)this.d-=8,this.c--;this.a=d}; +u.W=function(a,b){var c=this.b,d=this.a;this.C=a;for(var f=c.length,h,k,e,g;256!==(h=U(this,a));)if(256>h)d>=f&&(c=this.e(),f=c.length),c[d++]=h;else{k=h-257;g=M[k];0f&&(c=this.e(),f=c.length);for(;g--;)c[d]=c[d++-e]}for(;8<=this.d;)this.d-=8,this.c--;this.a=d}; +u.e=function(){var a=new (w?Uint8Array:Array)(this.a-32768),b=this.a-32768,c,d,f=this.b;if(w)a.set(f.subarray(32768,a.length));else{c=0;for(d=a.length;cc;++c)f[c]=f[b+c];this.a=32768;return f}; +u.X=function(a){var b,c=this.input.length/this.c+1|0,d,f,h,k=this.input,e=this.b;a&&("number"===typeof a.H&&(c=a.H),"number"===typeof a.Q&&(c+=a.Q));2>c?(d=(k.length-this.c)/this.C[2],h=258*(d/2)|0,f=hb&&(this.b.length=b),a=this.b);return this.buffer=a};function V(a){a=a||{};this.files=[];this.v=a.comment}V.prototype.M=function(a){this.j=a};V.prototype.s=function(a){var b=a[2]&65535|2;return b*(b^1)>>8&255};V.prototype.k=function(a,b){a[0]=(B[(a[0]^b)&255]^a[0]>>>8)>>>0;a[1]=(6681*(20173*(a[1]+(a[0]&255))>>>0)>>>0)+1>>>0;a[2]=(B[(a[2]^a[1]>>>24)&255]^a[2]>>>8)>>>0};V.prototype.U=function(a){var b=[305419896,591751049,878082192],c,d;w&&(b=new Uint32Array(b));c=0;for(d=a.length;c>>0;this.z=(a[b++]|a[b++]<<8|a[b++]<<16|a[b++]<<24)>>>0;this.J=(a[b++]|a[b++]<<8|a[b++]<<16|a[b++]<<24)>>>0;this.h=a[b++]|a[b++]<< +8;this.g=a[b++]|a[b++]<<8;this.F=a[b++]|a[b++]<<8;this.fa=a[b++]|a[b++]<<8;this.ha=a[b++]|a[b++]<<8;this.ga=a[b++]|a[b++]<<8|a[b++]<<16|a[b++]<<24;this.aa=(a[b++]|a[b++]<<8|a[b++]<<16|a[b++]<<24)>>>0;this.filename=String.fromCharCode.apply(null,w?a.subarray(b,b+=this.h):a.slice(b,b+=this.h));this.Y=w?a.subarray(b,b+=this.g):a.slice(b,b+=this.g);this.v=w?a.subarray(b,b+this.F):a.slice(b,b+this.F);this.length=b-this.offset};function pa(a,b){this.input=a;this.offset=b}var qa={O:1,da:8,ea:2048}; +pa.prototype.parse=function(){var a=this.input,b=this.offset;(a[b++]!==Y[0]||a[b++]!==Y[1]||a[b++]!==Y[2]||a[b++]!==Y[3])&&m(Error("invalid local file header signature"));this.$=a[b++]|a[b++]<<8;this.I=a[b++]|a[b++]<<8;this.A=a[b++]|a[b++]<<8;this.time=a[b++]|a[b++]<<8;this.V=a[b++]|a[b++]<<8;this.p=(a[b++]|a[b++]<<8|a[b++]<<16|a[b++]<<24)>>>0;this.z=(a[b++]|a[b++]<<8|a[b++]<<16|a[b++]<<24)>>>0;this.J=(a[b++]|a[b++]<<8|a[b++]<<16|a[b++]<<24)>>>0;this.h=a[b++]|a[b++]<<8;this.g=a[b++]|a[b++]<<8;this.filename= +String.fromCharCode.apply(null,w?a.subarray(b,b+=this.h):a.slice(b,b+=this.h));this.Y=w?a.subarray(b,b+=this.g):a.slice(b,b+=this.g);this.length=b-this.offset}; +function $(a){var b=[],c={},d,f,h,k;if(!a.i){if(a.o===q){var e=a.input,g;if(!a.D)a:{var l=a.input,p;for(p=l.length-12;0>>0;a.o=(e[g++]| +e[g++]<<8|e[g++]<<16|e[g++]<<24)>>>0;a.w=e[g++]|e[g++]<<8;a.v=w?e.subarray(g,g+a.w):e.slice(g,g+a.w)}d=a.o;h=0;for(k=a.ba;h>>8^B[(n^l[t])&255];for(N=ka>>3;N--;t+=8)n=n>>>8^B[(n^l[t])&255],n=n>>>8^B[(n^l[t+1])&255],n=n>>>8^B[(n^l[t+2])&255],n=n>>>8^B[(n^l[t+3])&255],n=n>>>8^B[(n^l[t+4])&255],n=n>>>8^B[(n^l[t+5])&255],n=n>>>8^B[(n^l[t+6])&255],n=n>>>8^B[(n^l[t+7])&255];p=(n^4294967295)>>>0;k.p!==p&&m(Error("wrong crc: file=0x"+ +k.p.toString(16)+", data=0x"+p.toString(16)))}return l};u.M=function(a){this.j=a};function ra(a,b,c){c^=a.s(b);a.k(b,c);return c}u.k=V.prototype.k;u.T=V.prototype.U;u.s=V.prototype.s;v("Zlib.Unzip",W);v("Zlib.Unzip.prototype.decompress",W.prototype.r);v("Zlib.Unzip.prototype.getFilenames",W.prototype.Z);v("Zlib.Unzip.prototype.setPassword",W.prototype.M);}).call(this); //@ sourceMappingURL=unzip.min.js.map diff --git a/_web/lib/zip.min.js b/_web/lib/zip.min.js new file mode 100644 index 0000000..075eba5 --- /dev/null +++ b/_web/lib/zip.min.js @@ -0,0 +1,37 @@ +/** @license zlib.js 2012 - imaya [ https://github.com/imaya/zlib.js ] The MIT License */(function() {'use strict';var n=void 0,y=!0,aa=this;function G(e,b){var a=e.split("."),d=aa;!(a[0]in d)&&d.execScript&&d.execScript("var "+a[0]);for(var c;a.length&&(c=a.shift());)!a.length&&b!==n?d[c]=b:d=d[c]?d[c]:d[c]={}};var H="undefined"!==typeof Uint8Array&&"undefined"!==typeof Uint16Array&&"undefined"!==typeof Uint32Array&&"undefined"!==typeof DataView;function ba(e,b){this.index="number"===typeof b?b:0;this.f=0;this.buffer=e instanceof(H?Uint8Array:Array)?e:new (H?Uint8Array:Array)(32768);if(2*this.buffer.length<=this.index)throw Error("invalid index");this.buffer.length<=this.index&&ca(this)}function ca(e){var b=e.buffer,a,d=b.length,c=new (H?Uint8Array:Array)(d<<1);if(H)c.set(b);else for(a=0;a>>8&255]<<16|L[e>>>16&255]<<8|L[e>>>24&255])>>32-b:L[e]>>8-b);if(8>b+f)l=l<>b-p-1&1,8===++f&&(f=0,d[c++]=L[l],l=0,c===d.length&&(d=ca(this)));d[c]=l;this.buffer=d;this.f=f;this.index=c};ba.prototype.finish=function(){var e=this.buffer,b=this.index,a;0ha;++ha){for(var U=ha,ja=U,ka=7,U=U>>>1;U;U>>>=1)ja<<=1,ja|=U&1,--ka;da[ha]=(ja<>>0}var L=da;function la(e){var b=n,a,d="number"===typeof b?b:b=0,c=e.length;a=-1;for(d=c&7;d--;++b)a=a>>>8^V[(a^e[b])&255];for(d=c>>3;d--;b+=8)a=a>>>8^V[(a^e[b])&255],a=a>>>8^V[(a^e[b+1])&255],a=a>>>8^V[(a^e[b+2])&255],a=a>>>8^V[(a^e[b+3])&255],a=a>>>8^V[(a^e[b+4])&255],a=a>>>8^V[(a^e[b+5])&255],a=a>>>8^V[(a^e[b+6])&255],a=a>>>8^V[(a^e[b+7])&255];return(a^4294967295)>>>0} +var ma=[0,1996959894,3993919788,2567524794,124634137,1886057615,3915621685,2657392035,249268274,2044508324,3772115230,2547177864,162941995,2125561021,3887607047,2428444049,498536548,1789927666,4089016648,2227061214,450548861,1843258603,4107580753,2211677639,325883990,1684777152,4251122042,2321926636,335633487,1661365465,4195302755,2366115317,997073096,1281953886,3579855332,2724688242,1006888145,1258607687,3524101629,2768942443,901097722,1119000684,3686517206,2898065728,853044451,1172266101,3705015759, +2882616665,651767980,1373503546,3369554304,3218104598,565507253,1454621731,3485111705,3099436303,671266974,1594198024,3322730930,2970347812,795835527,1483230225,3244367275,3060149565,1994146192,31158534,2563907772,4023717930,1907459465,112637215,2680153253,3904427059,2013776290,251722036,2517215374,3775830040,2137656763,141376813,2439277719,3865271297,1802195444,476864866,2238001368,4066508878,1812370925,453092731,2181625025,4111451223,1706088902,314042704,2344532202,4240017532,1658658271,366619977, +2362670323,4224994405,1303535960,984961486,2747007092,3569037538,1256170817,1037604311,2765210733,3554079995,1131014506,879679996,2909243462,3663771856,1141124467,855842277,2852801631,3708648649,1342533948,654459306,3188396048,3373015174,1466479909,544179635,3110523913,3462522015,1591671054,702138776,2966460450,3352799412,1504918807,783551873,3082640443,3233442989,3988292384,2596254646,62317068,1957810842,3939845945,2647816111,81470997,1943803523,3814918930,2489596804,225274430,2053790376,3826175755, +2466906013,167816743,2097651377,4027552580,2265490386,503444072,1762050814,4150417245,2154129355,426522225,1852507879,4275313526,2312317920,282753626,1742555852,4189708143,2394877945,397917763,1622183637,3604390888,2714866558,953729732,1340076626,3518719985,2797360999,1068828381,1219638859,3624741850,2936675148,906185462,1090812512,3747672003,2825379669,829329135,1181335161,3412177804,3160834842,628085408,1382605366,3423369109,3138078467,570562233,1426400815,3317316542,2998733608,733239954,1555261956, +3268935591,3050360625,752459403,1541320221,2607071920,3965973030,1969922972,40735498,2617837225,3943577151,1913087877,83908371,2512341634,3803740692,2075208622,213261112,2463272603,3855990285,2094854071,198958881,2262029012,4057260610,1759359992,534414190,2176718541,4139329115,1873836001,414664567,2282248934,4279200368,1711684554,285281116,2405801727,4167216745,1634467795,376229701,2685067896,3608007406,1308918612,956543938,2808555105,3495958263,1231636301,1047427035,2932959818,3654703836,1088359270, +936918E3,2847714899,3736837829,1202900863,817233897,3183342108,3401237130,1404277552,615818150,3134207493,3453421203,1423857449,601450431,3009837614,3294710456,1567103746,711928724,3020668471,3272380065,1510334235,755167117],V=H?new Uint32Array(ma):ma;function na(e){this.buffer=new (H?Uint16Array:Array)(2*e);this.length=0}na.prototype.getParent=function(e){return 2*((e-2)/4|0)};na.prototype.push=function(e,b){var a,d,c=this.buffer,f;a=this.length;c[this.length++]=b;for(c[this.length++]=e;0c[d])f=c[a],c[a]=c[d],c[d]=f,f=c[a+1],c[a+1]=c[d+1],c[d+1]=f,a=d;else break;return this.length}; +na.prototype.pop=function(){var e,b,a=this.buffer,d,c,f;b=a[0];e=a[1];this.length-=2;a[0]=a[this.length];a[1]=a[this.length+1];for(f=0;;){c=2*f+2;if(c>=this.length)break;c+2a[c]&&(c+=2);if(a[c]>a[f])d=a[f],a[f]=a[c],a[c]=d,d=a[f+1],a[f+1]=a[c+1],a[c+1]=d;else break;f=c}return{index:e,value:b,length:this.length}};function pa(e,b){this.k=qa;this.l=0;this.input=H&&e instanceof Array?new Uint8Array(e):e;this.e=0;b&&(b.lazy&&(this.l=b.lazy),"number"===typeof b.compressionType&&(this.k=b.compressionType),b.outputBuffer&&(this.c=H&&b.outputBuffer instanceof Array?new Uint8Array(b.outputBuffer):b.outputBuffer),"number"===typeof b.outputIndex&&(this.e=b.outputIndex));this.c||(this.c=new (H?Uint8Array:Array)(32768))}var qa=2,sa=[],Y; +for(Y=0;288>Y;Y++)switch(y){case 143>=Y:sa.push([Y+48,8]);break;case 255>=Y:sa.push([Y-144+400,9]);break;case 279>=Y:sa.push([Y-256+0,7]);break;case 287>=Y:sa.push([Y-280+192,8]);break;default:throw"invalid literal: "+Y;} +pa.prototype.g=function(){var e,b,a,d,c=this.input;switch(this.k){case 0:a=0;for(d=c.length;a>>8&255;m[h++]=q&255;m[h++]=q>>>8&255;if(H)m.set(f,h),h+=f.length,m=m.subarray(0,h);else{w=0;for(u=f.length;wx)for(;0x?x:138,E>x-3&&E=E?(M[K++]=17,M[K++]=E-3,S[17]++):(M[K++]=18,M[K++]=E-11,S[18]++),x-=E;else if(M[K++]=P[v],S[P[v]]++,x--,3>x)for(;0x?x:6,E>x-3&&ED;D++)oa[D]=X[g[D]];for(C=19;4=a:return[265,a-11,1];case 14>=a:return[266,a-13,1];case 16>=a:return[267,a-15,1];case 18>=a:return[268,a-17,1];case 22>=a:return[269,a-19,2];case 26>=a:return[270,a-23,2];case 30>=a:return[271,a-27,2];case 34>=a:return[272, +a-31,2];case 42>=a:return[273,a-35,3];case 50>=a:return[274,a-43,3];case 58>=a:return[275,a-51,3];case 66>=a:return[276,a-59,3];case 82>=a:return[277,a-67,4];case 98>=a:return[278,a-83,4];case 114>=a:return[279,a-99,4];case 130>=a:return[280,a-115,4];case 162>=a:return[281,a-131,5];case 194>=a:return[282,a-163,5];case 226>=a:return[283,a-195,5];case 257>=a:return[284,a-227,5];case 258===a:return[285,a-258,0];default:throw"invalid length: "+a;}}var b=[],a,d;for(a=3;258>=a;a++)d=e(a),b[a]=d[2]<<24| +d[1]<<16|d[0];return b}(),Ja=H?new Uint32Array(xa):xa; +function ta(e,b){function a(a,c){var b=a.n,d=[],e=0,f;f=Ja[a.length];d[e++]=f&65535;d[e++]=f>>16&255;d[e++]=f>>24;var g;switch(y){case 1===b:g=[0,b-1,0];break;case 2===b:g=[1,b-2,0];break;case 3===b:g=[2,b-3,0];break;case 4===b:g=[3,b-4,0];break;case 6>=b:g=[4,b-5,1];break;case 8>=b:g=[5,b-7,1];break;case 12>=b:g=[6,b-9,2];break;case 16>=b:g=[7,b-13,2];break;case 24>=b:g=[8,b-17,3];break;case 32>=b:g=[9,b-25,3];break;case 48>=b:g=[10,b-33,4];break;case 64>=b:g=[11,b-49,4];break;case 96>=b:g=[12,b- +65,5];break;case 128>=b:g=[13,b-97,5];break;case 192>=b:g=[14,b-129,6];break;case 256>=b:g=[15,b-193,6];break;case 384>=b:g=[16,b-257,7];break;case 512>=b:g=[17,b-385,7];break;case 768>=b:g=[18,b-513,8];break;case 1024>=b:g=[19,b-769,8];break;case 1536>=b:g=[20,b-1025,9];break;case 2048>=b:g=[21,b-1537,9];break;case 3072>=b:g=[22,b-2049,10];break;case 4096>=b:g=[23,b-3073,10];break;case 6144>=b:g=[24,b-4097,11];break;case 8192>=b:g=[25,b-6145,11];break;case 12288>=b:g=[26,b-8193,12];break;case 16384>= +b:g=[27,b-12289,12];break;case 24576>=b:g=[28,b-16385,13];break;case 32768>=b:g=[29,b-24577,13];break;default:throw"invalid distance";}f=g;d[e++]=f[0];d[e++]=f[1];d[e++]=f[2];var k,l;k=0;for(l=d.length;k=f;)t[f++]=0;for(f=0;29>=f;)r[f++]=0}t[256]=1;d=0;for(c=b.length;d=c){u&&a(u,-1);f=0;for(l=c-d;fl&&b+lf&&(c=d,f=l);if(258===l)break}return new wa(f,b-c)} +function ua(e,b){var a=e.length,d=new na(572),c=new (H?Uint8Array:Array)(a),f,l,p,k,q;if(!H)for(k=0;k2*c[h-1]+f[h]&&(c[h]=2*c[h-1]+f[h]),p[h]=Array(c[h]),k[h]=Array(c[h]);for(m=0;me[m]?(p[h][s]=t,k[h][s]=b,r+=2):(p[h][s]=e[m],k[h][s]=m,++m);q[h]=0;1===f[h]&&d(h)}return l} +function va(e){var b=new (H?Uint16Array:Array)(e.length),a=[],d=[],c=0,f,l,p,k;f=0;for(l=e.length;f>>=1}return b};function $(e){e=e||{};this.files=[];this.d=e.comment}var Ma=[80,75,1,2],Na=[80,75,3,4],Oa=[80,75,5,6];$.prototype.m=function(e,b){b=b||{};var a,d=e.length,c=0;H&&e instanceof Array&&(e=new Uint8Array(e));"number"!==typeof b.compressionMethod&&(b.compressionMethod=8);if(b.compress)switch(b.compressionMethod){case 0:break;case 8:c=la(e);e=(new pa(e,b.deflateOption)).g();a=y;break;default:throw Error("unknown compression method:"+b.compressionMethod);}this.files.push({buffer:e,a:b,j:a,r:!1,size:d,h:c})}; +$.prototype.q=function(e){this.i=e}; +$.prototype.g=function(){var e=this.files,b,a,d,c,f,l=0,p=0,k,q,w,u,m,h,s,t,r,Q,z,A,F,I,N,B,C,g,J;B=0;for(C=e.length;Bg;++g)F[g]=Qa(N,11===B?b.h&255:256*Math.random()|0);for(J=F.length;g>8&255;w=b.a.compressionMethod;a[d++]=a[c++]=w&255;a[d++]=a[c++]=w>>8&255;u=b.a.date||new Date;a[d++]=a[c++]=(u.getMinutes()&7)<<5|u.getSeconds()/2|0;a[d++]=a[c++]=u.getHours()<<3|u.getMinutes()>>3;a[d++]=a[c++]=(u.getMonth()+1&7)<<5|u.getDate();a[d++]=a[c++]=(u.getFullYear()- +1980&127)<<1|u.getMonth()+1>>3;m=b.h;a[d++]=a[c++]=m&255;a[d++]=a[c++]=m>>8&255;a[d++]=a[c++]=m>>16&255;a[d++]=a[c++]=m>>24&255;h=b.buffer.length;a[d++]=a[c++]=h&255;a[d++]=a[c++]=h>>8&255;a[d++]=a[c++]=h>>16&255;a[d++]=a[c++]=h>>24&255;s=b.size;a[d++]=a[c++]=s&255;a[d++]=a[c++]=s>>8&255;a[d++]=a[c++]=s>>16&255;a[d++]=a[c++]=s>>24&255;a[d++]=a[c++]=t&255;a[d++]=a[c++]=t>>8&255;a[d++]=a[c++]=0;a[d++]=a[c++]=0;a[c++]=r&255;a[c++]=r>>8&255;a[c++]=0;a[c++]=0;a[c++]=0;a[c++]=0;a[c++]=0;a[c++]=0;a[c++]= +0;a[c++]=0;a[c++]=k&255;a[c++]=k>>8&255;a[c++]=k>>16&255;a[c++]=k>>24&255;if(Q=b.a.filename)if(H)a.set(Q,d),a.set(Q,c),d+=t,c+=t;else for(g=0;g>8&255;a[f++]=C&255;a[f++]=C>>8&255;a[f++]=p&255;a[f++]=p>>8&255;a[f++]=p>>16&255;a[f++]=p>>24&255;a[f++]=l&255;a[f++]=l>>8&255;a[f++]=l>>16&255;a[f++]=l>>24&255;r=this.d?this.d.length:0;a[f++]=r&255;a[f++]=r>>8&255;if(this.d)if(H)a.set(this.d,f);else{g=0;for(J=r;g>8&255;Pa(e,b);return a^b} +function Pa(e,b){e[0]=(V[(e[0]^b)&255]^e[0]>>>8)>>>0;e[1]=(6681*(20173*(e[1]+(e[0]&255))>>>0)>>>0)+1>>>0;e[2]=(V[(e[2]^e[1]>>>24)&255]^e[2]>>>8)>>>0};function Ra(e,b){var a,d,c,f;if(Object.keys)a=Object.keys(b);else for(d in a=[],c=0,b)a[c++]=d;c=0;for(f=a.length;c + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + diff --git a/_web/util.js b/_web/util.js index 66959e4..89b9b76 100644 --- a/_web/util.js +++ b/_web/util.js @@ -155,3 +155,62 @@ function fire_resize_event() { evt.initUIEvent('resize', true, false, window, 0); window.dispatchEvent(evt); } + +function parse_args() { + + // from http://stackoverflow.com/a/7826782/1183453 + var args = document.location.search.substring(1).split('&'); + argsParsed = {}; + for (var i=0; i < args.length; i++) + { + arg = unescape(args[i]); + + if (arg.length == 0) { + continue; + } + + if (arg.indexOf('=') == -1) + { + argsParsed[arg.replace(new RegExp('/$'),'').trim()] = true; + } + else + { + kvp = arg.split('='); + argsParsed[kvp[0].trim()] = kvp[1].replace(new RegExp('/$'),'').trim(); + } + } + + return argsParsed; +} + +function resize_data_uri(data_uri, wantedWidth, wantedHeight, callback) { + + // FROM: http://stackoverflow.com/a/26884245/1183453 + + // We create an image to receive the Data URI + var img = document.createElement('img'); + + // When the event "onload" is triggered we can resize the image. + img.onload = function() + { + // We create a canvas and get its context. + var canvas = document.createElement('canvas'); + var ctx = canvas.getContext('2d'); + + // We set the dimensions at the wanted size. + canvas.width = wantedWidth; + canvas.height = wantedHeight; + + // We resize the image with the canvas method drawImage(); + ctx.drawImage(this, 0, 0, wantedWidth, wantedHeight); + + var dataURI = canvas.toDataURL(); + + callback(dataURI); + + }; + + // We put the Data URI in the image's src attribute + img.src = data_uri; + +} \ No newline at end of file diff --git a/_web/websocket_nb.js b/_web/websocket_nb.js new file mode 100644 index 0000000..14261ab --- /dev/null +++ b/_web/websocket_nb.js @@ -0,0 +1,73 @@ +var J = J || {}; + +J.websocketNB = function(viewer) { + + this._viewer = viewer; + + this._socket = null; + + this._port = 3003; + + this.connect(); + +}; + +J.websocketNB.prototype.connect = function() { + + try { + + var host = "ws://"+window.location.hostname+":"+this._port; + this._socket = new WebSocket(host); + + this._socket.onopen = this.on_open.bind(this); + this._socket.onmessage = this.on_message.bind(this); + this._socket.onclose = this.on_close.bind(this); + + } catch (e) { + console.log('Websocket connection failed.'); + } + +}; + +J.websocketNB.prototype.on_open = function() { + + console.log('Established websocket connection to Neuroblocks.'); + +}; + +J.websocketNB.prototype.on_message = function(m) { + + // console.log('Received', m); + // this._viewer._controller.receive(m); + + var ids = JSON.parse(m.data); + + DOJO.viewer._controller.reset_fixed_3d_labels(); + DOJO.viewer._controller.reset_3d_labels(); + DOJO.viewer._controller._use_3d_labels = true; + + + + for (var i=0; i