2019-09-01 14:34:00 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
#
|
2019-09-03 16:58:50 +00:00
|
|
|
# roar.py -- mIRC art editor for Windows & Linux
|
2019-09-01 14:34:00 +00:00
|
|
|
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
|
|
|
#
|
|
|
|
|
|
|
|
import os, sys
|
2019-09-03 13:48:52 +00:00
|
|
|
[sys.path.append(os.path.join(os.getcwd(), path)) for path in \
|
2019-09-10 08:14:12 +00:00
|
|
|
["libcanvas", "libgui", "libroar", "librtl", "libtools"]]
|
2019-09-01 14:34:00 +00:00
|
|
|
|
2019-09-10 08:14:12 +00:00
|
|
|
from RoarClient import RoarClient
|
2019-09-01 14:34:00 +00:00
|
|
|
import wx
|
|
|
|
|
|
|
|
#
|
|
|
|
# Entry point
|
|
|
|
def main(*argv):
|
2019-09-10 08:14:12 +00:00
|
|
|
wxApp, roarClient = wx.App(False), RoarClient(None)
|
|
|
|
if (len(argv) > 1) and (len(argv[1]) > 0):
|
2019-09-10 10:06:56 +00:00
|
|
|
roarClient.canvasPanel.commands.canvasPathName = argv[1]
|
2019-09-10 08:14:12 +00:00
|
|
|
rc, error = roarClient.canvasPanel.canvas.importStore.importTextFile(argv[1])
|
2019-09-06 08:29:45 +00:00
|
|
|
if rc:
|
2019-09-10 08:14:12 +00:00
|
|
|
roarClient.canvasPanel.update(roarClient.canvasPanel.canvas.importStore.inSize, False, roarClient.canvasPanel.canvas.importStore.outMap)
|
2019-09-10 10:06:56 +00:00
|
|
|
roarClient.canvasPanel.commands.update(pathName=argv[1], undoLevel=-1)
|
2019-09-06 08:29:45 +00:00
|
|
|
else:
|
|
|
|
print("error: {}".format(error), file=sys.stderr)
|
2019-09-01 14:34:00 +00:00
|
|
|
wxApp.MainLoop()
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main(*sys.argv)
|
|
|
|
|
|
|
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|