mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-02 13:56:39 +00:00
f3140d4b3d
libcanvas/Canvas.py, libgui/GuiCanvasPanel.py: split from libcanvas/Canvas.py. libcanvas/CanvasImportStore.py:import{Ansi{Buffer,File},SauceFile}(): fixed (via spoke.) {libgui/Gui{CanvasInterface,Frame},libtools/Tool{Fill,Select,Text},roar}.py: updated. libgui/GuiCanvasWxBackend.py: merged from libcanvas/CanvasBackend.py.
39 lines
1.8 KiB
Python
39 lines
1.8 KiB
Python
#!/usr/bin/env python3
|
|
#
|
|
# ToolFill.py -- XXX
|
|
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
|
#
|
|
|
|
from Tool import Tool
|
|
|
|
class ToolFill(Tool):
|
|
"""XXX"""
|
|
name = "Fill"
|
|
|
|
#
|
|
# onMouseEvent(self, event, atPoint, brushColours, brushSize, isDragging, isLeftDown, isRightDown, dispatchFn, eventDc): XXX
|
|
def onMouseEvent(self, event, atPoint, brushColours, brushSize, isDragging, isLeftDown, isRightDown, dispatchFn, eventDc):
|
|
pointStack, pointsDone = [list(atPoint)], []
|
|
testColour = self.parentCanvas.canvas.map[atPoint[1]][atPoint[0]][0:2]
|
|
if isLeftDown or isRightDown:
|
|
if isRightDown:
|
|
brushColours = [brushColours[1], brushColours[0]]
|
|
while len(pointStack) > 0:
|
|
point = pointStack.pop()
|
|
pointCell = self.parentCanvas.canvas.map[point[1]][point[0]]
|
|
if (pointCell[0:2] == testColour) \
|
|
or ((pointCell[3] == " ") and (pointCell[1] == testColour[1])):
|
|
if not point in pointsDone:
|
|
dispatchFn(eventDc, False, [*point, brushColours[0], brushColours[0], 0, " "])
|
|
if point[0] > 0:
|
|
pointStack.append([point[0] - 1, point[1]])
|
|
if point[0] < (self.parentCanvas.canvas.size[0] - 1):
|
|
pointStack.append([point[0] + 1, point[1]])
|
|
if point[1] > 0:
|
|
pointStack.append([point[0], point[1] - 1])
|
|
if point[1] < (self.parentCanvas.canvas.size[1] - 1):
|
|
pointStack.append([point[0], point[1] + 1])
|
|
pointsDone += [point]
|
|
|
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|