Extend assert support.
This commit is contained in:
@@ -1,140 +1,134 @@
|
||||
/*
|
||||
* Copyright [2011] [wisemapping]
|
||||
*
|
||||
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
||||
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
||||
* "powered by wisemapping" text requirement on every single page;
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the license at
|
||||
*
|
||||
* http://www.wisemapping.org/license
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
mindplot.ScreenManager = function(width, height, divElement)
|
||||
{
|
||||
this._divContainer = divElement;
|
||||
this._offset = {x:0,y:0};
|
||||
};
|
||||
|
||||
mindplot.ScreenManager.prototype.setScale = function(scale)
|
||||
{
|
||||
$assert($defined(scale), 'Screen scale can not be null');
|
||||
this._workspaceScale = scale;
|
||||
};
|
||||
|
||||
mindplot.ScreenManager.prototype.addEventListener=function(event, listener){
|
||||
$(this._divContainer).addEvent(event, listener);
|
||||
};
|
||||
|
||||
mindplot.ScreenManager.prototype.removeEventListener=function(event, listener){
|
||||
$(this._divContainer).removeEvent(event, listener);
|
||||
};
|
||||
|
||||
mindplot.ScreenManager.prototype.getWorkspaceElementPosition = function(e)
|
||||
{
|
||||
// Retrive current element position.
|
||||
var elementPosition = e.getPosition();
|
||||
var x = elementPosition.x;
|
||||
var y = elementPosition.y;
|
||||
|
||||
// Add workspace offset.
|
||||
x = x - this._offset.x;
|
||||
y = y - this._offset.y;
|
||||
|
||||
// Scale coordinate in order to be relative to the workspace. That's coordSize/size;
|
||||
x = x / this._workspaceScale;
|
||||
y = y / this._workspaceScale;
|
||||
|
||||
// Subtract div position.
|
||||
/* var containerElem = this.getContainer();
|
||||
var containerPosition = core.Utils.workOutDivElementPosition(containerElem);
|
||||
x = x + containerPosition.x;
|
||||
y = y + containerPosition.y;*/
|
||||
|
||||
// Remove decimal part..
|
||||
return {x:x,y:y};
|
||||
};
|
||||
|
||||
mindplot.ScreenManager.prototype.getWorkspaceIconPosition = function(e)
|
||||
{
|
||||
// Retrive current icon position.
|
||||
var image = e.getImage();
|
||||
var elementPosition = image.getPosition();
|
||||
var imageSize = e.getSize();
|
||||
|
||||
//Add group offset
|
||||
var iconGroup = e.getGroup();
|
||||
var group = iconGroup.getNativeElement();
|
||||
var coordOrigin=group.getCoordOrigin();
|
||||
var groupSize = group.getSize();
|
||||
var coordSize = group.getCoordSize();
|
||||
|
||||
var scale={x:coordSize.width/parseInt(groupSize.width), y:coordSize.height/parseInt(groupSize.height)};
|
||||
|
||||
var x = (elementPosition.x - coordOrigin.x-(parseInt(imageSize.width)/2))/scale.x;
|
||||
var y = (elementPosition.y - coordOrigin.y-(parseInt(imageSize.height)/2))/scale.y;
|
||||
|
||||
//Retrieve iconGroup Position
|
||||
var groupPosition = iconGroup.getPosition();
|
||||
x = x + groupPosition.x;
|
||||
y = y + groupPosition.y;
|
||||
|
||||
//Retrieve topic Position
|
||||
var topic = iconGroup.getTopic();
|
||||
var topicPosition = this.getWorkspaceElementPosition(topic);
|
||||
topicPosition.x = topicPosition.x - (parseInt(topic.getSize().width)/2);
|
||||
|
||||
|
||||
// Remove decimal part..
|
||||
return {x:x+topicPosition.x,y:y+topicPosition.y};
|
||||
};
|
||||
|
||||
mindplot.ScreenManager.prototype.getWorkspaceMousePosition = function(e)
|
||||
{
|
||||
// Retrive current mouse position.
|
||||
var mousePosition = this._getMousePosition(e);
|
||||
var x = mousePosition.x;
|
||||
var y = mousePosition.y;
|
||||
|
||||
// Subtract div position.
|
||||
var containerElem = this.getContainer();
|
||||
var containerPosition = core.Utils.workOutDivElementPosition(containerElem);
|
||||
x = x - containerPosition.x;
|
||||
y = y - containerPosition.y;
|
||||
|
||||
// Scale coordinate in order to be relative to the workspace. That's coordSize/size;
|
||||
x = x * this._workspaceScale;
|
||||
y = y * this._workspaceScale;
|
||||
|
||||
// Add workspace offset.
|
||||
x = x + this._offset.x;
|
||||
y = y + this._offset.y;
|
||||
|
||||
// Remove decimal part..
|
||||
return new core.Point(x, y);
|
||||
};
|
||||
|
||||
/**
|
||||
* http://www.howtocreate.co.uk/tutorials/javascript/eventinfo
|
||||
* Copyright [2011] [wisemapping]
|
||||
*
|
||||
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
||||
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
||||
* "powered by wisemapping" text requirement on every single page;
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the license at
|
||||
*
|
||||
* http://www.wisemapping.org/license
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
mindplot.ScreenManager.prototype._getMousePosition = function(event)
|
||||
{
|
||||
return core.Utils.getMousePosition(event);
|
||||
};
|
||||
|
||||
mindplot.ScreenManager.prototype.getContainer = function()
|
||||
{
|
||||
return this._divContainer;
|
||||
};
|
||||
mindplot.ScreenManager = new Class({
|
||||
initialize:function(width, height, divElement) {
|
||||
$assert(divElement, "can not be null");
|
||||
this._divContainer = divElement;
|
||||
this._offset = {x:0,y:0};
|
||||
},
|
||||
|
||||
mindplot.ScreenManager.prototype.setOffset = function(x, y)
|
||||
{
|
||||
this._offset.x = x;
|
||||
this._offset.y = y;
|
||||
};
|
||||
setScale : function(scale) {
|
||||
$assert(scale, 'Screen scale can not be null');
|
||||
this._workspaceScale = scale;
|
||||
},
|
||||
|
||||
addEventListener : function(event, listener) {
|
||||
$(this._divContainer).addEvent(event, listener);
|
||||
},
|
||||
|
||||
removeEventListener : function(event, listener) {
|
||||
$(this._divContainer).removeEvent(event, listener);
|
||||
},
|
||||
|
||||
getWorkspaceElementPosition : function(e) {
|
||||
// Retrive current element position.
|
||||
var elementPosition = e.getPosition();
|
||||
var x = elementPosition.x;
|
||||
var y = elementPosition.y;
|
||||
|
||||
// Add workspace offset.
|
||||
x = x - this._offset.x;
|
||||
y = y - this._offset.y;
|
||||
|
||||
// Scale coordinate in order to be relative to the workspace. That's coordSize/size;
|
||||
x = x / this._workspaceScale;
|
||||
y = y / this._workspaceScale;
|
||||
|
||||
// Subtract div position.
|
||||
/* var containerElem = this.getContainer();
|
||||
var containerPosition = core.Utils.workOutDivElementPosition(containerElem);
|
||||
x = x + containerPosition.x;
|
||||
y = y + containerPosition.y;*/
|
||||
|
||||
// Remove decimal part..
|
||||
return {x:x,y:y};
|
||||
},
|
||||
|
||||
getWorkspaceIconPosition : function(e) {
|
||||
// Retrieve current icon position.
|
||||
var image = e.getImage();
|
||||
var elementPosition = image.getPosition();
|
||||
var imageSize = e.getSize();
|
||||
|
||||
//Add group offset
|
||||
var iconGroup = e.getGroup();
|
||||
var group = iconGroup.getNativeElement();
|
||||
var coordOrigin = group.getCoordOrigin();
|
||||
var groupSize = group.getSize();
|
||||
var coordSize = group.getCoordSize();
|
||||
|
||||
var scale = {x:coordSize.width / parseInt(groupSize.width), y:coordSize.height / parseInt(groupSize.height)};
|
||||
|
||||
var x = (elementPosition.x - coordOrigin.x - (parseInt(imageSize.width) / 2)) / scale.x;
|
||||
var y = (elementPosition.y - coordOrigin.y - (parseInt(imageSize.height) / 2)) / scale.y;
|
||||
|
||||
//Retrieve iconGroup Position
|
||||
var groupPosition = iconGroup.getPosition();
|
||||
x = x + groupPosition.x;
|
||||
y = y + groupPosition.y;
|
||||
|
||||
//Retrieve topic Position
|
||||
var topic = iconGroup.getTopic();
|
||||
var topicPosition = this.getWorkspaceElementPosition(topic);
|
||||
topicPosition.x = topicPosition.x - (parseInt(topic.getSize().width) / 2);
|
||||
|
||||
|
||||
// Remove decimal part..
|
||||
return {x:x + topicPosition.x,y:y + topicPosition.y};
|
||||
},
|
||||
|
||||
getWorkspaceMousePosition : function(e) {
|
||||
// Retrive current mouse position.
|
||||
var mousePosition = this._getMousePosition(e);
|
||||
var x = mousePosition.x;
|
||||
var y = mousePosition.y;
|
||||
|
||||
// Subtract div position.
|
||||
var containerElem = this.getContainer();
|
||||
var containerPosition = core.Utils.workOutDivElementPosition(containerElem);
|
||||
x = x - containerPosition.x;
|
||||
y = y - containerPosition.y;
|
||||
|
||||
// Scale coordinate in order to be relative to the workspace. That's coordSize/size;
|
||||
x = x * this._workspaceScale;
|
||||
y = y * this._workspaceScale;
|
||||
|
||||
// Add workspace offset.
|
||||
x = x + this._offset.x;
|
||||
y = y + this._offset.y;
|
||||
|
||||
// Remove decimal part..
|
||||
return new core.Point(x, y);
|
||||
},
|
||||
|
||||
/**
|
||||
* http://www.howtocreate.co.uk/tutorials/javascript/eventinfo
|
||||
*/
|
||||
_getMousePosition : function(event) {
|
||||
return core.Utils.getMousePosition(event);
|
||||
},
|
||||
|
||||
getContainer : function() {
|
||||
return this._divContainer;
|
||||
},
|
||||
|
||||
setOffset : function(x, y) {
|
||||
this._offset.x = x;
|
||||
this._offset.y = y;
|
||||
}});
|
||||
|
Reference in New Issue
Block a user