2013-05-13 02:24:36 +04:00
|
|
|
/**********************************************************************
|
|
|
|
|
*
|
|
|
|
|
*
|
2013-05-17 02:30:24 +04:00
|
|
|
* TODO move DATA to a more logical context avoiding the global vars...
|
2013-05-13 02:24:36 +04:00
|
|
|
*
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
|
|
//var DEBUG = DEBUG != null ? DEBUG : true
|
2013-05-13 02:31:09 +04:00
|
|
|
|
2013-06-11 17:12:50 +04:00
|
|
|
var APP_NAME = 'ImageGrid.Viewer'
|
|
|
|
|
|
2013-05-31 20:10:23 +04:00
|
|
|
var DATA_ATTR = 'DATA'
|
|
|
|
|
|
2013-05-20 02:49:14 +04:00
|
|
|
var LOAD_SCREENS = 6
|
2013-05-25 14:24:29 +04:00
|
|
|
|
2013-05-20 02:49:14 +04:00
|
|
|
var DEFAULT_SCREEN_IMAGES = 4
|
2013-05-14 00:01:03 +04:00
|
|
|
var MAX_SCREEN_IMAGES = 12
|
2013-05-13 02:31:09 +04:00
|
|
|
|
2013-06-14 01:11:11 +04:00
|
|
|
var CACHE_DIR = '.ImageGrid'
|
|
|
|
|
var CACHE_DIR_VAR = '${CACHE_DIR}'
|
2013-05-26 02:55:41 +04:00
|
|
|
|
2013-05-17 23:18:55 +04:00
|
|
|
// A stub image, also here for documentation...
|
2013-05-14 21:49:05 +04:00
|
|
|
var STUB_IMAGE_DATA = {
|
2013-06-03 21:10:42 +04:00
|
|
|
// Entity GID...
|
2013-05-14 21:49:05 +04:00
|
|
|
id: 'SIZE',
|
2013-06-03 21:10:42 +04:00
|
|
|
|
|
|
|
|
// Entity type
|
|
|
|
|
// can be:
|
|
|
|
|
// - 'image'
|
|
|
|
|
// - 'group'
|
2013-05-17 23:18:55 +04:00
|
|
|
type: 'image',
|
2013-06-03 21:10:42 +04:00
|
|
|
|
|
|
|
|
// Entity state
|
|
|
|
|
// can be:
|
|
|
|
|
// - 'single'
|
|
|
|
|
// - 'grouped'
|
|
|
|
|
// - 'hidden'
|
|
|
|
|
// - ...
|
2013-05-17 23:18:55 +04:00
|
|
|
state: 'single',
|
2013-06-03 21:10:42 +04:00
|
|
|
|
|
|
|
|
// Creation time...
|
2013-05-14 21:49:05 +04:00
|
|
|
ctime: 0,
|
2013-06-03 21:10:42 +04:00
|
|
|
|
|
|
|
|
// Original path...
|
2013-05-14 21:49:05 +04:00
|
|
|
path: './images/sizes/900px/SIZE.jpg',
|
2013-06-03 21:10:42 +04:00
|
|
|
|
|
|
|
|
// Previews...
|
|
|
|
|
// NOTE: the actual values depend on specific image and can be
|
|
|
|
|
// any size...
|
2013-05-14 21:49:05 +04:00
|
|
|
preview: {
|
|
|
|
|
'150px': './images/sizes/150px/SIZE.jpg',
|
|
|
|
|
'350px': './images/sizes/350px/SIZE.jpg',
|
|
|
|
|
'900px': './images/sizes/900px/SIZE.jpg',
|
|
|
|
|
},
|
2013-06-03 21:10:42 +04:00
|
|
|
|
|
|
|
|
// Classes
|
|
|
|
|
// XXX currently unused...
|
2013-05-14 21:49:05 +04:00
|
|
|
classes: '',
|
2013-06-03 21:10:42 +04:00
|
|
|
|
|
|
|
|
// Image orientation
|
2013-06-04 22:01:41 +04:00
|
|
|
//
|
2013-06-03 21:10:42 +04:00
|
|
|
// can be:
|
|
|
|
|
// - 0 (default) - load as-is
|
|
|
|
|
// - 90 - rotate 90deg CW
|
|
|
|
|
// - 180 - rotate 180deg CW
|
|
|
|
|
// - 270 - rotate 270deg CW (90deg CCW)
|
2013-05-23 17:17:31 +04:00
|
|
|
orientation: 0,
|
2013-06-04 22:01:41 +04:00
|
|
|
|
|
|
|
|
// Image flip state
|
|
|
|
|
//
|
|
|
|
|
// can be:
|
|
|
|
|
// - null/undefined
|
|
|
|
|
// - array
|
|
|
|
|
//
|
|
|
|
|
// can contain:
|
|
|
|
|
// - 'vertical'
|
|
|
|
|
// - 'horizontal'
|
|
|
|
|
flipped: null,
|
2013-05-14 21:49:05 +04:00
|
|
|
}
|
|
|
|
|
|
2013-05-13 02:24:36 +04:00
|
|
|
// Data format...
|
|
|
|
|
var DATA = {
|
2013-06-03 21:10:42 +04:00
|
|
|
// Format version...
|
2013-05-19 22:48:28 +04:00
|
|
|
version: '2.0',
|
2013-06-02 20:14:39 +04:00
|
|
|
|
2013-06-03 21:10:42 +04:00
|
|
|
// Current position, GID...
|
2013-06-02 20:14:39 +04:00
|
|
|
current: null,
|
|
|
|
|
|
2013-06-03 21:10:42 +04:00
|
|
|
// The ribbon cache...
|
2013-05-13 02:24:36 +04:00
|
|
|
// in the simplest form this is a list of lists of GIDs
|
2013-06-02 20:14:39 +04:00
|
|
|
ribbons: [],
|
|
|
|
|
|
2013-06-03 21:10:42 +04:00
|
|
|
// Flat ordered list of images in current context...
|
2013-05-13 02:24:36 +04:00
|
|
|
// in the simplest form this is a list of GIDs.
|
2013-06-02 20:14:39 +04:00
|
|
|
order: [],
|
2013-05-19 22:48:28 +04:00
|
|
|
|
2013-06-03 21:10:42 +04:00
|
|
|
// This can be used to store the filename/path of the file containing
|
2013-05-19 22:48:28 +04:00
|
|
|
// image data...
|
|
|
|
|
image_file: null
|
2013-05-13 02:24:36 +04:00
|
|
|
}
|
|
|
|
|
|
2013-05-19 22:48:28 +04:00
|
|
|
// the images object, this is indexed by image GID and contains all
|
|
|
|
|
// the needed data...
|
|
|
|
|
var IMAGES = {}
|
2013-06-02 20:14:39 +04:00
|
|
|
// list of image GIDs that have been updated...
|
2013-05-28 02:17:24 +04:00
|
|
|
var IMAGES_UPDATED = []
|
2013-05-19 22:48:28 +04:00
|
|
|
|
2013-06-13 19:42:42 +04:00
|
|
|
var IMAGES_CREATED = false
|
|
|
|
|
|
2013-05-17 04:52:43 +04:00
|
|
|
var MARKED = []
|
2013-05-14 18:10:33 +04:00
|
|
|
|
2013-08-08 22:48:24 +04:00
|
|
|
var CROP_STACK = []
|
|
|
|
|
|
2013-09-21 05:47:54 +04:00
|
|
|
var CROP_MODES = []
|
|
|
|
|
|
2013-07-03 20:18:00 +04:00
|
|
|
// NOTE: these are named: <mode>-<feature>
|
2013-05-17 17:58:23 +04:00
|
|
|
var SETTINGS = {
|
2013-07-03 20:18:00 +04:00
|
|
|
'global-theme': null,
|
|
|
|
|
'ribbon-mode-screen-images': null,
|
|
|
|
|
'single-image-mode-screen-images': null,
|
2013-05-24 00:09:13 +04:00
|
|
|
'single-image-mode-proportions': null,
|
2013-07-03 20:18:00 +04:00
|
|
|
'ribbon-mode-image-info': 'off',
|
2013-05-17 17:58:23 +04:00
|
|
|
}
|
|
|
|
|
|
2013-05-25 14:24:29 +04:00
|
|
|
var BASE_URL = '.'
|
2013-06-08 18:28:10 +04:00
|
|
|
var BASE_URL_HISTORY = []
|
|
|
|
|
var BASE_URL_LIMIT = 10
|
2013-05-25 14:24:29 +04:00
|
|
|
|
2013-05-31 20:10:23 +04:00
|
|
|
var IMAGE_CACHE = []
|
|
|
|
|
|
2013-06-06 07:39:30 +04:00
|
|
|
|
|
|
|
|
// XXX make these usable for both saving and loading...
|
|
|
|
|
// XXX get these from config...
|
|
|
|
|
var IMAGES_FILE_DEFAULT = 'images.json'
|
|
|
|
|
var IMAGES_FILE_PATTERN = /^[0-9]*-images.json$/
|
|
|
|
|
var IMAGES_DIFF_FILE_PATTERN = /^[0-9]*-images-diff.json$/
|
|
|
|
|
|
|
|
|
|
var MARKED_FILE_DEFAULT = 'marked.json'
|
|
|
|
|
var MARKED_FILE_PATTERN = /^[0-9]*-marked.json$/
|
|
|
|
|
|
|
|
|
|
var DATA_FILE_DEFAULT = 'data.json'
|
|
|
|
|
var DATA_FILE_PATTERN = /^[0-9]*-data.json$/
|
|
|
|
|
|
|
|
|
|
var IMAGE_PATTERN = /.*\.(jpg|jpeg|png|gif)$/i
|
|
|
|
|
|
2013-06-02 23:07:18 +04:00
|
|
|
var UPDATE_SORT_ENABLED = false
|
|
|
|
|
// XXX for some reason the sync version appears to work faster...
|
|
|
|
|
var UPDATE_SYNC = false
|
|
|
|
|
|
2013-07-14 20:53:30 +04:00
|
|
|
// object to register all the worker queues...
|
|
|
|
|
var WORKERS = {}
|
|
|
|
|
|
2013-05-13 02:24:36 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
|
* Helpers
|
|
|
|
|
*/
|
|
|
|
|
|
2013-08-18 21:19:23 +04:00
|
|
|
// Zip concatenate lists from each argument.
|
|
|
|
|
//
|
|
|
|
|
// NOTE: this will skip null values.
|
|
|
|
|
function concatZip(){
|
|
|
|
|
var res = []
|
|
|
|
|
$.each(arguments, function(i, lst){
|
|
|
|
|
$.each(lst, function(j, e){
|
|
|
|
|
if(e != null){
|
|
|
|
|
if(res[j] == null){
|
|
|
|
|
res[j] = e
|
|
|
|
|
} else {
|
|
|
|
|
res[j] = res[j].concat(e)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
return res
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-05-31 20:10:23 +04:00
|
|
|
function makeDistanceCmp(start, get){
|
|
|
|
|
if(get == null){
|
|
|
|
|
return function(a, b){
|
|
|
|
|
return Math.abs(start - a) - Math.abs(start - b)
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
start = get(start)
|
|
|
|
|
return function(a, b){
|
|
|
|
|
return Math.abs(start - get(a)) - Math.abs(start - get(b))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Make a cmp function to compare two gids by distance from gid.
|
|
|
|
|
function makeImageGIDDistanceCmp(gid, get, order){
|
|
|
|
|
order = order == null ? DATA.order : order
|
|
|
|
|
return makeDistanceCmp(gid, get == null ?
|
|
|
|
|
function(a){
|
|
|
|
|
return order.indexOf(a)
|
|
|
|
|
}
|
|
|
|
|
: function(a){
|
|
|
|
|
return order.indexOf(get(a))
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-07-08 01:59:30 +04:00
|
|
|
// NOTE: essentially this is a 2D distance comparison from gid...
|
2013-05-31 20:10:23 +04:00
|
|
|
//
|
|
|
|
|
// XXX make this faster...
|
2013-06-01 18:21:48 +04:00
|
|
|
// XXX this is fun, but do we actually need this?
|
2013-05-31 20:10:23 +04:00
|
|
|
function makeImageRibbonDistanceCmp(gid, get, data, images){
|
|
|
|
|
data = data == null ? DATA : data
|
|
|
|
|
images = images == null ? IMAGES : images
|
|
|
|
|
|
|
|
|
|
// make a cmp index...
|
|
|
|
|
var ribbons = $.map(DATA.ribbons, function(r, i){
|
|
|
|
|
// sort each ribbon by distance from closest gid...
|
|
|
|
|
//return [r.slice().sort(makeImageGIDDistanceCmp(getGIDBefore(gid, i)))]
|
|
|
|
|
return [r.slice().sort(makeImageGIDDistanceCmp(gid))]
|
|
|
|
|
})
|
|
|
|
|
var gids = $.map(ribbons, function(e){ return [e[0]] })
|
|
|
|
|
var ri = gids.indexOf(gid)
|
|
|
|
|
|
|
|
|
|
function _getRibbon(gid){
|
|
|
|
|
for(var i=0; i < ribbons.length; i++){
|
|
|
|
|
if(ribbons[i].indexOf(gid) >= 0){
|
|
|
|
|
return ribbons[i]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _getDistance(a){
|
|
|
|
|
var r = _getRibbon(a)
|
|
|
|
|
var x = r.indexOf(a)
|
|
|
|
|
var y = Math.abs(gids.indexOf(r[0]) - ri)
|
|
|
|
|
|
|
|
|
|
// NOTE: this is cheating...
|
|
|
|
|
//return x + y
|
|
|
|
|
// calculate real distance...
|
|
|
|
|
return Math.sqrt(x*x + y*y)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(get == null){
|
|
|
|
|
return function(a, b){
|
|
|
|
|
return _getDistance(a) - _getDistance(b)
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
return function(a, b){
|
|
|
|
|
return _getDistance(get(a)) - _getDistance(get(b))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function cmp(a, b, get){
|
|
|
|
|
if(get == null){
|
|
|
|
|
return a - b
|
|
|
|
|
}
|
|
|
|
|
return get(a) - get(b)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-05-17 05:07:43 +04:00
|
|
|
// NOTE: this expects gids...
|
2013-05-31 20:10:23 +04:00
|
|
|
function imageDateCmp(a, b, get, data){
|
2013-05-20 02:49:14 +04:00
|
|
|
data = data == null ? IMAGES : data
|
2013-05-31 20:10:23 +04:00
|
|
|
if(get == null){
|
|
|
|
|
return data[b].ctime - data[a].ctime
|
|
|
|
|
} else {
|
|
|
|
|
return data[get(b)].ctime - data[get(a)].ctime
|
|
|
|
|
}
|
2013-05-17 05:07:43 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// NOTE: this expects gids...
|
2013-05-31 20:10:23 +04:00
|
|
|
function imageNameCmp(a, b, get, data){
|
2013-05-20 02:49:14 +04:00
|
|
|
data = data == null ? IMAGES : data
|
2013-05-31 20:10:23 +04:00
|
|
|
if(get == null){
|
2013-06-02 02:17:04 +04:00
|
|
|
a = data[a].path.split('/').pop()
|
|
|
|
|
b = data[b].path.split('/').pop()
|
2013-05-31 20:10:23 +04:00
|
|
|
} else {
|
2013-06-02 02:17:04 +04:00
|
|
|
a = data[get(a)].path.split('/').pop()
|
|
|
|
|
b = data[get(b)].path.split('/').pop()
|
2013-05-31 20:10:23 +04:00
|
|
|
}
|
2013-05-17 05:07:43 +04:00
|
|
|
if(a == b){
|
|
|
|
|
return 0
|
|
|
|
|
} else if(a < b){
|
|
|
|
|
return -1
|
|
|
|
|
} else {
|
|
|
|
|
return +1
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-31 20:10:23 +04:00
|
|
|
|
|
|
|
|
// NOTE: this expects gids...
|
|
|
|
|
function imageOrderCmp(a, b, get, data){
|
2013-05-29 02:41:35 +04:00
|
|
|
data = data == null ? DATA : data
|
2013-05-31 20:10:23 +04:00
|
|
|
if(get == null){
|
|
|
|
|
return data.order.indexOf(a) - data.order.indexOf(b)
|
|
|
|
|
} else {
|
|
|
|
|
return data.order.indexOf(get(a)) - data.order.indexOf(get(b))
|
|
|
|
|
}
|
2013-05-29 02:41:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-05-18 15:48:22 +04:00
|
|
|
// Check if a is at position i in lst
|
|
|
|
|
//
|
|
|
|
|
// This will return:
|
|
|
|
|
// - 0 if a is equal to position i
|
2013-05-19 17:26:53 +04:00
|
|
|
// - -1 if a is less than position i
|
|
|
|
|
// - +1 if a is greater than position i
|
2013-05-18 15:48:22 +04:00
|
|
|
//
|
2013-06-04 02:08:20 +04:00
|
|
|
// NOTE: the signature is different from the traditional cmp(a, b) so as
|
2013-05-18 15:48:22 +04:00
|
|
|
// to enable more complex comparisons involving adjacent elements
|
|
|
|
|
// (see isBetween(...) for an example)
|
2013-06-04 02:08:20 +04:00
|
|
|
function lcmp(a, i, lst, get){
|
|
|
|
|
var b = get == null ? lst[i] : get(lst[i])
|
|
|
|
|
|
2013-05-18 15:48:22 +04:00
|
|
|
if(a == b){
|
|
|
|
|
return 0
|
|
|
|
|
} else if(a < b){
|
|
|
|
|
return -1
|
|
|
|
|
} else {
|
|
|
|
|
return 1
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Check if a is at position i in lst or between positions i and i+1
|
|
|
|
|
//
|
|
|
|
|
// This will return:
|
2013-05-13 02:24:36 +04:00
|
|
|
// - 0 if a is equal at position i in lst or is between i and i+1
|
|
|
|
|
// - -1 if a is "below" position i
|
|
|
|
|
// - +1 if a is "above" position i
|
|
|
|
|
//
|
2013-06-04 02:08:20 +04:00
|
|
|
// NOTE: this is here mostly to make debugging easy...
|
|
|
|
|
function isBetween(a, i, lst, get){
|
|
|
|
|
var b = get == null ? lst[i] : get(lst[i])
|
2013-05-19 17:26:53 +04:00
|
|
|
|
|
|
|
|
// special case: tail...
|
|
|
|
|
if(i == lst.length-1 && a >= b){
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-13 02:24:36 +04:00
|
|
|
var c = lst[i+1]
|
2013-05-19 17:26:53 +04:00
|
|
|
|
2013-05-13 02:24:36 +04:00
|
|
|
// hit...
|
|
|
|
|
if(a == b || (a > b && a < c)){
|
|
|
|
|
return 0
|
|
|
|
|
// before...
|
|
|
|
|
} else if(a < b){
|
|
|
|
|
return -1
|
|
|
|
|
// later...
|
|
|
|
|
} else {
|
|
|
|
|
return 1
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-06-04 02:08:20 +04:00
|
|
|
/*
|
2013-05-13 02:24:36 +04:00
|
|
|
// Basic liner search...
|
2013-05-19 17:43:28 +04:00
|
|
|
//
|
|
|
|
|
// NOTE: this is here for testing reasons only...
|
2013-06-04 02:08:20 +04:00
|
|
|
function linSearch(target, lst, check, return_position, get){
|
2013-05-31 20:10:23 +04:00
|
|
|
check = check == null ? lcmp : check
|
2013-05-13 02:24:36 +04:00
|
|
|
|
|
|
|
|
for(var i=0; i < lst.length; i++){
|
2013-06-04 02:08:20 +04:00
|
|
|
if(check(target, i, lst, get) == 0){
|
2013-05-13 02:24:36 +04:00
|
|
|
return return_position ? i : lst[i]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// no hit...
|
|
|
|
|
return return_position ? -1 : null
|
|
|
|
|
}
|
2013-06-04 02:08:20 +04:00
|
|
|
Array.prototype.linSearch = function(target, cmp, get){
|
|
|
|
|
return linSearch(target, this, cmp, true, get)
|
2013-05-19 17:26:53 +04:00
|
|
|
}
|
2013-06-04 02:08:20 +04:00
|
|
|
*/
|
2013-05-13 02:24:36 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// Basic binary search implementation...
|
|
|
|
|
//
|
|
|
|
|
// NOTE: this will return the object by default, to return position set
|
|
|
|
|
// return_position to true.
|
2013-05-19 17:26:53 +04:00
|
|
|
// NOTE: by default this will use cmp as a predicate.
|
2013-06-04 02:08:20 +04:00
|
|
|
function binSearch(target, lst, check, return_position, get){
|
2013-05-31 20:10:23 +04:00
|
|
|
check = check == null ? lcmp : check
|
2013-05-19 17:26:53 +04:00
|
|
|
var h = 0
|
|
|
|
|
var t = lst.length - 1
|
|
|
|
|
var m, res
|
|
|
|
|
|
|
|
|
|
while(h <= t){
|
|
|
|
|
m = Math.floor((h + t)/2)
|
2013-06-04 02:08:20 +04:00
|
|
|
res = check(target, m, lst, get)
|
2013-05-19 17:26:53 +04:00
|
|
|
|
|
|
|
|
// match...
|
|
|
|
|
if(res == 0){
|
|
|
|
|
return return_position ? m : lst[m]
|
|
|
|
|
|
|
|
|
|
// below...
|
2013-05-13 02:24:36 +04:00
|
|
|
} else if(res < 0){
|
2013-05-19 17:26:53 +04:00
|
|
|
t = m - 1
|
|
|
|
|
|
|
|
|
|
// above...
|
2013-05-13 02:24:36 +04:00
|
|
|
} else {
|
2013-05-19 17:26:53 +04:00
|
|
|
h = m + 1
|
2013-05-13 02:24:36 +04:00
|
|
|
}
|
|
|
|
|
}
|
2013-05-19 17:26:53 +04:00
|
|
|
|
|
|
|
|
// no result...
|
2013-05-13 02:24:36 +04:00
|
|
|
return return_position ? -1 : null
|
|
|
|
|
}
|
2013-06-04 02:08:20 +04:00
|
|
|
Array.prototype.binSearch = function(target, cmp, get){
|
|
|
|
|
return binSearch(target, this, cmp, true, get)
|
2013-05-19 17:26:53 +04:00
|
|
|
}
|
2013-05-13 02:24:36 +04:00
|
|
|
|
|
|
|
|
|
2013-08-18 21:19:23 +04:00
|
|
|
// Orientation translation...
|
2013-07-08 01:59:30 +04:00
|
|
|
function orientationExif2ImageGrid(orientation){
|
|
|
|
|
return {
|
|
|
|
|
orientation: {
|
|
|
|
|
0: 0,
|
|
|
|
|
1: 0,
|
|
|
|
|
2: 0,
|
|
|
|
|
3: 180,
|
|
|
|
|
4: 0,
|
|
|
|
|
5: 90,
|
|
|
|
|
6: 90,
|
|
|
|
|
7: 90,
|
|
|
|
|
8: 270,
|
|
|
|
|
}[orientation],
|
|
|
|
|
flipped: {
|
|
|
|
|
0: null,
|
|
|
|
|
1: null,
|
|
|
|
|
2: ['horizontal'],
|
|
|
|
|
3: null,
|
|
|
|
|
4: ['vertical'],
|
|
|
|
|
5: ['vertical'],
|
|
|
|
|
6: null,
|
|
|
|
|
7: ['horizontal'],
|
|
|
|
|
8: null,
|
|
|
|
|
}[orientation]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-06-08 18:28:10 +04:00
|
|
|
// Base URL interface...
|
|
|
|
|
//
|
|
|
|
|
// NOTE: changing a base URL will trigger a baseURLChanged event...
|
|
|
|
|
function setBaseURL(url){
|
|
|
|
|
var old_url = BASE_URL
|
2013-06-09 02:26:22 +04:00
|
|
|
url = url.replace(/\/*$/, '/')
|
2013-06-08 18:28:10 +04:00
|
|
|
BASE_URL = url
|
|
|
|
|
$('.viewer').trigger('baseURLChanged', [old_url, url])
|
2013-07-08 01:59:30 +04:00
|
|
|
return url
|
2013-06-08 18:28:10 +04:00
|
|
|
}
|
|
|
|
|
function getBaseURL(){
|
|
|
|
|
return BASE_URL
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-05-28 21:59:38 +04:00
|
|
|
// Normalize the path...
|
|
|
|
|
//
|
|
|
|
|
// This will:
|
|
|
|
|
// - convert windows absolute paths 'X:\...' -> 'file:///X:/...'
|
|
|
|
|
// - if mode is 'absolute':
|
|
|
|
|
// - return absolute paths as-is
|
|
|
|
|
// - base relative paths on base/BASE_URL, returning an absolute
|
|
|
|
|
// path
|
|
|
|
|
// - if mode is relative:
|
|
|
|
|
// - if absolute path is based on base/BASE_URL make a relative
|
|
|
|
|
// to base path out of it buy cutting the base out.
|
|
|
|
|
// - return absolute paths as-is
|
|
|
|
|
// - return relative paths as-is
|
|
|
|
|
//
|
|
|
|
|
// NOTE: mode can be either 'absolute' (default) or 'relative'...
|
|
|
|
|
function normalizePath(url, base, mode){
|
2013-06-08 18:28:10 +04:00
|
|
|
base = base == null ? getBaseURL() : base
|
2013-06-10 07:49:20 +04:00
|
|
|
//mode = /^\./.test(base) && mode == null ? 'relative' : null
|
|
|
|
|
mode = mode == null ? 'absolute' : mode
|
2013-05-28 21:59:38 +04:00
|
|
|
|
2013-06-14 01:11:11 +04:00
|
|
|
res = ''
|
|
|
|
|
|
2013-05-28 21:59:38 +04:00
|
|
|
// windows path...
|
|
|
|
|
// - replace all '\\' with '/'...
|
|
|
|
|
url = url.replace(/\\/g, '/')
|
|
|
|
|
// - replace 'X:/...' with 'file:///X:/...'
|
|
|
|
|
if(/^[A-Z]:\//.test(url)){
|
|
|
|
|
url = 'file:///' + url
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// we got absolute path...
|
|
|
|
|
if(/^(file|http|https):\/\/.*$/.test(url)){
|
|
|
|
|
// check if we start with base, and remove it if so...
|
|
|
|
|
if(mode == 'relative' && url.substring(0, base.length) == base){
|
|
|
|
|
url = url.substring(base.length - 1)
|
2013-06-14 01:11:11 +04:00
|
|
|
res = url[0] == '/' ? url.substring(1) : url
|
2013-05-28 21:59:38 +04:00
|
|
|
|
|
|
|
|
// if it's a different path, return as-is
|
|
|
|
|
} else if(mode == 'absolute'){
|
2013-06-14 01:11:11 +04:00
|
|
|
res = url
|
2013-05-28 21:59:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// make an absolute path...
|
|
|
|
|
} else if(mode == 'absolute') {
|
|
|
|
|
// if base ends and url starts with '.' avoid making it a '..'
|
|
|
|
|
if(base[base.length-1] == '.' && url[0] == '.'){
|
2013-06-14 01:11:11 +04:00
|
|
|
res = base + url.substring(1)
|
2013-05-28 21:59:38 +04:00
|
|
|
// avoid creating '//'...
|
|
|
|
|
} else if(base[base.length-1] != '/' && url[0] != '/'){
|
2013-06-14 01:11:11 +04:00
|
|
|
res = base + '/' + url
|
2013-05-28 21:59:38 +04:00
|
|
|
} else {
|
2013-06-14 01:11:11 +04:00
|
|
|
res = base + url
|
2013-05-28 21:59:38 +04:00
|
|
|
}
|
|
|
|
|
}
|
2013-06-14 01:11:11 +04:00
|
|
|
|
|
|
|
|
// get the actual path...
|
|
|
|
|
res = res.replace('${CACHE_DIR}', CACHE_DIR)
|
|
|
|
|
|
|
|
|
|
// XXX legacy support...
|
|
|
|
|
res = res.replace('.ImageGridCache', CACHE_DIR)
|
|
|
|
|
|
|
|
|
|
return res
|
2013-05-28 21:59:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-13 23:13:16 +04:00
|
|
|
// like getRibbonIndex but get the index only via DATA...
|
|
|
|
|
function getDataRibbonIndex(gid, data){
|
|
|
|
|
gid = gid == null ? getImageGID() : gid
|
|
|
|
|
data = data == null ? DATA : data
|
|
|
|
|
|
|
|
|
|
for(var i=0; i < data.ribbons.length; i++){
|
|
|
|
|
if(data.ribbons[i].indexOf(gid) >= 0){
|
|
|
|
|
return i
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return -1
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-01 18:21:48 +04:00
|
|
|
// Same as getImageBefore(...), but uses gids and searches in DATA...
|
2013-05-19 17:26:53 +04:00
|
|
|
//
|
|
|
|
|
// NOTE: this uses it's own predicate...
|
2013-08-23 00:33:23 +04:00
|
|
|
function getGIDBefore(gid, ribbon, search, data){
|
2013-05-28 21:59:38 +04:00
|
|
|
gid = gid == null ? getImageGID() : gid
|
2013-08-23 00:33:23 +04:00
|
|
|
data = data == null ? DATA : data
|
2013-09-13 23:13:16 +04:00
|
|
|
// XXX get a ribbon without getting into DOM...
|
|
|
|
|
// ...dependency leek...
|
|
|
|
|
ribbon = ribbon == null ? getDataRibbonIndex(gid, data) : ribbon
|
|
|
|
|
search = search == null ? binSearch : search
|
2013-05-19 17:43:28 +04:00
|
|
|
//search = search == null ? match2(linSearch, binSearch) : search
|
2013-08-23 00:33:23 +04:00
|
|
|
ribbon = data.ribbons[ribbon]
|
|
|
|
|
var order = data.order
|
2013-05-13 02:24:36 +04:00
|
|
|
|
|
|
|
|
var target = order.indexOf(gid)
|
|
|
|
|
|
2013-05-19 17:26:53 +04:00
|
|
|
return search(target, ribbon, function(a, i, lst){
|
2013-05-13 02:24:36 +04:00
|
|
|
var b = order.indexOf(lst[i])
|
2013-05-19 17:26:53 +04:00
|
|
|
|
|
|
|
|
// special case: tail...
|
|
|
|
|
if(i == lst.length-1 && a >= b){
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-13 02:24:36 +04:00
|
|
|
var c = order.indexOf(lst[i+1])
|
2013-05-19 17:26:53 +04:00
|
|
|
|
2013-05-13 02:24:36 +04:00
|
|
|
// hit...
|
|
|
|
|
if(a == b || (a > b && a < c)){
|
|
|
|
|
return 0
|
2013-05-19 17:26:53 +04:00
|
|
|
|
2013-05-13 02:24:36 +04:00
|
|
|
// before...
|
|
|
|
|
} else if(a < b){
|
|
|
|
|
return -1
|
2013-05-19 17:26:53 +04:00
|
|
|
|
2013-05-13 02:24:36 +04:00
|
|
|
// later...
|
|
|
|
|
} else {
|
|
|
|
|
return 1
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-05-31 20:10:23 +04:00
|
|
|
// Get "count" of GIDs starting with a given gid ("from")
|
2013-05-28 02:17:24 +04:00
|
|
|
//
|
|
|
|
|
// NOTE: this will not include the 'from' GID in the resulting list,
|
|
|
|
|
// unless inclusive is set to true.
|
2013-05-13 02:24:36 +04:00
|
|
|
// NOTE: count can be either negative or positive, this will indicate
|
|
|
|
|
// load direction...
|
2013-05-28 02:17:24 +04:00
|
|
|
// NOTE: this can calculate the ribbon number where the image is located.
|
2013-05-13 02:24:36 +04:00
|
|
|
// NOTE: if an image can be in more than one ribbon, one MUST suply the
|
|
|
|
|
// correct ribbon number...
|
2013-05-28 02:17:24 +04:00
|
|
|
//
|
2013-05-13 02:24:36 +04:00
|
|
|
// XXX do we need more checking???
|
2013-08-13 18:15:48 +04:00
|
|
|
// XXX Race condition: when this is called while DATA is not yet fully
|
|
|
|
|
// loaded (old data), the from gid will not be present in
|
|
|
|
|
// DATA.ribbons...
|
2013-05-13 02:24:36 +04:00
|
|
|
function getImageGIDs(from, count, ribbon, inclusive){
|
|
|
|
|
if(count == 0){
|
|
|
|
|
return []
|
|
|
|
|
}
|
|
|
|
|
// ribbon default value...
|
2013-08-13 18:15:48 +04:00
|
|
|
// XXX Race condition: if DATA is not yet loaded this can return
|
|
|
|
|
// ribbon == null...
|
2013-05-13 02:24:36 +04:00
|
|
|
if(ribbon == null){
|
|
|
|
|
$(DATA.ribbons).each(function(i, e){
|
|
|
|
|
if(e.indexOf(from) >= 0){
|
|
|
|
|
ribbon = i
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
ribbon = DATA.ribbons[ribbon]
|
|
|
|
|
|
2013-08-24 02:48:28 +04:00
|
|
|
// ribbon this is empty or non-existant...
|
|
|
|
|
// XXX need to check when can we get a ribbon == undefined case...
|
|
|
|
|
// ...race?
|
|
|
|
|
//if(ribbon == null){
|
|
|
|
|
// // XXX
|
|
|
|
|
//}
|
|
|
|
|
if(ribbon == null || ribbon.length == 0){
|
2013-08-23 04:20:47 +04:00
|
|
|
return []
|
|
|
|
|
}
|
2013-05-13 02:24:36 +04:00
|
|
|
if(count > 0){
|
|
|
|
|
var c = inclusive == null ? 1 : 0
|
|
|
|
|
var start = ribbon.indexOf(from) + c
|
|
|
|
|
return ribbon.slice(start, start + count)
|
|
|
|
|
} else {
|
|
|
|
|
var c = inclusive == null ? 0 : 1
|
|
|
|
|
var end = ribbon.indexOf(from)
|
|
|
|
|
return ribbon.slice((Math.abs(count) >= end ? 0 : end + count + c), end + c)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-05-17 01:04:20 +04:00
|
|
|
// Select best preview by size...
|
|
|
|
|
//
|
|
|
|
|
// NOTE: this will use the original if everything else is smaller...
|
|
|
|
|
function getBestPreview(gid, size){
|
2013-05-28 21:59:38 +04:00
|
|
|
gid = gid == null ? getImageGID(): gid
|
2013-05-17 16:21:03 +04:00
|
|
|
size = size == null ? getVisibleImageSize('max') : size
|
2013-05-17 01:04:20 +04:00
|
|
|
var s
|
2013-05-19 22:48:28 +04:00
|
|
|
var img_data = IMAGES[gid]
|
2013-05-17 01:04:20 +04:00
|
|
|
var url = img_data.path
|
|
|
|
|
var preview_size = 'Original'
|
|
|
|
|
var p = Infinity
|
|
|
|
|
|
|
|
|
|
for(var k in img_data.preview){
|
|
|
|
|
s = parseInt(k)
|
|
|
|
|
if(s < p && s > size){
|
|
|
|
|
preview_size = k
|
|
|
|
|
p = s
|
|
|
|
|
url = img_data.preview[k]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return {
|
2013-05-25 14:24:29 +04:00
|
|
|
url: normalizePath(url),
|
2013-05-17 01:04:20 +04:00
|
|
|
size: preview_size
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-06-02 02:17:04 +04:00
|
|
|
// Resort the ribbons by DATA.order and re-render...
|
|
|
|
|
//
|
|
|
|
|
// NOTE: due to how the format is structured, to sort the images one
|
|
|
|
|
// only needs to sort DATA.order and call this.
|
2013-06-02 23:07:18 +04:00
|
|
|
function updateRibbonOrder(no_reload_viewer){
|
2013-06-02 02:17:04 +04:00
|
|
|
for(var i=0; i < DATA.ribbons.length; i++){
|
|
|
|
|
DATA.ribbons[i].sort(imageOrderCmp)
|
|
|
|
|
}
|
2013-06-02 23:07:18 +04:00
|
|
|
if(!no_reload_viewer){
|
|
|
|
|
reloadViewer()
|
|
|
|
|
}
|
2013-06-02 02:17:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-07-08 01:59:30 +04:00
|
|
|
// get list of gids sorted by proximity to current gid
|
|
|
|
|
//
|
|
|
|
|
// NOTE: the distance used is the actual 2D distance...
|
|
|
|
|
function getClosestGIDs(gid){
|
|
|
|
|
gid = gid == null ? getImageGID() : gid
|
|
|
|
|
//return DATA.order.slice().sort(makeImageGIDDistanceCmp(gid))
|
|
|
|
|
return DATA.order.slice().sort(makeImageRibbonDistanceCmp(gid))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-05-13 02:31:09 +04:00
|
|
|
|
2013-05-28 19:25:13 +04:00
|
|
|
/**********************************************************************
|
|
|
|
|
* Constructors
|
|
|
|
|
*/
|
|
|
|
|
|
2013-06-02 23:07:18 +04:00
|
|
|
// Construct an IMAGES object from list of urls.
|
|
|
|
|
//
|
2013-05-29 01:57:24 +04:00
|
|
|
// NOTE: this depends on that the base dir contains ALL the images...
|
2013-07-08 01:59:30 +04:00
|
|
|
// NOTE: if base is not given, this will not read image to get
|
|
|
|
|
// orientation data...
|
2013-05-28 21:59:38 +04:00
|
|
|
function imagesFromUrls(lst){
|
2013-05-28 19:25:13 +04:00
|
|
|
var res = {}
|
|
|
|
|
|
|
|
|
|
$.each(lst, function(i, e){
|
2013-05-29 01:57:24 +04:00
|
|
|
|
2013-06-21 20:09:24 +04:00
|
|
|
/*
|
2013-05-30 03:26:49 +04:00
|
|
|
// this is ugly but I'm bored so this is pretty...
|
2013-06-02 20:14:39 +04:00
|
|
|
var ii = i < 10 ? '0000000' + i
|
2013-05-29 01:57:24 +04:00
|
|
|
: i < 100 ? '000000' + i
|
|
|
|
|
: i < 1000 ? '00000' + i
|
|
|
|
|
: i < 10000 ? '0000' + i
|
|
|
|
|
: i < 100000 ? '000' + i
|
|
|
|
|
: i < 1000000 ? '00' + i
|
|
|
|
|
: i < 10000000 ? '0' + i
|
|
|
|
|
: i
|
2013-06-21 20:09:24 +04:00
|
|
|
*/
|
|
|
|
|
i = i+''
|
|
|
|
|
var ii = ('00000000' + i).slice(i.length)
|
2013-05-29 01:57:24 +04:00
|
|
|
var gid = 'image-' + ii
|
2013-05-28 19:25:13 +04:00
|
|
|
res[gid] = {
|
|
|
|
|
id: gid,
|
|
|
|
|
type: 'image',
|
|
|
|
|
state: 'single',
|
|
|
|
|
path: e,
|
|
|
|
|
ctime: Date.now(),
|
|
|
|
|
preview: {},
|
|
|
|
|
classes: '',
|
|
|
|
|
orientation: 0,
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
return res
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-06-02 23:07:18 +04:00
|
|
|
// Construct a DATA object from a list of images
|
|
|
|
|
//
|
|
|
|
|
// NOTE: this will create a single ribbon...
|
2013-05-28 19:25:13 +04:00
|
|
|
function dataFromImages(images){
|
|
|
|
|
var gids = Object.keys(images).sort()
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
version: '2.0',
|
|
|
|
|
current: gids[0],
|
|
|
|
|
ribbons: [
|
|
|
|
|
gids
|
|
|
|
|
],
|
|
|
|
|
order: gids.slice(),
|
|
|
|
|
image_file: null
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-06 03:16:48 +04:00
|
|
|
// Clean out empty ribbons...
|
|
|
|
|
//
|
|
|
|
|
function dropEmptyRibbons(data){
|
|
|
|
|
data = data == null ? DATA : data
|
|
|
|
|
|
|
|
|
|
var ribbons = data.ribbons
|
|
|
|
|
|
|
|
|
|
var i = 0
|
|
|
|
|
while(i < ribbons.length){
|
|
|
|
|
if(ribbons[i].length == 0){
|
|
|
|
|
ribbons.splice(i, 1)
|
|
|
|
|
} else {
|
|
|
|
|
i++
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return data
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-08-19 19:24:47 +04:00
|
|
|
// Merge two or more data objects
|
2013-08-18 21:19:23 +04:00
|
|
|
//
|
2013-08-19 19:24:47 +04:00
|
|
|
// Each data object can be:
|
|
|
|
|
// - straight data object
|
|
|
|
|
// - array with ribbon shift at position 0 and the data at 1.
|
2013-08-18 21:19:23 +04:00
|
|
|
//
|
2013-08-19 19:24:47 +04:00
|
|
|
// The shift can be either positive or negative value. Positive shift
|
|
|
|
|
// will shift the ribbons down (add padding to the top), while negative
|
|
|
|
|
// will shift the ribbons up.
|
2013-08-18 21:19:23 +04:00
|
|
|
//
|
2013-08-19 19:24:47 +04:00
|
|
|
// NOTE: if no shift is given it will default to 0, i.e. align by top
|
|
|
|
|
// ribbon.
|
|
|
|
|
// NOTE: shifting one set of ribbons up (negative shift) is the same as
|
|
|
|
|
// shifting every other set down by the same amount down (positive).
|
|
|
|
|
// e.g. these shifts:
|
|
|
|
|
// -1 0 2 -5 0 0
|
|
|
|
|
// will be normalized to, or are equivalent to:
|
|
|
|
|
// 4 5 7 0 5 5
|
|
|
|
|
// (we add abs max shift |-5| to each element, to align top to 0)
|
2013-08-19 19:54:49 +04:00
|
|
|
// NOTE: this will not set .current
|
|
|
|
|
// NOTE: there should not be any gid collisions between data sets.
|
2013-08-18 21:19:23 +04:00
|
|
|
//
|
2013-08-19 19:54:49 +04:00
|
|
|
// XXX should we try and resolve gid collisions here??
|
|
|
|
|
// ...don't think so...
|
2013-08-23 02:39:50 +04:00
|
|
|
// XXX should we check the data version???
|
2013-08-19 19:47:29 +04:00
|
|
|
// XXX needs testing...
|
2013-08-19 19:24:47 +04:00
|
|
|
function mergeData(a, b){
|
|
|
|
|
var order = []
|
|
|
|
|
var ribbon_sets = []
|
|
|
|
|
var shifts = []
|
2013-08-19 19:47:29 +04:00
|
|
|
var shift = 0
|
2013-08-19 19:24:47 +04:00
|
|
|
|
2013-08-19 19:47:29 +04:00
|
|
|
// prepare the data...
|
|
|
|
|
// build the ribbon_set, shifts, accumulate order and set shift bounds...
|
2013-08-19 19:24:47 +04:00
|
|
|
$.each(arguments, function(_, d){
|
|
|
|
|
if(typeof(d) == typeof([]) && d.constructor.name == 'Array'){
|
2013-08-19 19:47:29 +04:00
|
|
|
// process the shift...
|
2013-08-19 19:24:47 +04:00
|
|
|
var s = d[0]
|
|
|
|
|
shifts.push(s)
|
|
|
|
|
// NOTE: min shift (max negative shift) is needed so as to
|
|
|
|
|
// calculate the actual padding per each aligned ribbon
|
|
|
|
|
// set in the resulting structure...
|
2013-08-19 19:47:29 +04:00
|
|
|
shift = Math.min(s, shift)
|
|
|
|
|
// get the actual data...
|
|
|
|
|
d = d[1]
|
2013-08-19 19:24:47 +04:00
|
|
|
|
|
|
|
|
} else {
|
2013-08-19 19:47:29 +04:00
|
|
|
// default shift...
|
2013-08-19 19:24:47 +04:00
|
|
|
shifts.push(0)
|
|
|
|
|
}
|
|
|
|
|
ribbon_sets.push(d.ribbons)
|
|
|
|
|
order = order.concat(d.order)
|
|
|
|
|
})
|
2013-08-19 19:47:29 +04:00
|
|
|
shift = Math.abs(shift)
|
2013-08-19 19:24:47 +04:00
|
|
|
|
2013-08-19 19:47:29 +04:00
|
|
|
// normalize ribbon_set...
|
2013-08-19 19:24:47 +04:00
|
|
|
// NOTE: this will shift the ribbons to the required alignment...
|
|
|
|
|
$.each(shifts, function(i, s){
|
2013-08-19 19:47:29 +04:00
|
|
|
if(shift + s != 0){
|
|
|
|
|
ribbon_sets[i] = new Array(shift + s).concat(ribbon_sets[i])
|
|
|
|
|
}
|
2013-08-19 19:24:47 +04:00
|
|
|
})
|
|
|
|
|
|
2013-08-18 21:19:23 +04:00
|
|
|
return {
|
|
|
|
|
version: '2.0',
|
|
|
|
|
current: null,
|
2013-08-19 19:24:47 +04:00
|
|
|
ribbons: concatZip.apply(null, ribbon_sets),
|
|
|
|
|
order: order,
|
2013-08-18 21:19:23 +04:00
|
|
|
image_file: null
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-08-23 02:39:50 +04:00
|
|
|
// Split the given data at gid1[, gid2[, ...]]
|
|
|
|
|
//
|
|
|
|
|
// This will return a list of data objects, each containing gids that
|
|
|
|
|
// are later than gidN and earlier or the same as gidN+1, preserving the
|
|
|
|
|
// ribbon structure.
|
|
|
|
|
//
|
|
|
|
|
// NOTE: if a given object does not contain any gid in ribbon N then that
|
|
|
|
|
// ribbon will be represented by an empty list.
|
|
|
|
|
// NOTE: the above makes the data objects not compatible with anything that
|
|
|
|
|
// expects the ribbon to have at least one gid.
|
|
|
|
|
// NOTE: this takes one or more gids.
|
|
|
|
|
// NOTE: this will not set .current fields.
|
|
|
|
|
// NOTE: this is the opposite of mergeData():
|
|
|
|
|
// mergeData(splitData(data, ...)) == data
|
|
|
|
|
// with the exception of .current
|
2013-08-23 03:28:43 +04:00
|
|
|
// NOTE: this will ALWAYS return n+1 sections for n gids, even though
|
|
|
|
|
// some of them may be empty...
|
2013-08-23 02:39:50 +04:00
|
|
|
//
|
2013-08-23 00:33:23 +04:00
|
|
|
// XXX this is a bit brain-dead at the moment...
|
2013-08-23 02:28:28 +04:00
|
|
|
// XXX do we need to check if supplied gids exist in data???
|
2013-08-23 00:33:23 +04:00
|
|
|
function splitData(data, gid1){
|
|
|
|
|
var gids = []
|
|
|
|
|
var res = []
|
|
|
|
|
var cur = 0
|
|
|
|
|
|
|
|
|
|
// build the resulting data objects...
|
|
|
|
|
// XXX revise...
|
|
|
|
|
for(var i=1; i<arguments.length; i++){
|
|
|
|
|
var prev = cur
|
|
|
|
|
cur = data.order.indexOf(arguments[i])
|
|
|
|
|
gids.push(arguments[i])
|
|
|
|
|
|
|
|
|
|
res.push({
|
|
|
|
|
version: '2.0',
|
|
|
|
|
current: null,
|
|
|
|
|
ribbons: [],
|
|
|
|
|
order: data.order.slice(prev, cur),
|
|
|
|
|
image_file: null
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
// tail section...
|
|
|
|
|
res.push({
|
|
|
|
|
version: '2.0',
|
|
|
|
|
current: null,
|
|
|
|
|
ribbons: [],
|
|
|
|
|
order: data.order.slice(cur),
|
|
|
|
|
image_file: null
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// split the ribbons...
|
|
|
|
|
for(var i=0; i<data.ribbons.length; i++){
|
|
|
|
|
var r = data.ribbons[i]
|
|
|
|
|
var cur = 0
|
|
|
|
|
|
|
|
|
|
// get all split positions...
|
|
|
|
|
// XXX revise...
|
|
|
|
|
for(var j=0; j<gids.length; j++){
|
|
|
|
|
var prev = cur
|
2013-08-23 04:20:47 +04:00
|
|
|
var gid = getGIDBefore(gids[j], i, null, data)
|
|
|
|
|
if(gid == gids[j]){
|
|
|
|
|
var cur = r.indexOf(gid)
|
|
|
|
|
} else {
|
|
|
|
|
var cur = r.indexOf(gid) + 1
|
|
|
|
|
}
|
2013-08-23 00:33:23 +04:00
|
|
|
|
|
|
|
|
// split and save the section to the corresponding data object...
|
|
|
|
|
res[j].ribbons.push(r.slice(prev, cur))
|
|
|
|
|
}
|
|
|
|
|
// tail section...
|
2013-08-23 02:28:28 +04:00
|
|
|
res[j].ribbons.push(r.slice(cur))
|
2013-08-23 00:33:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return res
|
2013-08-18 21:19:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-08 18:04:44 +04:00
|
|
|
// Align a section of data to the base ribbon.
|
|
|
|
|
//
|
|
|
|
|
// The data will be "cut" vertically from start gid (inclusive) up until
|
|
|
|
|
// end the gid (non-inclusive), if given.
|
|
|
|
|
//
|
|
|
|
|
// If neither start and/or end gids are given then the ribbons above the
|
|
|
|
|
// base ribbon will be used to set the start and end.
|
|
|
|
|
//
|
|
|
|
|
// This will return a new data object, without modifying the original.
|
2013-08-23 03:09:45 +04:00
|
|
|
//
|
2013-08-23 05:47:55 +04:00
|
|
|
//
|
|
|
|
|
// Illustration of operation:
|
|
|
|
|
// 1) Initial state, locate bounds...
|
2013-08-23 03:09:45 +04:00
|
|
|
//
|
2013-09-08 18:04:44 +04:00
|
|
|
// start ---+ +--- end
|
|
|
|
|
// v v
|
2013-08-23 03:09:45 +04:00
|
|
|
// | oooooooooooo |
|
2013-08-23 05:47:55 +04:00
|
|
|
// ...ooooooooo|ooooooooooooooooooo|ooooooooooooooooo... < base
|
2013-08-23 03:09:45 +04:00
|
|
|
// oooo|oooooooooooooooooooooooo|ooooooo
|
|
|
|
|
//
|
|
|
|
|
// The sections are split by precedence relative to the first and
|
|
|
|
|
// last elements of the ribbon above the current...
|
|
|
|
|
// i.e. the first section contains all the elements less than the
|
|
|
|
|
// first, the third is greater than the last, and the mid-section
|
|
|
|
|
// contains all elements that are in-between (inclusive).
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// 2) Split and realign sections...
|
|
|
|
|
//
|
2013-08-23 05:47:55 +04:00
|
|
|
// ...ooooooooo| oooooooooooo |ooooooooooooooooo... < base
|
2013-08-23 03:09:45 +04:00
|
|
|
// oooo| ooooooooooooooooooo |ooooooo
|
|
|
|
|
// |oooooooooooooooooooooooo|
|
|
|
|
|
//
|
|
|
|
|
// The central section is shifted down (dropped), by 1 in this case.
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// 3) Merge...
|
|
|
|
|
//
|
2013-08-23 05:47:55 +04:00
|
|
|
// ...ooooooooo|oooooooooooo|oooooooooooooooooooooooo... < base
|
2013-08-23 03:09:45 +04:00
|
|
|
// oooo|ooooooooooooooooooo|ooooooo
|
|
|
|
|
// |oooooooooooooooooooooooo|
|
|
|
|
|
//
|
|
|
|
|
//
|
2013-09-08 18:04:44 +04:00
|
|
|
// NOTE: the ends of the set may get "messed up" unless explicitly marked.
|
|
|
|
|
// ...the first/last several images in the base ribbon (if present)
|
|
|
|
|
// will get shifted to the top.
|
|
|
|
|
// NOTE: setting the start/end to the first/last images of the set will
|
|
|
|
|
// effectively just change the base ribbon w.o. affecting any data.
|
|
|
|
|
// XXX test this!!!
|
|
|
|
|
// XXX does this require a faster short path (special case)?
|
|
|
|
|
//
|
2013-08-23 03:28:43 +04:00
|
|
|
//
|
2013-09-06 03:48:15 +04:00
|
|
|
// XXX for this to be "smart" we need to introduce a concept of a
|
|
|
|
|
// "base ribbon" (default ribbon to align to) and supporting API...
|
2013-08-23 05:43:55 +04:00
|
|
|
// XXX figure out a way to accomplish one of (in order of preference):
|
|
|
|
|
// - auto-call this and make it expected and transparent to the user
|
|
|
|
|
// - manually called in *obvious* situations...
|
2013-09-06 03:48:15 +04:00
|
|
|
//
|
|
|
|
|
// XXX BUG: if ribbon is 0 this will duplicate the first image in first
|
|
|
|
|
// ribbon...
|
2013-09-08 18:04:44 +04:00
|
|
|
function alignDataToRibbon(base_ribbon, data, start, end){
|
2013-08-23 03:28:43 +04:00
|
|
|
data = data == null ? DATA : data
|
|
|
|
|
|
2013-09-06 03:16:48 +04:00
|
|
|
// get the first and last elements of the ribbon-set above the base
|
|
|
|
|
// ribbon...
|
2013-09-08 18:04:44 +04:00
|
|
|
if(start == null || end == null){
|
|
|
|
|
var r = []
|
|
|
|
|
for(var i=0; i < base_ribbon; i++){
|
|
|
|
|
r.push(data.ribbons[i][0])
|
|
|
|
|
r.push(data.ribbons[i][data.ribbons[i].length-1])
|
|
|
|
|
}
|
|
|
|
|
r.sort(function(a, b){return imageOrderCmp(a, b, null, data)})
|
|
|
|
|
}
|
|
|
|
|
start = start == null ? r[0] : start
|
|
|
|
|
if(end == null){
|
|
|
|
|
end = r[r.length-1]
|
|
|
|
|
// get the gid after the end...
|
|
|
|
|
// NOTE: this can be null/undefined if we are looking at the last
|
|
|
|
|
// element...
|
|
|
|
|
end = data.order[data.order.indexOf(end)+1]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// NOTE: will this always return 3 sections (see docs), even if
|
|
|
|
|
// start and/or end are null...
|
2013-08-23 03:28:43 +04:00
|
|
|
var sections = splitData(data, start, end)
|
|
|
|
|
|
|
|
|
|
// prepare to align...
|
2013-09-08 18:04:44 +04:00
|
|
|
sections[1] = [ base_ribbon, sections[1] ]
|
2013-08-23 03:28:43 +04:00
|
|
|
|
|
|
|
|
var res = mergeData.apply(null, sections)
|
|
|
|
|
res.current = data.current
|
2013-08-23 04:20:47 +04:00
|
|
|
|
2013-09-06 03:16:48 +04:00
|
|
|
dropEmptyRibbons(res)
|
2013-08-23 05:43:55 +04:00
|
|
|
|
|
|
|
|
return res
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-08-23 05:47:55 +04:00
|
|
|
// Shift a section of ribbons n positions.
|
2013-08-23 05:43:55 +04:00
|
|
|
//
|
2013-08-23 05:47:55 +04:00
|
|
|
// Illustration of operation:
|
|
|
|
|
// 1) Initial state, X is the current image...
|
2013-08-23 05:43:55 +04:00
|
|
|
//
|
|
|
|
|
// oooooo|oooo
|
|
|
|
|
// oooooooooo|Xoooooooooo
|
|
|
|
|
// oooooooooooooo|oooooooooooooooo
|
|
|
|
|
//
|
|
|
|
|
//
|
2013-08-23 05:47:55 +04:00
|
|
|
// 2) shiftRibbons(X, n) with positive n (shift down)
|
2013-08-23 05:43:55 +04:00
|
|
|
//
|
|
|
|
|
// oooooo|
|
|
|
|
|
// oooooooooo|oooo
|
|
|
|
|
// oooooooooooooo|Xoooooooooo
|
|
|
|
|
// |oooooooooooooooo
|
|
|
|
|
//
|
|
|
|
|
//
|
2013-08-23 05:47:55 +04:00
|
|
|
// 3) shiftRibbons(X, n) with negative n (shift up)
|
2013-08-23 05:43:55 +04:00
|
|
|
//
|
|
|
|
|
// |oooo
|
|
|
|
|
// oooooo|Xoooooooooo
|
|
|
|
|
// oooooooooo|oooooooooooooooo
|
|
|
|
|
// oooooooooooooo|
|
|
|
|
|
//
|
2013-08-23 05:47:55 +04:00
|
|
|
//
|
2013-08-23 05:43:55 +04:00
|
|
|
// XXX needs testing...
|
|
|
|
|
// XXX should this modify the view in place (and reload?)???
|
2013-08-23 05:47:55 +04:00
|
|
|
// XXX this and alignDataToRibbon(...) share a lot of code, split into
|
|
|
|
|
// two generations...
|
2013-08-23 05:43:55 +04:00
|
|
|
function shiftRibbonsBy(n, gid, data){
|
|
|
|
|
gid = gid == null ? getImageGID() : gid
|
|
|
|
|
data = data == null ? DATA : data
|
|
|
|
|
|
|
|
|
|
var sections = splitData(data, gid)
|
|
|
|
|
|
|
|
|
|
// prepare to align...
|
|
|
|
|
sections[1] = [ n, sections[1] ]
|
|
|
|
|
|
|
|
|
|
var res = mergeData.apply(null, sections)
|
|
|
|
|
res.current = data.current
|
|
|
|
|
|
2013-09-06 03:16:48 +04:00
|
|
|
dropEmptyRibbons(res)
|
2013-08-23 04:20:47 +04:00
|
|
|
|
2013-08-23 03:28:43 +04:00
|
|
|
return res
|
2013-08-23 03:09:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-05-28 19:25:13 +04:00
|
|
|
|
2013-05-28 02:17:24 +04:00
|
|
|
/**********************************************************************
|
|
|
|
|
* Format conversion
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// Convert legacy Gen1 data format to current Gen3 (v2.0)
|
|
|
|
|
function convertDataGen1(data, cmp){
|
|
|
|
|
var res = {
|
|
|
|
|
data: {
|
|
|
|
|
version: '2.0',
|
|
|
|
|
current: null,
|
|
|
|
|
ribbons: [],
|
|
|
|
|
order: [],
|
|
|
|
|
},
|
|
|
|
|
images: {}
|
|
|
|
|
}
|
|
|
|
|
cmp = cmp == null ?
|
|
|
|
|
function(a, b){
|
2013-06-15 20:08:23 +04:00
|
|
|
return imageDateCmp(a, b, null, res.images)
|
2013-05-28 02:17:24 +04:00
|
|
|
}
|
|
|
|
|
: cmp
|
|
|
|
|
var ribbons = res.data.ribbons
|
|
|
|
|
var order = res.data.order
|
|
|
|
|
var images = res.images
|
|
|
|
|
|
|
|
|
|
// position...
|
|
|
|
|
res.data.current = data.position
|
|
|
|
|
|
|
|
|
|
// ribbons and images...
|
|
|
|
|
$.each(data.ribbons, function(i, input_images){
|
|
|
|
|
var ribbon = []
|
|
|
|
|
ribbons.push(ribbon)
|
|
|
|
|
for(var id in input_images){
|
|
|
|
|
var image = input_images[id]
|
|
|
|
|
ribbon.push(id)
|
|
|
|
|
order.push(id)
|
|
|
|
|
images[id] = image
|
|
|
|
|
}
|
|
|
|
|
ribbon.sort(cmp)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
order.sort(cmp)
|
|
|
|
|
|
|
|
|
|
// XXX STUB
|
|
|
|
|
res.data.current = order[0]
|
|
|
|
|
|
|
|
|
|
return res
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-05-13 02:31:09 +04:00
|
|
|
/**********************************************************************
|
|
|
|
|
* Loaders
|
|
|
|
|
*/
|
|
|
|
|
|
2013-06-02 23:07:18 +04:00
|
|
|
// Update an image element
|
2013-06-04 23:32:36 +04:00
|
|
|
//
|
|
|
|
|
// NOTE: care must be taken to reset ALL attributes an image can have,
|
|
|
|
|
// a common bug if this is not done correctly, is that some settings
|
|
|
|
|
// may leak to newly loaded images...
|
2013-06-15 02:45:19 +04:00
|
|
|
// XXX do a pre-caching framework...
|
2013-05-13 02:24:36 +04:00
|
|
|
function updateImage(image, gid, size){
|
|
|
|
|
image = $(image)
|
2013-05-31 20:37:46 +04:00
|
|
|
var oldgid = getImageGID(image)
|
|
|
|
|
|
|
|
|
|
if(oldgid == gid || gid == null){
|
2013-06-14 20:47:37 +04:00
|
|
|
gid = oldgid
|
2013-05-31 20:37:46 +04:00
|
|
|
|
2013-05-13 02:24:36 +04:00
|
|
|
} else {
|
2013-05-31 20:37:46 +04:00
|
|
|
image
|
|
|
|
|
.attr('gid', JSON.stringify(gid))
|
|
|
|
|
.css({
|
|
|
|
|
// clear the old preview...
|
2013-06-01 18:21:48 +04:00
|
|
|
'background-image': '',
|
2013-05-31 20:37:46 +04:00
|
|
|
})
|
2013-05-13 02:24:36 +04:00
|
|
|
}
|
2013-05-17 16:21:03 +04:00
|
|
|
size = size == null ? getVisibleImageSize('max') : size
|
2013-05-13 02:24:36 +04:00
|
|
|
|
2013-05-30 03:26:49 +04:00
|
|
|
// get the image data...
|
2013-05-19 22:48:28 +04:00
|
|
|
var img_data = IMAGES[gid]
|
2013-05-14 21:49:05 +04:00
|
|
|
if(img_data == null){
|
|
|
|
|
img_data = STUB_IMAGE_DATA
|
|
|
|
|
}
|
2013-05-13 02:24:36 +04:00
|
|
|
|
2013-05-30 03:26:49 +04:00
|
|
|
// preview...
|
2013-06-14 20:47:37 +04:00
|
|
|
var p_url = getBestPreview(gid, size).url
|
2013-06-14 21:47:37 +04:00
|
|
|
// NOTE: due to the fact that loading/caching the image might be at
|
|
|
|
|
// a different pace than calling updateImage(...) and .onload
|
|
|
|
|
// events may trigger in any sequence, we need to update the
|
|
|
|
|
// url in a persistent way so as to load the last call's image
|
|
|
|
|
// regardless of actual handler call sequence...
|
2013-06-14 21:37:59 +04:00
|
|
|
image.data().loading = p_url
|
2013-06-14 20:47:37 +04:00
|
|
|
|
2013-06-01 18:21:48 +04:00
|
|
|
// pre-cache and load image...
|
2013-06-14 20:52:35 +04:00
|
|
|
// NOTE: this will make images load without a blackout...
|
2013-06-15 02:45:19 +04:00
|
|
|
// XXX add a cache of the form:
|
|
|
|
|
// {
|
|
|
|
|
// [<gid>, <size>]: Image,
|
|
|
|
|
// ...
|
|
|
|
|
// }
|
|
|
|
|
// - sort by use...
|
|
|
|
|
// - limit length...
|
|
|
|
|
//
|
|
|
|
|
// ...might also be a good idea to split cache to sizes and have
|
|
|
|
|
// different but as limits for different sizes, but as sizes
|
|
|
|
|
// can differ between images this is not trivial...
|
2013-05-31 20:37:46 +04:00
|
|
|
var img = new Image()
|
|
|
|
|
img.onload = function(){
|
|
|
|
|
image.css({
|
2013-06-14 21:37:59 +04:00
|
|
|
'background-image': 'url("'+ image.data().loading +'")',
|
2013-05-31 20:37:46 +04:00
|
|
|
})
|
|
|
|
|
}
|
2013-06-14 20:47:37 +04:00
|
|
|
img.src = p_url
|
2013-05-31 20:37:46 +04:00
|
|
|
|
2013-06-01 18:21:48 +04:00
|
|
|
// main attrs...
|
2013-05-23 17:17:31 +04:00
|
|
|
image
|
|
|
|
|
.attr({
|
2013-05-24 17:08:16 +04:00
|
|
|
order: DATA.order.indexOf(gid),
|
2013-05-23 17:17:31 +04:00
|
|
|
orientation: img_data.orientation == null ? 0 : img_data.orientation,
|
|
|
|
|
})
|
2013-05-14 21:49:05 +04:00
|
|
|
|
2013-06-04 22:01:41 +04:00
|
|
|
// flip...
|
2013-06-04 23:29:44 +04:00
|
|
|
setImageFlipState(image, img_data.flipped == null ? [] : img_data.flipped)
|
2013-06-04 22:01:41 +04:00
|
|
|
|
2013-05-30 03:26:49 +04:00
|
|
|
// marks...
|
2013-05-24 17:08:16 +04:00
|
|
|
if(MARKED.indexOf(gid) != -1){
|
|
|
|
|
image.addClass('marked')
|
|
|
|
|
} else {
|
|
|
|
|
image.removeClass('marked')
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-14 21:49:05 +04:00
|
|
|
return image
|
2013-05-13 02:24:36 +04:00
|
|
|
}
|
|
|
|
|
|
2013-05-13 02:31:09 +04:00
|
|
|
|
2013-05-28 21:59:38 +04:00
|
|
|
// Same as updateImage(...) but will update all images.
|
2013-05-31 20:10:23 +04:00
|
|
|
//
|
|
|
|
|
// NOTE: this will prioritize images by distance from current image...
|
|
|
|
|
//
|
|
|
|
|
// XXX need to run this in the background...
|
|
|
|
|
function updateImages(size, cmp){
|
|
|
|
|
var deferred = $.Deferred()
|
|
|
|
|
|
|
|
|
|
function _worker(){
|
|
|
|
|
size = size == null ? getVisibleImageSize('max') : size
|
|
|
|
|
|
|
|
|
|
// sorted run...
|
|
|
|
|
if(UPDATE_SORT_ENABLED && cmp != false){
|
|
|
|
|
cmp = cmp == null ?
|
|
|
|
|
makeImageGIDDistanceCmp(getImageGID(), getImageGID)
|
|
|
|
|
// XXX this is more correct but is slow...
|
|
|
|
|
//makeImageRibbonDistanceCmp(getImageGID(), getImageGID)
|
|
|
|
|
: cmp
|
|
|
|
|
deferred.resolve($('.image')
|
|
|
|
|
// sort images by distance from current, so as to update what
|
|
|
|
|
// the user is looking at first...
|
|
|
|
|
.sort(cmp)
|
|
|
|
|
.each(function(){
|
|
|
|
|
updateImage($(this), null, size)
|
|
|
|
|
}))
|
|
|
|
|
|
|
|
|
|
// do a fast run w.o. sorting images...
|
|
|
|
|
} else {
|
|
|
|
|
deferred.resolve($('.image')
|
|
|
|
|
.each(function(){
|
|
|
|
|
updateImage($(this), null, size)
|
|
|
|
|
}))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(UPDATE_SYNC){
|
|
|
|
|
_worker()
|
|
|
|
|
} else {
|
|
|
|
|
setTimeout(_worker, 0)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return deferred
|
2013-05-13 02:24:36 +04:00
|
|
|
}
|
|
|
|
|
|
2013-06-02 23:07:18 +04:00
|
|
|
|
2013-05-31 20:45:17 +04:00
|
|
|
/* XXX for some very odd reason this is slower that the monster above...
|
2013-05-31 20:37:46 +04:00
|
|
|
function updateImages(size){
|
|
|
|
|
size = size == null ? getVisibleImageSize('max') : size
|
|
|
|
|
return $('.image')
|
|
|
|
|
.each(function(){
|
|
|
|
|
updateImage($(this), null, size)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
|
2013-05-13 02:24:36 +04:00
|
|
|
|
|
|
|
|
// Load count images around a given image/gid into the given ribbon.
|
|
|
|
|
//
|
|
|
|
|
// NOTE: this will reload the current image elements...
|
|
|
|
|
// NOTE: this is similar to extendRibbon(...) but different in interface...
|
2013-05-16 20:50:31 +04:00
|
|
|
// NOTE: load only what is needed instead of reloading everything...
|
|
|
|
|
// NOTE: this will not change alignment if the current image is within
|
|
|
|
|
// the target range...
|
2013-05-13 02:24:36 +04:00
|
|
|
function loadImages(ref_gid, count, ribbon){
|
|
|
|
|
ribbon = $(ribbon)
|
|
|
|
|
var images = ribbon.find('.image')
|
|
|
|
|
var ribbon_i = getRibbonIndex(ribbon)
|
|
|
|
|
var gid = getGIDBefore(ref_gid, ribbon_i)
|
|
|
|
|
gid = gid == null ? DATA.ribbons[ribbon_i][0] : gid
|
|
|
|
|
|
|
|
|
|
// start/end points...
|
|
|
|
|
var l = DATA.ribbons[ribbon_i].length
|
|
|
|
|
if(l <= count){
|
|
|
|
|
var from_i = 0
|
2013-05-16 21:46:56 +04:00
|
|
|
|
2013-05-13 02:24:36 +04:00
|
|
|
} else {
|
|
|
|
|
var from_i = DATA.ribbons[ribbon_i].indexOf(gid) - Math.floor(count/2)
|
2013-05-16 21:46:56 +04:00
|
|
|
// special case: head...
|
|
|
|
|
from_i = from_i < 0 ? 0 : from_i
|
|
|
|
|
// special case: tail...
|
|
|
|
|
from_i = l - from_i < count ? l - count : from_i
|
2013-05-13 02:24:36 +04:00
|
|
|
}
|
|
|
|
|
var from_gid = DATA.ribbons[ribbon_i][from_i]
|
|
|
|
|
|
2013-05-16 18:13:02 +04:00
|
|
|
var old_gids = getImageGIDs(getImageGID(images.first()), images.length, ribbon_i, true)
|
2013-05-13 02:24:36 +04:00
|
|
|
var gids = getImageGIDs(from_gid, count, ribbon_i, true)
|
|
|
|
|
|
2013-05-16 22:53:10 +04:00
|
|
|
// check if heads have a common gid and get the diff length...
|
|
|
|
|
var i = gids.indexOf(old_gids[0])
|
|
|
|
|
var j = old_gids.indexOf(gids[0])
|
|
|
|
|
var head = i != -1 ? i
|
|
|
|
|
// check if we need to truncate...
|
|
|
|
|
: j != -1 ? -j
|
|
|
|
|
: 0
|
|
|
|
|
// check if tails have a common gid and get the diff length...
|
|
|
|
|
i = gids.indexOf(old_gids[old_gids.length-1])
|
|
|
|
|
j = old_gids.indexOf(gids[gids.length-1])
|
|
|
|
|
var tail = i > 0 ? gids.length - i - 1
|
|
|
|
|
// check if we need to truncate...
|
|
|
|
|
: j > 0 ? -(old_gids.length - j - 1)
|
|
|
|
|
: 0
|
2013-05-16 20:48:26 +04:00
|
|
|
|
2013-05-17 16:21:03 +04:00
|
|
|
var size = getVisibleImageSize('max')
|
2013-05-16 20:50:31 +04:00
|
|
|
|
2013-05-17 02:30:24 +04:00
|
|
|
// XXX the next section might need some simplification -- feels bulky...
|
2013-05-16 20:48:26 +04:00
|
|
|
// check if we have a common section at all / full reload...
|
|
|
|
|
if(head == 0 && tail == 0){
|
|
|
|
|
if(gids.indexOf(old_gids[0]) == -1){
|
2013-05-16 22:34:26 +04:00
|
|
|
window.DEBUG && console.log('>>> (ribbon:', ribbon_i, ') FULL RELOAD --', gids.length)
|
2013-05-16 20:48:26 +04:00
|
|
|
extendRibbon(0, gids.length - old_gids.length, ribbon)
|
2013-05-17 01:04:20 +04:00
|
|
|
var images = ribbon
|
2013-05-16 20:48:26 +04:00
|
|
|
.find('.image')
|
|
|
|
|
.each(function(i, e){
|
|
|
|
|
updateImage(e, gids[i], size)
|
|
|
|
|
})
|
2013-05-17 01:04:20 +04:00
|
|
|
$('.viewer').trigger('reloadedRibbon', [ribbon])
|
|
|
|
|
|
2013-05-16 20:48:26 +04:00
|
|
|
// do nothing...
|
|
|
|
|
// ...the requested section is the same as the one already loaded...
|
|
|
|
|
} else {
|
2013-05-16 22:34:26 +04:00
|
|
|
window.DEBUG && console.log('>>> (ribbon:', ribbon_i, ') NOTHING TO DO.')
|
2013-05-24 19:28:05 +04:00
|
|
|
return images
|
2013-05-16 20:48:26 +04:00
|
|
|
}
|
2013-05-13 02:24:36 +04:00
|
|
|
|
2013-05-16 20:48:26 +04:00
|
|
|
// do a partial reload...
|
|
|
|
|
} else {
|
2013-05-16 22:34:26 +04:00
|
|
|
window.DEBUG && console.log('>>> (ribbon:', ribbon_i, ')', head, '+-('+ (old_gids.length) +')-+', tail)
|
2013-05-16 20:48:26 +04:00
|
|
|
// NOTE: we do not need to do anything about alignment as
|
|
|
|
|
// extendRibbon will get the correct head and tail so as to
|
|
|
|
|
// align everything by itself...
|
|
|
|
|
var res = extendRibbon(head, tail, ribbon)
|
|
|
|
|
|
|
|
|
|
// NOTE: if there was no extension (i.e. head/tail <= 0) then
|
|
|
|
|
// these will do nothing...
|
|
|
|
|
res.left.each(function(i, e){
|
|
|
|
|
updateImage(e, gids[i], size)
|
|
|
|
|
})
|
|
|
|
|
res.right.each(function(i, e){
|
|
|
|
|
updateImage(e, gids[i + gids.length - tail], size)
|
|
|
|
|
})
|
2013-05-17 01:04:20 +04:00
|
|
|
$('.viewer').trigger('updatedRibbon', [ribbon])
|
2013-05-24 17:08:16 +04:00
|
|
|
images = ribbon.find('.image')
|
2013-05-16 20:48:26 +04:00
|
|
|
}
|
2013-05-24 17:08:16 +04:00
|
|
|
|
|
|
|
|
// XXX is this the right place for this?
|
2013-05-24 19:28:05 +04:00
|
|
|
// XXX this might be too global, do only the images loaded...
|
2013-05-24 17:08:16 +04:00
|
|
|
correctImageProportionsForRotation(images)
|
|
|
|
|
return images
|
2013-05-13 02:24:36 +04:00
|
|
|
}
|
|
|
|
|
|
2013-05-13 02:31:09 +04:00
|
|
|
|
2013-06-02 20:14:39 +04:00
|
|
|
/*
|
2013-05-16 20:50:31 +04:00
|
|
|
// NOTE: this is here for testing...
|
2013-05-13 02:24:36 +04:00
|
|
|
function loadImagesAround(ref_gid, count, ribbon){
|
|
|
|
|
var ribbon_i = getRibbonIndex(ribbon)
|
|
|
|
|
var gid = getGIDBefore(ref_gid, ribbon_i)
|
2013-05-14 21:49:05 +04:00
|
|
|
return loadImages(ref_gid, count, ribbon).filter('[gid="'+JSON.stringify(gid)+'"]').click()
|
2013-05-13 02:24:36 +04:00
|
|
|
}
|
2013-06-02 20:14:39 +04:00
|
|
|
*/
|
2013-05-13 02:24:36 +04:00
|
|
|
|
|
|
|
|
|
2013-05-28 02:17:24 +04:00
|
|
|
// Roll ribbon and load new images in the updated section.
|
|
|
|
|
//
|
2013-05-13 02:24:36 +04:00
|
|
|
// NOTE: this is signature-compatible with rollRibbon...
|
|
|
|
|
// NOTE: this will load data ONLY if it is available, otherwise this
|
|
|
|
|
// will have no effect...
|
|
|
|
|
// NOTE: this can roll past the currently loaded images (n > images.length)
|
2013-05-14 00:01:03 +04:00
|
|
|
function rollImages(n, ribbon, extend, no_compensate_shift){
|
2013-05-13 02:24:36 +04:00
|
|
|
if(n == 0){
|
|
|
|
|
return $([])
|
|
|
|
|
}
|
|
|
|
|
ribbon = ribbon == null ? getRibbon() : $(ribbon)
|
|
|
|
|
var images = ribbon.find('.image')
|
|
|
|
|
|
2013-05-14 21:49:05 +04:00
|
|
|
var from = n > 0 ? getImageGID(ribbon.find('.image').last())
|
|
|
|
|
: getImageGID(ribbon.find('.image').first())
|
2013-05-13 02:24:36 +04:00
|
|
|
var gids = getImageGIDs(from, n)
|
|
|
|
|
if(gids.length == 0){
|
|
|
|
|
return $([])
|
|
|
|
|
}
|
|
|
|
|
// truncate the results to the length of images...
|
|
|
|
|
if(n > images.length){
|
|
|
|
|
gids.reverse().splice(images.length)
|
|
|
|
|
gids.reverse()
|
|
|
|
|
} else if(Math.abs(n) > images.length){
|
|
|
|
|
gids.splice(images.length)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(n < images.length){
|
2013-05-14 00:01:03 +04:00
|
|
|
images = rollRibbon(gids.length * (n > 0 ? 1 : -1), ribbon, extend, no_compensate_shift)
|
2013-05-13 02:24:36 +04:00
|
|
|
}
|
|
|
|
|
|
2013-05-17 16:21:03 +04:00
|
|
|
var size = getVisibleImageSize('max')
|
2013-05-13 02:24:36 +04:00
|
|
|
images.each(function(i, e){
|
|
|
|
|
updateImage($(e), gids[i], size)
|
|
|
|
|
})
|
|
|
|
|
|
2013-05-17 01:04:20 +04:00
|
|
|
$('.viewer').trigger('updatedRibbon', [ribbon])
|
|
|
|
|
|
2013-05-24 17:08:16 +04:00
|
|
|
// XXX is this the right place for this?
|
|
|
|
|
correctImageProportionsForRotation(images)
|
2013-05-13 02:24:36 +04:00
|
|
|
return images
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-06-02 23:07:18 +04:00
|
|
|
// Reload the viewer using the current DATA and IMAGES objects
|
2013-06-02 20:14:39 +04:00
|
|
|
function reloadViewer(images_per_screen){
|
2013-05-13 02:31:09 +04:00
|
|
|
var ribbons_set = $('.ribbon-set')
|
2013-05-19 22:48:28 +04:00
|
|
|
var current = DATA.current
|
2013-05-13 02:31:09 +04:00
|
|
|
// if no width is given, use the current or default...
|
|
|
|
|
var w = images_per_screen == null ? getScreenWidthInImages() : images_per_screen
|
|
|
|
|
w = w > MAX_SCREEN_IMAGES ? DEFAULT_SCREEN_IMAGES : w
|
|
|
|
|
|
|
|
|
|
// clear data...
|
|
|
|
|
$('.ribbon').remove()
|
|
|
|
|
|
|
|
|
|
// create ribbons...
|
2013-05-19 22:48:28 +04:00
|
|
|
$.each(DATA.ribbons, function(i, e){
|
2013-05-13 02:31:09 +04:00
|
|
|
createRibbon().appendTo(ribbons_set)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// create images...
|
|
|
|
|
$('.ribbon').each(function(i, e){
|
2013-05-19 22:48:28 +04:00
|
|
|
loadImages(current, Math.min(w * LOAD_SCREENS, DATA.ribbons[i].length), $(this))
|
2013-05-13 02:31:09 +04:00
|
|
|
})
|
|
|
|
|
|
2013-05-14 21:49:05 +04:00
|
|
|
focusImage($('.image').filter('[gid="'+JSON.stringify(current)+'"]'))
|
2013-05-13 02:31:09 +04:00
|
|
|
|
|
|
|
|
fitNImages(w)
|
|
|
|
|
centerRibbons('css')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-06-02 23:07:18 +04:00
|
|
|
// Apply the current SETTINGS to current viewer
|
2013-05-24 00:32:42 +04:00
|
|
|
function loadSettings(){
|
2013-07-03 20:18:00 +04:00
|
|
|
toggleTheme(SETTINGS['global-theme'])
|
2013-05-24 00:32:42 +04:00
|
|
|
|
|
|
|
|
if(toggleSingleImageMode('?') == 'on'){
|
2013-07-03 20:18:00 +04:00
|
|
|
var w = SETTINGS['single-image-mode-screen-images']
|
2013-06-08 21:32:22 +04:00
|
|
|
if(window.PROPORTIONS_RATIO_THRESHOLD == null){
|
|
|
|
|
var p = SETTINGS['single-image-mode-proportions']
|
|
|
|
|
toggleImageProportions(p)
|
|
|
|
|
}
|
2013-05-24 00:32:42 +04:00
|
|
|
} else {
|
2013-07-03 20:18:00 +04:00
|
|
|
var w = SETTINGS['ribbon-mode-screen-images']
|
|
|
|
|
toggleImageInfo(SETTINGS['ribbon-mode-image-info'] == 'on' ? 'on' : 'off')
|
2013-05-24 00:32:42 +04:00
|
|
|
}
|
|
|
|
|
fitNImages(w)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-05-13 02:24:36 +04:00
|
|
|
|
2013-05-28 02:17:24 +04:00
|
|
|
/**********************************************************************
|
|
|
|
|
* Image caching...
|
|
|
|
|
*/
|
|
|
|
|
|
2013-06-04 23:32:36 +04:00
|
|
|
// TODO add global cache...
|
|
|
|
|
// - manage cache by number and preview size...
|
|
|
|
|
// - keep in biggish...
|
|
|
|
|
|
|
|
|
|
|
2013-05-28 02:17:24 +04:00
|
|
|
// NOTE: this will always overwrite the previous cache set for a ribbon...
|
2013-06-01 18:21:48 +04:00
|
|
|
// NOTE: it appears that sorting images by priority before loading them
|
2013-06-14 13:16:27 +04:00
|
|
|
// to cache has little or no effect on the order they are
|
2013-06-01 18:21:48 +04:00
|
|
|
// loaded/rendered...
|
2013-05-28 02:17:24 +04:00
|
|
|
function preCacheRibbonImages(ribbon){
|
|
|
|
|
var i = getRibbonIndex(ribbon)
|
|
|
|
|
var size = getVisibleImageSize('max')
|
|
|
|
|
var screen_size = getScreenWidthInImages(getVisibleImageSize())
|
|
|
|
|
var cache_frame_size = (screen_size * LOAD_SCREENS) / 2
|
|
|
|
|
var images = ribbon.find('.image')
|
|
|
|
|
var first = getImageGID(images.first())
|
|
|
|
|
var last = getImageGID(images.last())
|
|
|
|
|
|
|
|
|
|
var gids = getImageGIDs(first, -cache_frame_size)
|
|
|
|
|
.concat(getImageGIDs(last, cache_frame_size))
|
|
|
|
|
|
|
|
|
|
var cache = []
|
|
|
|
|
IMAGE_CACHE[i] = cache
|
|
|
|
|
$.each(gids, function(i, e){
|
|
|
|
|
var img = new Image()
|
|
|
|
|
img.src = getBestPreview(e, size).url
|
|
|
|
|
cache.push(img)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
return cache
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function preCacheAllRibbons(){
|
|
|
|
|
$('.ribbon').each(function(){
|
|
|
|
|
preCacheRibbonImages($(this))
|
|
|
|
|
})
|
|
|
|
|
return IMAGE_CACHE
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-06-08 18:28:10 +04:00
|
|
|
/**********************************************************************
|
|
|
|
|
* URL history...
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
function setupBaseURLHistory(){
|
|
|
|
|
$('.viewer')
|
|
|
|
|
.on('baseURLChanged', function(evt, old_url, new_url){
|
|
|
|
|
BASE_URL_HISTORY.splice(0, 0, old_url)
|
|
|
|
|
|
|
|
|
|
// truncate the history if needed...
|
|
|
|
|
if(BASE_URL_HISTORY.length > BASE_URL_LIMIT){
|
|
|
|
|
BASE_URL_HISTORY.splice(BASE_URL_LIMIT, BASE_URL_HISTORY.length)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XXX...
|
|
|
|
|
function getNextLocation(){
|
|
|
|
|
}
|
|
|
|
|
function getPrevLocation(){
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-06-02 23:07:18 +04:00
|
|
|
/**********************************************************************
|
|
|
|
|
* Actions...
|
|
|
|
|
*/
|
|
|
|
|
|
2013-08-08 22:48:24 +04:00
|
|
|
/******************************************************* Crop Data ***/
|
|
|
|
|
|
|
|
|
|
function isViewCropped(){
|
2013-08-08 23:38:33 +04:00
|
|
|
return CROP_STACK.length != 0
|
2013-08-08 22:48:24 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function getAllData(){
|
|
|
|
|
if(!isViewCropped()){
|
|
|
|
|
return DATA
|
|
|
|
|
} else {
|
|
|
|
|
return CROP_STACK[0]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-08-08 23:38:33 +04:00
|
|
|
// NOTE: this will not update .current state...
|
2013-09-14 03:30:01 +04:00
|
|
|
// NOTE: when keep_ribbons is set, this may generate empty ribbons...
|
|
|
|
|
//
|
2013-08-08 23:38:33 +04:00
|
|
|
// XXX should this set the .current to anything but null or the first elem???
|
2013-08-08 22:48:24 +04:00
|
|
|
function makeCroppedData(gids, keep_ribbons){
|
|
|
|
|
var res = {
|
|
|
|
|
varsion: '2.0',
|
|
|
|
|
current: null,
|
|
|
|
|
ribbons: [],
|
|
|
|
|
order: DATA.order.slice(),
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// flat single ribbon crop...
|
|
|
|
|
if(!keep_ribbons){
|
|
|
|
|
res.ribbons[0] = gids
|
|
|
|
|
|
|
|
|
|
// keep the ribbon structure...
|
|
|
|
|
} else {
|
|
|
|
|
$.each(DATA.ribbons, function(_, e){
|
|
|
|
|
e = e.filter(function(ee){ return gids.indexOf(ee) >= 0 })
|
|
|
|
|
// skip empty ribbons...
|
|
|
|
|
if(e.length != 0){
|
|
|
|
|
res.ribbons.push(e)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return res
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-14 03:30:01 +04:00
|
|
|
// NOTE: if keep_ribbons is not set this will ALWAYS build a single ribbon
|
|
|
|
|
// data-set...
|
2013-08-08 22:48:24 +04:00
|
|
|
function cropDataTo(gids, keep_ribbons){
|
|
|
|
|
var prev_state = DATA
|
2013-08-08 23:38:33 +04:00
|
|
|
var cur = DATA.current
|
2013-09-14 03:30:01 +04:00
|
|
|
var r = getRibbonIndex()
|
2013-08-08 22:48:24 +04:00
|
|
|
|
2013-09-21 03:24:15 +04:00
|
|
|
var new_data = makeCroppedData(gids, keep_ribbons)
|
|
|
|
|
|
|
|
|
|
// do nothing if there is no change...
|
|
|
|
|
// XXX is there a better way to compare states???
|
|
|
|
|
if(JSON.stringify(DATA.ribbons) == JSON.stringify(new_data.ribbons)){
|
|
|
|
|
return DATA
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-08 22:48:24 +04:00
|
|
|
CROP_STACK.push(prev_state)
|
2013-09-21 03:24:15 +04:00
|
|
|
DATA = new_data
|
2013-08-08 22:48:24 +04:00
|
|
|
|
2013-09-14 03:30:01 +04:00
|
|
|
cur = getGIDBefore(cur, keep_ribbons ? r : 0)
|
2013-08-08 23:38:33 +04:00
|
|
|
cur = cur == null ? gids[0] : cur
|
|
|
|
|
DATA.current = cur
|
|
|
|
|
|
2013-08-08 22:48:24 +04:00
|
|
|
reloadViewer()
|
|
|
|
|
updateImages()
|
|
|
|
|
|
|
|
|
|
return prev_state
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function uncropData(){
|
|
|
|
|
if(!isViewCropped()){
|
|
|
|
|
return DATA
|
|
|
|
|
}
|
|
|
|
|
var prev_state = DATA
|
2013-08-08 23:19:28 +04:00
|
|
|
var cur = DATA.current
|
2013-08-08 22:48:24 +04:00
|
|
|
|
|
|
|
|
DATA = CROP_STACK.pop()
|
|
|
|
|
|
2013-08-08 23:19:28 +04:00
|
|
|
// check if cur exists in data being loaded...
|
|
|
|
|
if($.map(DATA.ribbons,
|
|
|
|
|
function(e, i){ return e.indexOf(cur) >= 0 }).indexOf(true) >= 0){
|
|
|
|
|
// keep the current position...
|
|
|
|
|
DATA.current = cur
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-08 22:48:24 +04:00
|
|
|
reloadViewer()
|
|
|
|
|
updateImages()
|
|
|
|
|
|
|
|
|
|
return prev_state
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function showAllData(){
|
|
|
|
|
var prev_state = DATA
|
2013-08-08 23:38:33 +04:00
|
|
|
var cur = DATA.current
|
2013-08-08 22:48:24 +04:00
|
|
|
|
2013-09-21 03:09:19 +04:00
|
|
|
if(CROP_STACK.length != 0){
|
|
|
|
|
DATA = getAllData()
|
|
|
|
|
CROP_STACK = []
|
2013-08-08 22:48:24 +04:00
|
|
|
|
2013-09-21 03:09:19 +04:00
|
|
|
// XXX do we need to check if this exists???
|
|
|
|
|
// ...in theory, as long as there are no global destructive
|
|
|
|
|
// operations, no.
|
|
|
|
|
// keep the current position...
|
|
|
|
|
DATA.current = cur
|
2013-08-08 23:38:33 +04:00
|
|
|
|
2013-09-21 03:09:19 +04:00
|
|
|
reloadViewer()
|
|
|
|
|
updateImages()
|
|
|
|
|
}
|
2013-08-08 22:48:24 +04:00
|
|
|
|
|
|
|
|
return prev_state
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-21 05:47:54 +04:00
|
|
|
// Helpers for making crop modes and using crop...
|
|
|
|
|
|
|
|
|
|
// Make a generic crop mode toggler
|
|
|
|
|
//
|
|
|
|
|
// NOTE: This will add the toggler to CROP_MODES, for use by
|
|
|
|
|
// uncropLastState(...)
|
|
|
|
|
function makeCropModeToggler(cls, crop){
|
|
|
|
|
var res = createCSSClassToggler(
|
|
|
|
|
'.viewer',
|
|
|
|
|
cls + ' cropped-mode',
|
|
|
|
|
function(action){
|
|
|
|
|
// prevent mixing marked-only and single-ribbon modes...
|
|
|
|
|
if(action == 'on'
|
|
|
|
|
&& $('.viewer').hasClass('cropped-mode')
|
|
|
|
|
&& res('?') != 'on'){
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
function(action){
|
|
|
|
|
if(action == 'on'){
|
|
|
|
|
showStatusQ('Cropping current ribbon...')
|
|
|
|
|
crop()
|
|
|
|
|
} else {
|
|
|
|
|
showStatusQ('Uncropping to all data...')
|
|
|
|
|
showAllData()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
CROP_MODES.push(res)
|
|
|
|
|
return res
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Uncrop to last state and there is no states to uncrop then exit
|
|
|
|
|
// cropped mode.
|
|
|
|
|
//
|
|
|
|
|
// NOTE: this will exit all crop modes when uncropping the last step.
|
|
|
|
|
function uncropLastState(){
|
|
|
|
|
// do nothing if we aren't in a crop mode...
|
|
|
|
|
if(!$('.viewer').hasClass('cropped-mode')){
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// exit cropped all modes...
|
|
|
|
|
if(CROP_STACK.length == 1){
|
|
|
|
|
$.each(CROP_MODES, function(_, e){ e('off') })
|
|
|
|
|
|
|
|
|
|
// ucrop one state...
|
|
|
|
|
} else {
|
|
|
|
|
showStatusQ('Uncropping...')
|
|
|
|
|
uncropData()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-08-08 22:48:24 +04:00
|
|
|
|
2013-07-14 20:53:30 +04:00
|
|
|
/********************************************************* Workers ***/
|
|
|
|
|
|
2013-07-14 21:04:39 +04:00
|
|
|
// get/create a named worker queue...
|
|
|
|
|
function getWorkerQueue(name, no_auto_start){
|
2013-07-14 21:12:14 +04:00
|
|
|
|
|
|
|
|
// create a new worker queue...
|
2013-07-14 21:04:39 +04:00
|
|
|
if(WORKERS[name] == null){
|
|
|
|
|
var queue = makeDeferredsQ()
|
|
|
|
|
WORKERS[name] = queue
|
2013-07-14 21:12:14 +04:00
|
|
|
// start if needed...
|
2013-07-14 21:04:39 +04:00
|
|
|
if(!no_auto_start){
|
|
|
|
|
queue.start()
|
|
|
|
|
}
|
2013-07-14 21:12:14 +04:00
|
|
|
|
|
|
|
|
// return existing worker queue...
|
2013-07-14 21:04:39 +04:00
|
|
|
} else {
|
|
|
|
|
var queue = WORKERS[name]
|
|
|
|
|
}
|
2013-07-14 21:12:14 +04:00
|
|
|
|
2013-07-14 21:04:39 +04:00
|
|
|
return queue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// kill all worker queues...
|
2013-07-14 20:53:30 +04:00
|
|
|
function killAllWorkers(){
|
|
|
|
|
for(var k in WORKERS){
|
2013-07-14 21:46:55 +04:00
|
|
|
if(WORKERS[k].isWorking()){
|
|
|
|
|
console.log('Worker: Stopped:', k)
|
|
|
|
|
}
|
2013-07-14 20:53:30 +04:00
|
|
|
WORKERS[k].kill()
|
|
|
|
|
}
|
|
|
|
|
WORKERS = {}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************* Extension ***/
|
2013-06-04 16:32:33 +04:00
|
|
|
|
2013-05-28 04:41:16 +04:00
|
|
|
// Open image in an external editor/viewer
|
|
|
|
|
//
|
|
|
|
|
// NOTE: this will open the default editor/viewer.
|
|
|
|
|
function openImage(){
|
|
|
|
|
if(window.runSystem == null){
|
2013-06-01 18:21:48 +04:00
|
|
|
showErrorStatus('Can\'t run external programs.')
|
2013-05-28 04:41:16 +04:00
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
// XXX if path is not present try and open the biggest preview...
|
2013-06-08 18:28:10 +04:00
|
|
|
return runSystem(normalizePath(IMAGES[getImageGID()].path, getBaseURL()))
|
2013-05-28 04:41:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-06-07 00:56:43 +04:00
|
|
|
// XXX
|
|
|
|
|
function openImageWith(prog){
|
|
|
|
|
// XXX
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-06-04 16:32:33 +04:00
|
|
|
|
2013-07-14 20:53:30 +04:00
|
|
|
/********************************************************* Sorting ***/
|
2013-06-04 16:32:33 +04:00
|
|
|
|
2013-06-02 20:14:39 +04:00
|
|
|
function reverseImageOrder(){
|
|
|
|
|
DATA.order.reverse()
|
|
|
|
|
updateRibbonOrder()
|
2013-05-30 07:29:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-06-02 20:14:39 +04:00
|
|
|
// NOTE: using imageOrderCmp as a cmp function here will yield odd
|
|
|
|
|
// results -- in-place sorting a list based on relative element
|
|
|
|
|
// positions within itself is fun ;)
|
|
|
|
|
function sortImages(cmp, reverse){
|
|
|
|
|
cmp = cmp == null ? imageDateCmp : cmp
|
|
|
|
|
DATA.order.sort(cmp)
|
|
|
|
|
if(reverse){
|
|
|
|
|
DATA.order.reverse()
|
2013-05-30 19:15:38 +04:00
|
|
|
}
|
2013-06-02 20:14:39 +04:00
|
|
|
updateRibbonOrder()
|
2013-05-30 15:04:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-06-02 23:07:18 +04:00
|
|
|
// shorthands...
|
2013-06-02 20:14:39 +04:00
|
|
|
function sortImagesByDate(reverse){
|
|
|
|
|
return sortImages(reverse)
|
2013-05-30 19:15:38 +04:00
|
|
|
}
|
2013-06-02 20:14:39 +04:00
|
|
|
function sortImagesByName(reverse){
|
|
|
|
|
return sortImages(imageNameCmp, reverse)
|
2013-05-13 02:24:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-06-04 16:32:33 +04:00
|
|
|
|
2013-07-14 20:53:30 +04:00
|
|
|
/************************************************** Manual sorting ***/
|
2013-06-04 16:32:33 +04:00
|
|
|
|
2013-06-02 23:57:30 +04:00
|
|
|
// Ordering images...
|
2013-06-02 23:07:18 +04:00
|
|
|
// NOTE: this a bit more complicated than simply shifting an image
|
|
|
|
|
// left/right the DATA.order, we have to put it before or after
|
|
|
|
|
// the prev/next image...
|
|
|
|
|
function horizontalShiftImage(image, direction){
|
|
|
|
|
image = image == null ? getImage() : $(image)
|
|
|
|
|
var gid = getImageGID(image)
|
|
|
|
|
var r = getRibbonIndex(image)
|
|
|
|
|
var ri = DATA.ribbons[r].indexOf(gid)
|
|
|
|
|
|
|
|
|
|
// the image we are going to move relative to...
|
|
|
|
|
var target = DATA.ribbons[r][ri + (direction == 'next' ? 1 : -1)]
|
2013-06-03 23:36:40 +04:00
|
|
|
|
2013-06-02 23:07:18 +04:00
|
|
|
// we can hit the end or start of the ribbon...
|
|
|
|
|
if(target == null){
|
|
|
|
|
return image
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-03 23:36:40 +04:00
|
|
|
// update the order...
|
|
|
|
|
// NOTE: this is a critical section and must be done as fast as possible,
|
|
|
|
|
// this is why we are using the memory to first do the work and
|
|
|
|
|
// then push it in...
|
|
|
|
|
// NOTE: in a race condition this may still overwrite the order someone
|
|
|
|
|
// else is working on, the data will be consistent...
|
|
|
|
|
var order = DATA.order.slice()
|
|
|
|
|
order.splice(order.indexOf(gid), 1)
|
|
|
|
|
order.splice(order.indexOf(target) + (direction == 'next'? 1 : 0), 0, gid)
|
|
|
|
|
// do the dirty work...
|
|
|
|
|
DATA.order.splice.apply(DATA.order, [0, DATA.order.length].concat(order))
|
2013-06-02 23:07:18 +04:00
|
|
|
|
|
|
|
|
// just update the ribbons, no reloading needed...
|
|
|
|
|
updateRibbonOrder(true)
|
|
|
|
|
|
|
|
|
|
// shift the images...
|
|
|
|
|
getImage(target)[direction == 'prev' ? 'before' : 'after'](image)
|
|
|
|
|
|
|
|
|
|
// update stuff that changed, mainly order...
|
|
|
|
|
updateImages()
|
|
|
|
|
|
|
|
|
|
return image
|
|
|
|
|
}
|
|
|
|
|
function shiftImageLeft(image){
|
|
|
|
|
return horizontalShiftImage(image, 'prev')
|
|
|
|
|
}
|
|
|
|
|
function shiftImageRight(image){
|
|
|
|
|
return horizontalShiftImage(image, 'next')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-05-13 02:24:36 +04:00
|
|
|
|
2013-06-03 18:35:24 +04:00
|
|
|
|
2013-05-13 02:24:36 +04:00
|
|
|
/**********************************************************************
|
2013-05-31 20:10:23 +04:00
|
|
|
* vim:set ts=4 sw=4 spell : */
|