The only way I know to get the content of the selected portion of text in Blender Text Editor is by having my code execute from inside the Text Editor Window. A quick look at the operations needed resulted in taking down some notes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bpy.ops.text.copy() | |
bpy.ops.text.paste() |
In a previous bout of blender python frenzy I made a small add-on to allow me to switch on all eye candy for the Text Editor ( text appeal onGithub ). That add-on is different enough to not really provide me with much reusable code, so I take a look at the code for the blender UI (located in /bin/2.62/scripts/startip/bl_ui called space_text.py). I hope to find some reference to the right click menu here.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TEXT_MT_toolbox(Menu): | |
bl_label = "" | |
def draw(self, context): | |
layout = self.layout | |
layout.operator_context = 'INVOKE_DEFAULT' | |
layout.operator("text.cut") | |
layout.operator("text.copy") | |
layout.operator("text.paste") | |
layout.separator() | |
layout.operator("text.run_script") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TextEval(bpy.types.Operator): | |
bl_label = "" | |
bl_idname = "txt.eval_selected_text" | |
def execute(self, context): | |
bpy.ops.text.copy() | |
copied_text = bpy.data.window_managers[0].clipboard | |
print(copied_text) | |
print('should print stuff') | |
return {'FINISHED'} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bl_info = { | |
'name': 'Text Editor Eval Operator', | |
'author': 'Dealga McArdle (zeffii) <digitalaphasia.com>', | |
'version': (0, 1, 0), | |
'blender': (2, 6, 2), | |
'location': 'text editor > right click > evaluate', | |
'description': 'inline arithmetic evaluator', | |
'wiki_url': '', | |
'tracker_url': '', | |
'category': 'Text Editor'} | |
import bpy | |
def strict_eval(input_string): | |
''' | |
Test the input, avoid evaluating strings that are probably not | |
intended for execution. | |
The only thing of which this script can be fairly certain is that | |
the content of the clipboard is filled by the text.copy() operation. | |
''' | |
try: | |
answer = str(eval(input_string)) | |
return answer | |
except: | |
print('addon not smart enough yet to read minds') | |
return input_string | |
def eval_menu_item(self, context): | |
layout = self.layout | |
layout.operator("txt.eval_selected_text", text='Eval Selected') | |
class TextEval(bpy.types.Operator): | |
bl_label = "" | |
bl_idname = "txt.eval_selected_text" | |
def execute(self, context): | |
bpy.ops.text.copy() | |
copied_text = bpy.data.window_managers[0].clipboard | |
answer = strict_eval(copied_text) | |
bpy.data.window_managers[0].clipboard = answer | |
bpy.ops.text.paste() | |
return {'FINISHED'} | |
def register(): | |
bpy.utils.register_class(TextEval) | |
bpy.types.TEXT_MT_toolbox.prepend(eval_menu_item) | |
def unregister(): | |
bpy.utils.unregister_class(TextEval) | |
bpy.types.TEXT_MT_toolbox.remove(eval_menu_item) | |
if __name__ == "__main__": | |
register() |