Tweak the test to use realistic numbers. Some fixes
This commit is contained in:
parent
fb019bc9f5
commit
6d5bc75092
@ -21,7 +21,8 @@ from random import random
|
|||||||
import hippo
|
import hippo
|
||||||
|
|
||||||
_X_TILES = 120
|
_X_TILES = 120
|
||||||
_NUM_TRIALS = 100
|
_NUM_TRIALS = 20
|
||||||
|
_MAX_WEIGHT = 255
|
||||||
|
|
||||||
class _Grid(object):
|
class _Grid(object):
|
||||||
def __init__(self, x_tiles, y_tiles, cell_size):
|
def __init__(self, x_tiles, y_tiles, cell_size):
|
||||||
@ -84,29 +85,41 @@ class SpreadBox(hippo.CanvasBox, hippo.CanvasItem):
|
|||||||
def remove_item(self, item):
|
def remove_item(self, item):
|
||||||
self.remove(item)
|
self.remove(item)
|
||||||
|
|
||||||
|
|
||||||
|
def _place_item(self, item, x, y, w, h):
|
||||||
|
self._grid.add_weight_at(x, y, w, h)
|
||||||
|
self.set_position(item,
|
||||||
|
self._grid.cell_size * x,
|
||||||
|
self._grid.cell_size * y)
|
||||||
|
|
||||||
def _layout_item(self, item):
|
def _layout_item(self, item):
|
||||||
if not self._grid:
|
if not self._grid:
|
||||||
return
|
return
|
||||||
|
|
||||||
trials = _NUM_TRIALS
|
trials = _NUM_TRIALS
|
||||||
placed = False
|
placed = False
|
||||||
|
best_weight = _MAX_WEIGHT
|
||||||
|
|
||||||
|
[width, height] = item.get_allocation()
|
||||||
|
w = int(width / self._grid.cell_size)
|
||||||
|
h = int(height / self._grid.cell_size)
|
||||||
|
|
||||||
while trials > 0 and not placed:
|
while trials > 0 and not placed:
|
||||||
[width, height] = item.get_allocation()
|
|
||||||
cell_size = self._grid.cell_size
|
|
||||||
|
|
||||||
w = int(width / cell_size)
|
|
||||||
h = int(height / cell_size)
|
|
||||||
x = int(random() * (self._grid.x_tiles - w))
|
x = int(random() * (self._grid.x_tiles - w))
|
||||||
y = int(random() * (self._grid.y_tiles - h))
|
y = int(random() * (self._grid.y_tiles - h))
|
||||||
|
|
||||||
weight = self._grid.compute_weight_at(x, y, w, h)
|
weight = self._grid.compute_weight_at(x, y, w, h)
|
||||||
if weight == 0:
|
if weight == 0:
|
||||||
self._grid.add_weight_at(x, y, w, h)
|
self._place_item(item, x, y, w, h)
|
||||||
self.set_position(item, cell_size * x, cell_size * y)
|
|
||||||
placed = True
|
placed = True
|
||||||
|
elif weight < best_weight:
|
||||||
|
best_x = x
|
||||||
|
best_y = y
|
||||||
|
|
||||||
trials -= 1
|
trials -= 1
|
||||||
|
|
||||||
|
if not placed:
|
||||||
|
self._place_item(item, best_x, best_y, w, h)
|
||||||
|
|
||||||
def _layout(self):
|
def _layout(self):
|
||||||
for item in self.get_children():
|
for item in self.get_children():
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import random
|
from random import random
|
||||||
|
|
||||||
import pygtk
|
import pygtk
|
||||||
pygtk.require('2.0')
|
pygtk.require('2.0')
|
||||||
@ -33,14 +33,14 @@ from sugar.graphics.canvasicon import CanvasIcon
|
|||||||
|
|
||||||
def _create_snowflake(parent, children):
|
def _create_snowflake(parent, children):
|
||||||
color = XoColor()
|
color = XoColor()
|
||||||
icon = CanvasIcon(scale=1.0, xo_color=color,
|
icon = CanvasIcon(scale=0.8, xo_color=color,
|
||||||
icon_name='theme:object-link')
|
icon_name='theme:object-link')
|
||||||
parent.append(icon, hippo.PACK_FIXED)
|
parent.append(icon, hippo.PACK_FIXED)
|
||||||
parent.set_root(icon)
|
parent.set_root(icon)
|
||||||
|
|
||||||
for i in range(0, children):
|
for i in range(0, children):
|
||||||
color = XoColor()
|
color = XoColor()
|
||||||
icon = CanvasIcon(scale=0.5, xo_color=color,
|
icon = CanvasIcon(scale=0.4, xo_color=color,
|
||||||
icon_name='theme:stock-buddy')
|
icon_name='theme:stock-buddy')
|
||||||
parent.append(icon, hippo.PACK_FIXED)
|
parent.append(icon, hippo.PACK_FIXED)
|
||||||
|
|
||||||
@ -58,25 +58,10 @@ box = SnowflakeBox()
|
|||||||
snow_flake = _create_snowflake(box, 0)
|
snow_flake = _create_snowflake(box, 0)
|
||||||
root_box.set_center_item(box)
|
root_box.set_center_item(box)
|
||||||
|
|
||||||
box = SnowflakeBox()
|
for i in range(0, 30):
|
||||||
snow_flake = _create_snowflake(box, 30)
|
box = SnowflakeBox()
|
||||||
root_box.add_item(box)
|
snow_flake = _create_snowflake(box, int(2 + random() * 8))
|
||||||
|
root_box.add_item(box)
|
||||||
box = SnowflakeBox()
|
|
||||||
snow_flake = _create_snowflake(box, 15)
|
|
||||||
root_box.add_item(box)
|
|
||||||
|
|
||||||
box = SnowflakeBox()
|
|
||||||
snow_flake = _create_snowflake(box, 10)
|
|
||||||
root_box.add_item(box)
|
|
||||||
|
|
||||||
box = SnowflakeBox()
|
|
||||||
snow_flake = _create_snowflake(box, 5)
|
|
||||||
root_box.add_item(box)
|
|
||||||
|
|
||||||
box = SnowflakeBox()
|
|
||||||
snow_flake = _create_snowflake(box, 2)
|
|
||||||
root_box.add_item(box)
|
|
||||||
|
|
||||||
canvas.show()
|
canvas.show()
|
||||||
window.add(canvas)
|
window.add(canvas)
|
||||||
|
Loading…
Reference in New Issue
Block a user