2018-06-27 15:09:32 +00:00
#!/usr/bin/env python3
#
# ENNTool -- mIRC art animation tool (for EFnet #MiRCART) (WIP)
# Copyright (c) 2018 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
# This project is licensed under the terms of the MIT license.
#
# TODO:
# 1) -A: render frame #1, render frame #2, ...
2018-07-03 16:17:23 +00:00
# 2) -s: effects: rotate, smash into bricks, swirl, wave, ...
# 3) Feature: include ETA @ progress bar
# 4) Feature: autodetect video width from widest mircart
# 5) Feature: render mircart as 3D blocks vs flat surface
# 6) Optimisation: dont stall GPU w/ glReadPixels(), switch to asynchronous model w/ FBO or PBO (http://www.songho.ca/opengl/gl_fbo.html, http://www.songho.ca/opengl/gl_pbo.html)
# 7) OpenGL: use VAOs + glVertexAttribFormat + glVertexAttribBinding
2018-06-27 15:09:32 +00:00
#
from getopt import getopt , GetoptError
from glob import glob
from OpenGL . GL import *
import os , sys , time
import wx
from ENNToolGLCanvasPanel import ENNToolGLCanvasPanel
2018-07-02 20:49:43 +00:00
from ENNToolGLTTFTexture import ENNToolGLTTFTexture
2018-07-03 16:17:23 +00:00
from ENNToolGLVideoWriter import ENNToolGLVideoWriter
2018-06-27 15:09:32 +00:00
from ENNToolMiRCARTImporter import ENNToolMiRCARTImporter
class ENNToolApp ( object ) :
""" XXX """
# {{{ parseArgv(self, argv): XXX
def parseArgv ( self , argv ) :
def usage ( argv0 ) :
print ( " usage: {} " . format ( os . path . basename ( argv0 ) ) , file = sys . stderr )
2018-07-03 16:17:23 +00:00
print ( " [-A] [-f fps] [-h] [-o fname] " . format ( os . path . basename ( argv0 ) ) , file = sys . stderr )
print ( " [-p] [-r WxH] [-R WxH] [-s fname] " , file = sys . stderr )
print ( " [-S] [-v] [--] fname.. " , file = sys . stderr )
2018-06-27 15:09:32 +00:00
print ( " " , file = sys . stderr )
print ( " -a........: select animation mode " , file = sys . stderr )
print ( " -f fps....: set video FPS; defaults to 25 " , file = sys . stderr )
print ( " -h........: show this screen " , file = sys . stderr )
2018-07-03 16:17:23 +00:00
print ( " -o fname..: output video filename; extension determines video type " , file = sys . stderr )
2018-06-27 15:09:32 +00:00
print ( " -p........: play video after rendering " , file = sys . stderr )
print ( " -r WxH....: set video resolution; defaults to 1152x864 " , file = sys . stderr )
print ( " -R WxH....: set MiRCART cube resolution; defaults to 0.1x0.2 " , file = sys . stderr )
2018-07-03 16:17:23 +00:00
print ( " -s fname..: input script filename " , file = sys . stderr )
2018-06-27 15:09:32 +00:00
print ( " -S........: select scrolling mode " , file = sys . stderr )
print ( " -v........: be verbose " , file = sys . stderr )
try :
2018-07-03 16:17:23 +00:00
optlist , argv = getopt ( argv [ 1 : ] , " Af:ho:pr:R:s:Sv " )
2018-06-27 15:09:32 +00:00
optdict = dict ( optlist )
if " -h " in optdict :
usage ( sys . argv [ 0 ] ) ; exit ( 0 ) ;
elif not " -o " in optdict :
2018-07-03 16:17:23 +00:00
raise GetoptError ( " -o fname must be specified " )
2018-06-27 15:09:32 +00:00
elif not len ( argv ) :
2018-07-03 16:17:23 +00:00
raise GetoptError ( " at least one MiRCART input fname must be specified " )
2018-06-27 15:09:32 +00:00
if not " -f " in optdict :
optdict [ " -f " ] = " 25 "
if not " -r " in optdict :
optdict [ " -r " ] = " 1152x864 "
if not " -R " in optdict :
optdict [ " -R " ] = " 0.1x0.2 "
if " -r " in optdict :
optdict [ " -r " ] = [ int ( r ) for r in optdict [ " -r " ] . split ( " x " ) ] [ 0 : 2 ]
if " -R " in optdict :
optdict [ " -R " ] = [ float ( r ) for r in optdict [ " -R " ] . split ( " x " ) ] [ 0 : 2 ]
except GetoptError as e :
print ( e . msg ) ; usage ( sys . argv [ 0 ] ) ; exit ( 1 ) ;
return argv , optdict
# }}}
# {{{ printProgress(self, progressCur, progressMax): XXX
def printProgress ( self , progressCur , progressMax ) :
progressDiv = float ( progressCur / progressMax )
if progressDiv > = 1 :
progressDiv = 1 ; endChar = " \n " ;
else :
endChar = " "
print ( " \r [ {:<50} ] {} % " . format (
( " = " * int ( progressDiv * 50 ) ) , int ( progressDiv * 100 ) ) , end = endChar )
# }}}
2018-07-03 16:17:23 +00:00
# {{{ modeScroll(self, argv, optdict, GLVideoWriter, panelGLCanvas, fps=25, scrollRate=0.25): XXX
def modeScroll ( self , argv , optdict , GLVideoWriter , panelGLCanvas , fps = 25 , scrollRate = 0.25 ) :
2018-06-27 15:09:32 +00:00
MiRCART = [ ]
for inFileArg in argv :
for inFile in sorted ( glob ( inFileArg ) ) :
MiRCART + = ENNToolMiRCARTImporter ( inFile ) . outMap
curY , rotateX , rotateY , translateY = 0 , 0 , 0 , scrollRate
2018-07-02 20:49:43 +00:00
artTextureId , artInfo = ENNToolGLTTFTexture ( MiRCART , optdict [ " -R " ] , optdict [ " -r " ] ) . getParams ( )
2018-06-28 17:46:17 +00:00
artVbo , artVboLen , lastY , numVertices = panelGLCanvas . renderMiRCART ( artInfo , MiRCART , cubeSize = optdict [ " -R " ] )
2018-06-27 15:09:32 +00:00
if " -v " in optdict :
print ( " {} vertices " . format ( numVertices ) )
w , h = panelGLCanvas . GetClientSize ( ) ; w , h = max ( w , 1.0 ) , max ( h , 1.0 ) ;
while True :
self . printProgress ( curY , lastY )
for numFrame in range ( fps ) :
panelGLCanvas . renderFrame ( artTextureId , artVbo , artVboLen )
if translateY :
glTranslatef ( 0 , translateY , 0 ) ; curY + = translateY
if rotateX :
glRotatef ( rotateX * ( 180.0 / w ) , 0.0 , 1.0 , 0.0 )
if rotateY :
glRotatef ( rotateY * ( 180.0 / h ) , 1.0 , 0.0 , 0.0 )
2018-07-03 16:17:23 +00:00
GLVideoWriter . saveFrame ( )
2018-06-27 15:09:32 +00:00
if curY > = lastY :
self . printProgress ( curY , lastY ) ; break ;
2018-07-03 16:17:23 +00:00
GLVideoWriter . saveVideo ( )
2018-06-27 15:09:32 +00:00
# }}}
# {{{ __init__(self, argv): XXX
def __init__ ( self , argv ) :
argv , optdict = self . parseArgv ( argv )
wxApp = wx . App ( False )
appFrameSize = optdict [ " -r " ]
appFrame = wx . Frame ( None , size = appFrameSize ) ; appFrame . Hide ( ) ;
appPanelSkin = wx . Panel ( appFrame , wx . ID_ANY )
videoFps , videoPath = int ( optdict [ " -f " ] ) , optdict [ " -o " ]
2018-07-03 16:17:23 +00:00
panelGLCanvas = ENNToolGLCanvasPanel ( appPanelSkin , size = appFrameSize )
2018-06-28 17:46:17 +00:00
panelGLCanvas . initOpenGL ( )
panelGLCanvas . initShaders ( )
2018-07-03 16:17:23 +00:00
GLVideoWriter = ENNToolGLVideoWriter ( videoPath , panelGLCanvas . GetClientSize ( ) , videoFps = videoFps )
2018-06-27 15:09:32 +00:00
if " -v " in optdict :
time0 = time . time ( )
2018-07-03 16:17:23 +00:00
self . modeScroll ( argv , optdict , GLVideoWriter , panelGLCanvas , fps = videoFps )
2018-06-27 15:09:32 +00:00
if " -v " in optdict :
print ( " delta {} s " . format ( time . time ( ) - time0 ) )
if " -p " in optdict :
os . startfile ( videoPath )
# }}}
#
# Entry point
def main ( * argv ) :
ENNToolApp ( argv )
if __name__ == " __main__ " :
main ( * sys . argv )
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120