Commit Graph

  • 68ba42f244 MiRC2png.py: fix mIRC colour control code sequence counting & rendering logic. Lucio Andrés Illanes Albornoz 2018-01-05 00:52:02 +0100
  • e0300331fd MiRC2png.py:MiRC2png._parseAs{Char,ColourSpec}(): fix indentation. Lucio Andrés Illanes Albornoz 2018-01-04 23:45:30 +0100
  • 325a454db7 MiRCART.py:MiRCARTCanvas._eventPointToMap[XY](): added for _onMouseEvent(). MiRCART.py:MiRCARTCanvas._onMouseEvent(): split into _processMapPatches() and _drawPatch(). MiRCART.py:MiRCARTCanvas.getCell{Height,Width}(): added for _drawPatch() and _eventPointToMap[XY](). MiRCART.py:MiRCARTCanvas.onPaletteEvent(): only set self.mirc[FB]g. MiRCART.py:MiRCARTCanvas.__init__(): cache canvas window size. MiRCART.py:MiRCARTCanvas.__init__(): initialise & append canvasTools. MiRCART.py:MiRCARTCanvas.__init__(): pre-create 16 mIRC colour brushes & pens. MiRCART.py:MiRCARTCanvas.__init__(): initialise temporary & {un,re}do patches. MiRCART.py:MiRCARTTool: added abstract base class for all canvas tools. MiRCART.py:MiRCARTToolRect: initial implementation w/ cursor, limited to 1x1 rectangles. MiRCART.py:MiRCARTFrame.__init__(): initialise MiRCARTCanvas() w/ canvasTools=[MiRCARTToolRect]. Lucio Andrés Illanes Albornoz 2018-01-04 23:22:09 +0100
  • 91e33f8a4a MiRCART.py:MiRCARTCanvas.canvasBitmap: added to optimise onPaint(). MiRCART.py:MiRCARTCanvas._onMouseEvent(): additionally draw to canvasBitmap via temporary wx.MemoryDC(). MiRCART.py:MiRCARTCanvas.onPaint(): reimplement using (double-buffered) wx.BufferedPaintDC() from canvasBitmap. MiRCART.py:MiRCARTCanvas.__init__(): initialise canvasBitmap from canvas window size. Lucio Andrés Illanes Albornoz 2018-01-04 20:22:15 +0100
  • dcb4ca83bb MiRCART.py:MiRCARTCanvas.{onCharHook,__init__}(): removes wx.EVT_CHAR_HOOK event handler. Lucio Andrés Illanes Albornoz 2018-01-04 20:13:38 +0100
  • 42e18ec252 MiRCART.py:MiRCARTCanvas.{_onMouseEvent,onPaint,__init__}(): switch addressing mode of self.canvasMap to [Y][X]. MiRCART.py:MiRCARTCanvas.get{Height,Map,Width}(): added for MiRCARTFrame.onFileSaveAs(). MiRCART.py:MiRCARTFrame.onFileSaveAs(): initial implementation. Lucio Andrés Illanes Albornoz 2018-01-04 18:11:57 +0100
  • 427290e783 MiRCART.py:mircColours, MiRCARTCanvas.{onPaint,__init__}(): moved from MiRCARTCanvas.mircColours. MiRCART.py:MiRCARTCanvas.get{Background,Foreground}Colour: added for MiRCARTFrame._updateStatusBar(). MiRCART.py:MiRCARTCanvas.onCharHook(): merged into MiRCARTCanvas.onPaletteEvent(). MiRCART.py:MiRCARTCanvas.onPaletteEvent(): set self.{mirc,brush,pen}{Fg,Bg} from colour choice event. MiRCART.py:MiRCARTPalette: implements 16 colour palette panels GUI. MiRCART.py:MiRCARTFrame._updateStatusBar(): show canvas {fore,back}ground colours in status bar. MiRCART.py:MiRCARTFrame.onPaletteEvent(): hand off to MiRCARTCanvas.onPaletteEvent() and call _updateStatusBar(). MiRCART.py:MiRCARTFrame.__init__(): fix `&File' menu item order. MiRCART.py:MiRCARTFrame.__init__(): create & update status bar. Lucio Andrés Illanes Albornoz 2018-01-04 17:26:12 +0100
  • 1a2dd5f692 MiRC2png.py: renamed from MiRCART.py. {IrcClient,IrcMiRCARTBot,MiRC2png}.py: update Vim modeline w/ `sw=4 ts=4'. {IrcMiRCARTBot,MiRC2png}.py: update header legend. IrcMiRCARTBot.py:IrcMiRCARTBot._dispatchPrivmsg(): lower rate limit to (once per) 30 seconds. IrcMiRCARTBot.py:IrcMiRCARTBot._dispatchPrivmsg(): eliminate useless instance variable. IrcMiRCARTBot.py:IrcMiRCARTBot._urlretrieveReportHook(): compare against correct limit of 1 MB (2**20.) MiRCART.py: initial commit. README.md: updated. Lucio Andrés Illanes Albornoz 2018-01-04 16:24:06 +0100
  • 49705ad4bc IrcMiRCARTBot.py:IrcMiRCARTBot.{ContentTooLargeException,_urlretrieveReportHook()}: restrict ASCII downloads to 1 MB in size. IrcMiRCARTBot.py:IrcMiRCARTBot._dispatchPrivmsg(): pass (static) _urlretrieveReportHook() to urllib.request.urlretrieve(). IrcMiRCARTBot.py:IrcMiRCARTBot._dispatchPrivmsg(): handle ContentTooLargeException, urllib.error.URLError, and ValueError exceptions. IrcMiRCARTBot.py:IrcMiRCARTBot._dispatchPrivmsg(): only reset clientLastMessage after successful completion. Lucio Andrés Illanes Albornoz 2018-01-03 15:37:26 +0100
  • b71ca6af89 IrcClient.py:IrcClient.{queue,unqueue}(): always CR NL-terminate messages & encode() before queuing. Lucio Andrés Illanes Albornoz 2018-01-03 15:18:28 +0100
  • 9c34fe3220 IrcClient.py:IrcClient.unqueue(): handle timeout from timed select(). Lucio Andrés Illanes Albornoz 2018-01-03 15:13:52 +0100
  • 97d8caaf1e IrcClient.py: add missing `# {{{'. Lucio Andrés Illanes Albornoz 2018-01-03 15:12:28 +0100
  • f2affda37e IrcMiRCARTBot.py:IrcMiRCARTBot._dispatchPrivmsg(): catch urllib.error.HTTPError exception during download. IrcMiRCARTBot.py:IrcMiRCARTBot._dispatchPrivmsg(): fix typo. Lucio Andrés Illanes Albornoz 2018-01-03 04:24:18 +0100
  • 95b706b4bd IrcMiRCARTBot.py:IrcMiRCARTBot._dispatchPrivmsg(): correctly instantiate MiRCART.MiRCART. Lucio Andrés Illanes Albornoz 2018-01-03 04:19:13 +0100
  • 6fcf0e0a4f IrcClient.py:IrcClient.{queue,unqueue}(): split. IrcMiRCARTBot.py:IrcMiRCARTBot._dispatch{001,Ping,Privmsg,Timer}(): replace readline() calls w/ queue() calls. IrcMiRCARTBot.py:IrcMiRCARTBot.dispatch(): call unqueue() after processing timers and prior to calling readline(). Lucio Andrés Illanes Albornoz 2018-01-03 04:15:43 +0100
  • 523d91ff89 MiRCART.py:MiRCART._parseAsChar(): derive rectangle & line coordinates and outCur{X,Y} offset from outImgFontSize[{0,1}]. MiRCART.py:MiRCART.__init__(): initialise outImgFontSize and add underline area offset. MiRCART.py:MiRCART.__init__(): derive outCurY offset from outImgFontSize[1]. Lucio Andrés Illanes Albornoz 2018-01-03 03:52:41 +0100
  • e182f0ffa9 {IrcMiRCARTBot,MiRCART}.py: differentiate private class member functions. Lucio Andrés Illanes Albornoz 2018-01-03 03:33:57 +0100
  • 9896108028 IrcMiRCARTBot.py:IrcMiRCARTBot: replace print() w/ _log() calls. IrcMiRCARTBot.py:IrcMiRCARTBot._log(): log message w/ timestamp. Lucio Andrés Illanes Albornoz 2018-01-03 03:28:05 +0100
  • c32d749675 IrcClient.py: split from IrcMiRCARTBot.py. IrcMiRCARTBot.py: renamed from pngbot.py, importing IrcClient.IrcClient. MiRCART.py: renamed from mirc2png.py. README.md: updated. Lucio Andrés Illanes Albornoz 2018-01-03 02:33:12 +0100
  • 98eae4257c pngbot.py:IrcBot.clientNextTimeout: moved from IrcMiRCARTBot. pngbot.py:IrcBot.connect(): close() & return False given timeout and True given success. pngbot.py:IrcBot.readline(): honour clientNextTimeout and return "" given timer expiry. pngbot.py:IrcBot.sendline(): ignore clientNextTimeout. pngbot.py:IrcMiRCARTBot.connect(): honour & pass IrcBot.connect() return value. pngbot.py:IrcMiRCARTBot.dispatch{Join,Kick,Timer}(): (re)set clientNextTimeout to time.time() + 15 seconds. pngbot.py:IrcMiRCARTBot.dispatch(): dispatch expired timers prior to calling readline() & honour "" return value. pngbot.py:main(): honour IrcMiRCARTBot.connect() return value & delay reconnection by 15 seconds. Lucio Andrés Illanes Albornoz 2018-01-03 02:16:55 +0100
  • 3a207fc53c pngbot.py:IrcBot.connect(): set socket non-blocking, ignore BlockingIOError, and select() for writability & optionally specified timeout. pngbot.py:IrcBot.readline(): replace settimeout()/socket.timeout-based logic w/ select() for readability & optionally specified timeout. pngbot.py:IrcBot.sendline(): select() for writability & optionally specified timeout and send() full buffer until failure. pngbot.py:IrcMiRCARTBot.dispatch(): dispatch expired timers prior to calling readline(). pngbot.py:main(): default (maximum) connect timeout to 15 seconds. Lucio Andrés Illanes Albornoz 2018-01-03 01:38:41 +0100
  • 09a7995a50 mirc2png.py:MiRCART.parseAsChar(): implement ^V (reverse) by swapping {background,foreground} colours. Lucio Andrés Illanes Albornoz 2018-01-03 01:25:46 +0100
  • 532806176c pngbot.py:IrcBot.readline(): correctly catch socket.timeout exception. Lucio Andrés Illanes Albornoz 2018-01-03 00:57:55 +0100
  • ebd2ce9393 pngbot.py:IrcMiRCARTBot.dispatch353(): skip empty nick specs. Lucio Andrés Illanes Albornoz 2018-01-03 00:53:42 +0100
  • a0db56a530 pngbot.py:IrcBot.readline(): add optional timeout parameter. pngbot.py:IrcMiRCARTBot.clientChannelRejoin{,TimerNext}: added to support delayed rejoin-on-kick logic. pngbot.py:IrcMiRCARTBot.dispatchJoin(): reset clientChannelRejoin{,TimerNext} on successful (re)join to clientChannel. pngbot.py:IrcMiRCARTBot.dispatchKick(): set clientChannelRejoin{,TimerNext} on kick from clientChannel to time.time() + 15 (seconds.) pngbot.py:IrcMiRCARTBot.dispatchTimer(): (re)join clientChannel and set clientChannelRejoin{,TimerNext} to time.time() + 15 (seconds.) pngbot.py:IrcMiRCARTBot.dispatch(): call readline() w/ timeout delta given clientChannelRejoinTimerNext. Lucio Andrés Illanes Albornoz 2018-01-03 00:40:37 +0100
  • 936bfb6c86 pngbot.py:IrcMiRCARTBot.dispatchKick(): rejoin channel on kick. Lucio Andrés Illanes Albornoz 2018-01-03 00:13:02 +0100
  • c6aa3f9ad9 pngbot.py:IrcBot.readline(): correctly parse messages w/o a prefix. Lucio Andrés Illanes Albornoz 2018-01-03 00:05:46 +0100
  • 90d9d146f1 README.md: update usage information. Lucio Andrés Illanes Albornoz 2018-01-02 23:43:39 +0100
  • 95c950d2ee pngbot.py:IrcMiRCARTBot.dispatch353(): fix indentation. Lucio Andrés Illanes Albornoz 2018-01-02 23:39:38 +0100
  • 8f29ba4e16 pngbot.py:IrcMiRCARTBot.dispatch353(): correctly print channel name. Lucio Andrés Illanes Albornoz 2018-01-02 23:38:32 +0100
  • f4218e8ae1 pngbot.py:IrcMiRCARTBot.dispatch{001,353,MODE,None,PING,PRIVMSG}(): split from dispatch(). Lucio Andrés Illanes Albornoz 2018-01-02 23:35:01 +0100
  • 28e5b9b958 pngbot.py:IrcMiRCARTBot.dispatch(): ignore `!pngbot' requests from unauthorised (non-opped) nicks. pngbot.py:IrcMiRCARTBot.dispatch(): add status (stdout) messages. pngbot.py:IrcMiRCARTBot.dispatch(): always use lower-case channel name in status (stdout) messages. Lucio Andrés Illanes Albornoz 2018-01-02 23:23:30 +0100
  • 993e986ec0 pngbot.py:IrcMiRCARTBot.clientChannelOps: added to track nicks authorised to use `!pngbot'. pngbot.py:IrcMiRCARTBot.dispatch(): sync clientChannelOps w/ 353 (RPL_NAMREPLY) and (channel) MODE messages. Lucio Andrés Illanes Albornoz 2018-01-02 23:12:26 +0100
  • 75e8e5fdf0 pngbot.py:IrcMiRCARTBot.uploadToImgur(): split from dispatch(). pngbot.py:IrcMiRCARTBot.dispatch(): only os.remove() if target file exists. Lucio Andrés Illanes Albornoz 2018-01-02 22:38:10 +0100
  • 4556f8b238 pngbot.py: set +x bit. Lucio Andrés Illanes Albornoz 2018-01-02 22:25:00 +0100
  • 3b29343e15 mirc2png.py:MiRCART.__init__(): move defaults from main(). Lucio Andrés Illanes Albornoz 2018-01-02 22:24:21 +0100
  • 4f56b9c783 pngbot.py: splits main into class IrcMiRCARTBot. pngbot.py:IrcBot.close(): only close() clientSocket if non-None. pngbot.py:IrcMiRCARTBot.connect(): correctly zero-initialise clientLastMessage. pngbot.py:IrcMiRCARTBot.dispatch(): fix imgurResponseHttp.status_code reference. Lucio Andrés Illanes Albornoz 2018-01-02 22:20:20 +0100
  • 4c5755d2fc pngbot.py: rate-limit `!pngbot' processing to once (1) each 45 seconds. Lucio Andrés Illanes Albornoz 2018-01-02 22:02:36 +0100
  • e091920bda pngbot.py: handle HTTP status codes differing from 200. pngbot.py: update IRC message text. Lucio Andrés Illanes Albornoz 2018-01-02 21:57:21 +0100
  • b94d3afdb5 pngbot.py: convert to lower case when comparing channel names. Lucio Andrés Illanes Albornoz 2018-01-02 21:54:02 +0100
  • 5f4aa470b9 README.md: add pngbot.py prerequisites. pngbot.py: initial commit (requires python3-{json,requests,urllib3}.) Lucio Andrés Illanes Albornoz 2018-01-02 20:51:32 +0100
  • 93946c3bc9 mirc2png.py: fix class declaration & commenting style. Lucio Andrés Illanes Albornoz 2018-01-02 20:51:06 +0100
  • 89e244890c .gitignore: ignore __pycache__/. Lucio Andrés Illanes Albornoz 2018-01-02 20:50:40 +0100
  • 1c664f26e0 .gitignore: added to repository. Lucio Andrés Illanes Albornoz 2018-01-02 19:16:09 +0100
  • 2d397ad4cf README.md: added to repository. Lucio Andrés Illanes Albornoz 2018-01-02 17:03:15 +0100
  • 734cc19333 DejaVuSansMono.ttf: added to repository for convenience. mirc2png.py:main(): default fontFilePath to `DejaVuSansMono.ttf'. Lucio Andrés Illanes Albornoz 2018-01-02 16:58:15 +0100
  • abaa92b53d mirc2png.py:parseAsChar(): implement underline (^_.) mirc2png.py:__init__(): increment self.outCurY by correct row height. Lucio Andrés Illanes Albornoz 2018-01-02 16:54:39 +0100
  • 2ea89a0559 Initial commit. Lucio Andrés Illanes Albornoz 2018-01-02 16:19:07 +0100