mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-14 17:52:55 +00:00
171 lines
4.7 KiB
JavaScript
171 lines
4.7 KiB
JavaScript
iD.Graph = function(entities) {
|
|
if (!(this instanceof iD.Graph)) return new iD.Graph(entities);
|
|
|
|
if (_.isArray(entities)) {
|
|
this.entities = {};
|
|
for (var i = 0; i < entities.length; i++) {
|
|
this.entities[entities[i].id] = entities[i];
|
|
}
|
|
} else {
|
|
this.entities = entities || {};
|
|
}
|
|
|
|
this.transients = {};
|
|
this._parentWays = {};
|
|
|
|
if (iD.debug) {
|
|
Object.freeze(this);
|
|
Object.freeze(this.entities);
|
|
}
|
|
};
|
|
|
|
iD.Graph.prototype = {
|
|
entity: function(id) {
|
|
return this.entities[id];
|
|
},
|
|
|
|
transient: function(entity, key, fn) {
|
|
var id = entity.id,
|
|
transients = this.transients[id] ||
|
|
(this.transients[id] = {});
|
|
|
|
if (transients[key]) {
|
|
return transients[key];
|
|
}
|
|
|
|
return transients[key] = fn.call(entity);
|
|
},
|
|
|
|
parentWays: function(entity) {
|
|
var graph = this,
|
|
entity,
|
|
id;
|
|
|
|
if (!graph.calculatedParentWays) {
|
|
for (var i in graph.entities) {
|
|
entity = graph.entities[i];
|
|
if (entity && entity.type === 'way') {
|
|
for (var j = 0; j < entity.nodes.length; j++) {
|
|
id = entity.nodes[j];
|
|
this._parentWays[id] = this._parentWays[id] || [];
|
|
if (this._parentWays[id].indexOf(entity) < 0) {
|
|
this._parentWays[id].push(entity);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
graph.calculatedParentWays = true;
|
|
}
|
|
|
|
return this._parentWays[entity.id] || [];
|
|
},
|
|
|
|
parentRelations: function(entity) {
|
|
var graph = this;
|
|
return this.transient(entity, 'parentRelations',
|
|
function generateParentRelations() {
|
|
var o = [], id = this.id;
|
|
for (var i in graph.entities) {
|
|
if (graph.entities[i] &&
|
|
graph.entities[i].type === 'relation' &&
|
|
_.find(graph.entities[i].members, function(e) {
|
|
return e.id === id;
|
|
})) {
|
|
o.push(graph.entities[i]);
|
|
}
|
|
}
|
|
return o;
|
|
});
|
|
},
|
|
|
|
merge: function(graph) {
|
|
var entities = _.clone(this.entities);
|
|
_.defaults(entities, graph.entities);
|
|
return iD.Graph(entities);
|
|
},
|
|
|
|
replace: function(entity) {
|
|
var entities = _.clone(this.entities);
|
|
entities[entity.id] = entity;
|
|
return iD.Graph(entities);
|
|
},
|
|
|
|
remove: function(entity) {
|
|
var entities = _.clone(this.entities);
|
|
|
|
if (entity.created()) {
|
|
delete entities[entity.id];
|
|
} else {
|
|
entities[entity.id] = undefined;
|
|
}
|
|
|
|
return iD.Graph(entities);
|
|
},
|
|
|
|
// get all objects that intersect an extent.
|
|
intersects: function(extent) {
|
|
var items = [];
|
|
for (var i in this.entities) {
|
|
var entity = this.entities[i];
|
|
if (entity && entity.intersects(extent, this)) {
|
|
items.push(this.fetch(entity.id));
|
|
}
|
|
}
|
|
return items;
|
|
},
|
|
|
|
// Resolve the id references in a way, replacing them with actual objects.
|
|
fetch: function(id) {
|
|
var entity = this.entities[id], nodes = [];
|
|
if (!entity || !entity.nodes || !entity.nodes.length) return entity;
|
|
for (var i = 0, l = entity.nodes.length; i < l; i++) {
|
|
nodes[i] = this.fetch(entity.nodes[i]);
|
|
}
|
|
return iD.Entity(entity, {nodes: nodes});
|
|
},
|
|
|
|
difference: function (graph) {
|
|
var result = [], entity, id;
|
|
|
|
for (id in this.entities) {
|
|
entity = this.entities[id];
|
|
if (entity !== graph.entities[id]) {
|
|
result.push(id);
|
|
}
|
|
}
|
|
|
|
for (id in graph.entities) {
|
|
entity = graph.entities[id];
|
|
if (entity && !this.entities.hasOwnProperty(id)) {
|
|
result.push(id);
|
|
}
|
|
}
|
|
|
|
return result.sort();
|
|
},
|
|
|
|
modified: function() {
|
|
var result = [];
|
|
_.each(this.entities, function(entity, id) {
|
|
if (entity && entity.modified()) result.push(id);
|
|
});
|
|
return result;
|
|
},
|
|
|
|
created: function() {
|
|
var result = [];
|
|
_.each(this.entities, function(entity, id) {
|
|
if (entity && entity.created()) result.push(id);
|
|
});
|
|
return result;
|
|
},
|
|
|
|
deleted: function() {
|
|
var result = [];
|
|
_.each(this.entities, function(entity, id) {
|
|
if (!entity) result.push(id);
|
|
});
|
|
return result;
|
|
}
|
|
};
|