mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-22 15:26:37 +00:00
MiRCARTToolFill.py: don't process cells more than once.
This commit is contained in:
parent
44490912b2
commit
508a3cd489
@ -31,7 +31,7 @@ class MiRCARTToolFill(MiRCARTTool):
|
|||||||
#
|
#
|
||||||
# onMouseEvent(self, event, atPoint, brushColours, brushSize, isDragging, isLeftDown, isRightDown, dispatchFn, eventDc): XXX
|
# onMouseEvent(self, event, atPoint, brushColours, brushSize, isDragging, isLeftDown, isRightDown, dispatchFn, eventDc): XXX
|
||||||
def onMouseEvent(self, event, atPoint, brushColours, brushSize, isDragging, isLeftDown, isRightDown, dispatchFn, eventDc):
|
def onMouseEvent(self, event, atPoint, brushColours, brushSize, isDragging, isLeftDown, isRightDown, dispatchFn, eventDc):
|
||||||
pointStack = [list(atPoint)]
|
pointStack = [list(atPoint)]; pointsDone = [];
|
||||||
testColour = self.parentCanvas.canvasMap[atPoint[1]][atPoint[0]][0][1]
|
testColour = self.parentCanvas.canvasMap[atPoint[1]][atPoint[0]][0][1]
|
||||||
if isLeftDown or isRightDown:
|
if isLeftDown or isRightDown:
|
||||||
if isRightDown:
|
if isRightDown:
|
||||||
@ -40,6 +40,7 @@ class MiRCARTToolFill(MiRCARTTool):
|
|||||||
point = pointStack.pop()
|
point = pointStack.pop()
|
||||||
pointCell = self.parentCanvas.canvasMap[point[1]][point[0]]
|
pointCell = self.parentCanvas.canvasMap[point[1]][point[0]]
|
||||||
if pointCell[0][1] == testColour:
|
if pointCell[0][1] == testColour:
|
||||||
|
if not point in pointsDone:
|
||||||
dispatchFn(eventDc, False, [point.copy(), \
|
dispatchFn(eventDc, False, [point.copy(), \
|
||||||
[brushColours[0], brushColours[0]], 0, " "])
|
[brushColours[0], brushColours[0]], 0, " "])
|
||||||
if point[0] > 0:
|
if point[0] > 0:
|
||||||
@ -50,5 +51,6 @@ class MiRCARTToolFill(MiRCARTTool):
|
|||||||
pointStack.append([point[0], point[1] - 1])
|
pointStack.append([point[0], point[1] - 1])
|
||||||
if point[1] < (self.parentCanvas.canvasSize[1] - 1):
|
if point[1] < (self.parentCanvas.canvasSize[1] - 1):
|
||||||
pointStack.append([point[0], point[1] + 1])
|
pointStack.append([point[0], point[1] + 1])
|
||||||
|
pointsDone += [point]
|
||||||
|
|
||||||
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|
||||||
|
Loading…
Reference in New Issue
Block a user