[Python-ogre-commit] SF.net SVN: python-ogre:[745] trunk/python-ogre
Brought to you by:
andy_miller,
roman_yakovenko
From: <and...@us...> - 2008-09-18 23:38:58
|
Revision: 745 http://python-ogre.svn.sourceforge.net/python-ogre/?rev=745&view=rev Author: andy_miller Date: 2008-09-19 06:39:09 +0000 (Fri, 19 Sep 2008) Log Message: ----------- Final fix (for the moment) for Hikari -- seems to work OK Modified Paths: -------------- trunk/python-ogre/ChangeLog.txt trunk/python-ogre/code_generators/hikari/generate_code.py Modified: trunk/python-ogre/ChangeLog.txt =================================================================== --- trunk/python-ogre/ChangeLog.txt 2008-09-19 01:11:49 UTC (rev 744) +++ trunk/python-ogre/ChangeLog.txt 2008-09-19 06:39:09 UTC (rev 745) @@ -5,6 +5,8 @@ Implemented Hikari demo (implemented callbacks in the wrapper generation) Fixed code generation for QuickGui, bullet and noise to correctly generate PyDoc documentation strings Implemented description text and description links in environment.py to help automate module summary +Changes to SampleFramework - additional function (_inputSystemParameters ) to pass parameters to OIS setup - see Hikari demo +Changes to SampleFramework - Move code from frameStarted to frameRenderingQueue Modified: trunk/python-ogre/code_generators/hikari/generate_code.py =================================================================== --- trunk/python-ogre/code_generators/hikari/generate_code.py 2008-09-19 01:11:49 UTC (rev 744) +++ trunk/python-ogre/code_generators/hikari/generate_code.py 2008-09-19 06:39:09 UTC (rev 745) @@ -68,9 +68,6 @@ excludes = ['::Hikari::FlashControl::bind' # implemented in hand_made_wrappers ,'::Hikari::FlashControl::unbind' -# ,'::Hikari::FlashControl::callFunction' # uses Args which we don't have a to python converter for -# remove default creator on args... - ] for x in excludes: main_ns.mem_fun(x).exclude() @@ -98,6 +95,10 @@ main_ns = global_ns.namespace( MAIN_NAMESPACE ) else: main_ns = global_ns + + # remove default creator on args... + c = main_ns.mem_fun( '::Hikari::FlashControl::callFunction' ) + c.arguments[1].default_value = "" ############################################################ ## This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |