mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-02 13:56:39 +00:00
76e57bd081
assets/text/TODO: updated. libtools/ToolLine.py: reflect brush width in pre-line dragging cursor.
24 lines
936 B
Python
24 lines
936 B
Python
#!/usr/bin/env python3
|
|
#
|
|
# ToolPickColour.py
|
|
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
|
#
|
|
|
|
from Tool import Tool
|
|
|
|
class ToolPickColour(Tool):
|
|
name = "Pick colour"
|
|
|
|
def onMouseEvent(self, atPoint, brushColours, brushPos, brushSize, canvas, keyModifiers, mapPoint, mouseDragging, mouseLeftDown, mouseRightDown):
|
|
if (mapPoint[0] < canvas.size[0]) and (mapPoint[1] < canvas.size[1]):
|
|
if mouseLeftDown:
|
|
if canvas.map[mapPoint[1]][mapPoint[0]][3] == " ":
|
|
brushColours[0] = canvas.map[mapPoint[1]][mapPoint[0]][1]
|
|
else:
|
|
brushColours[0] = canvas.map[mapPoint[1]][mapPoint[0]][0]
|
|
elif mouseRightDown:
|
|
brushColours[1] = canvas.map[mapPoint[1]][mapPoint[0]][1]
|
|
return True, None, [[*mapPoint, *brushColours, 0, "░"]]
|
|
|
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|