1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-13 20:08:55 +00:00

Rotation support

This commit is contained in:
Julien Duponchelle 2016-06-21 19:39:00 +02:00
parent 4f78efa0c8
commit 03e9eac55b
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8
3 changed files with 21 additions and 2 deletions

View File

@ -24,7 +24,7 @@ class Shape:
Shape are visual element not used by the network emulation. Like
text, images, rectangle... They are pure SVG elements.
"""
def __init__(self, project, shape_id=None, svg="<svg></svg>", x=0, y=0, z=0):
def __init__(self, project, shape_id=None, svg="<svg></svg>", x=0, y=0, z=0, rotation=0):
self.svg = svg
self._project = project
if shape_id is None:
@ -34,6 +34,7 @@ class Shape:
self._x = x
self._y = y
self._z = z
self._rotation = rotation
@property
def id(self):
@ -71,6 +72,14 @@ class Shape:
def z(self, val):
self._z = val
@property
def rotation(self):
return self._rotation
@rotation.setter
def rotation(self, val):
self._rotation = val
@asyncio.coroutine
def update(self, **kwargs):
"""
@ -96,6 +105,7 @@ class Shape:
"x": self._x,
"y": self._y,
"z": self._z,
"rotation": self._rotation,
"svg": self._svg
}
return {
@ -104,6 +114,7 @@ class Shape:
"x": self._x,
"y": self._y,
"z": self._z,
"rotation": self._rotation,
"svg": self._svg
}

View File

@ -47,6 +47,12 @@ SHAPE_OBJECT_SCHEMA = {
"description": "Z property",
"type": "integer"
},
"rotation": {
"description": "Rotation of the element",
"type": "integer",
"minimum": 0,
"maximum": 360
},
"svg": {
"description": "SVG content of the shape",
"type": "string",

View File

@ -55,13 +55,15 @@ def test_json(project):
"x": i.x,
"y": i.y,
"z": i.z,
"svg": i.svg
"svg": i.svg,
"rotation": i.rotation
}
assert i.__json__(topology_dump=True) == {
"shape_id": i.id,
"x": i.x,
"y": i.y,
"z": i.z,
"rotation": i.rotation,
"svg": i.svg
}