mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-02 13:56:39 +00:00
e2f413e4ba
assets/images/toolObject.png: added. liboperators/Operator{,Flip{Horizontal,Vertical}}.py: initial implementation. libroar/RoarCanvasCommands.py: adds RoarCanvasCommandsOperators. libroar/RoarCanvasCommandsOperators.py: initial implementation. libroar/Roar{CanvasCommands{,Tools},Client}.py: replaces ToolSelect{Clone,Move} w/ ToolObject. libroar/RoarCanvasWindow.py:RoarCanvasWindowDropTarget.OnDropText(): update ToolObject() invocation. libroar/RoarCanvasWindow.py:{applyTool,onMouseInput}(): pass keyModifiers to Tool.onMouseEvent(). libroar/RoarCanvasWindow.py:applyTool(): only switch back to lastTool if current object tool contains an external object. libroar/RoarCanvasWindow.py:onLeaveWindow(): disable hiding cursor for now. libtools/Tool{,Circle,Fill,Line,Rect,Text}.py:onMouseEvent(): update type signature. libtools/Tool{Object,Select{,Clone,Move}}.py: merged into libtools/ToolObject.py. roar.py: add liboperators to sys.path[]. assets/text/TODO: updated.
40 lines
1.5 KiB
Python
Executable File
40 lines
1.5 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
#
|
|
# roar.py -- mIRC art editor for Windows & Linux
|
|
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
|
#
|
|
|
|
import os, sys
|
|
[sys.path.append(os.path.join(os.getcwd(), path)) for path in \
|
|
["libcanvas", "libgui", "libroar", "librtl", "liboperators", "libtools"]]
|
|
|
|
from RoarClient import RoarClient
|
|
from RtlPlatform import getLocalConfPathName
|
|
import wx
|
|
|
|
#
|
|
# Entry point
|
|
def main(*argv):
|
|
localConfDirName = getLocalConfPathName()
|
|
if not os.path.exists(localConfDirName):
|
|
os.makedirs(localConfirName)
|
|
wxApp, roarClient = wx.App(False), RoarClient(None)
|
|
argv0, argv = argv[0], argv[1:]
|
|
roarClient.canvasPanel.commands._loadRecent()
|
|
if len(argv) >= 1:
|
|
if (len(argv) >= 2) and (argv[1].endswith(".lst")):
|
|
roarClient.assetsWindow._load_list(argv[1])
|
|
roarClient.canvasPanel.commands.canvasPathName = argv[0]
|
|
rc, error = roarClient.canvasPanel.canvas.importStore.importTextFile(argv[0])
|
|
if rc:
|
|
roarClient.canvasPanel.update(roarClient.canvasPanel.canvas.importStore.inSize, False, roarClient.canvasPanel.canvas.importStore.outMap)
|
|
roarClient.canvasPanel.commands.update(pathName=argv[0], undoLevel=-1)
|
|
roarClient.canvasPanel.commands._pushRecent(argv[0])
|
|
else:
|
|
print("error: {}".format(error), file=sys.stderr)
|
|
wxApp.MainLoop()
|
|
if __name__ == "__main__":
|
|
main(*sys.argv)
|
|
|
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|