BPython - first step for better integration of Python in Blender:

- add a new space: Space Script
- add a new dna struct: Script
- add these two properly everywhere they are meant to

It's not a tiny commit, but most of it is ground work for what is still to be done.
Right now the benefits should be: freeing the Text Editor to be used in a window even while a script w/ gui in "on" and letting more than one currently running script w/ gui be accessible from each window

Some files are added, so some build systems (not autotools) will need updates
This commit is contained in:
2003-12-14 01:18:09 +00:00
parent 6653af7914
commit 49021f7ec4
36 changed files with 1656 additions and 883 deletions

View File

@@ -68,6 +68,7 @@ typedef struct Main {
ListBase key; ListBase key;
ListBase world; ListBase world;
ListBase screen; ListBase screen;
ListBase script;
ListBase vfont; ListBase vfont;
ListBase text; ListBase text;
ListBase sound; ListBase sound;

View File

@@ -0,0 +1,49 @@
/**
* blenlib/BKE_script.h (mar-2001 nzc)
*
* $Id$
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version. The Blender
* Foundation also sells licenses for use in proprietary software under
* the Blender License. See http://www.blender.org/BL/ for information
* about this.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
* All rights reserved.
*
* This is a new part of Blender.
*
* Contributor(s): Willian P. Germano.
*
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#ifndef BKE_SCRIPT_H
#define BKE_SCRIPT_H
#ifdef __cplusplus
extern "C" {
#endif
struct Script;
void free_script (struct Script *script);
#ifdef __cplusplus
}
#endif
#endif /* BKE_SCRIPT_H */

View File

@@ -71,6 +71,7 @@
#include "DNA_screen_types.h" #include "DNA_screen_types.h"
#include "DNA_vfont_types.h" #include "DNA_vfont_types.h"
#include "DNA_text_types.h" #include "DNA_text_types.h"
#include "DNA_script_types.h"
#include "DNA_sound_types.h" #include "DNA_sound_types.h"
#include "DNA_group_types.h" #include "DNA_group_types.h"
#include "DNA_armature_types.h" #include "DNA_armature_types.h"
@@ -86,11 +87,12 @@
#include "BKE_sound.h" #include "BKE_sound.h"
#include "BKE_object.h" #include "BKE_object.h"
#include "BKE_screen.h" #include "BKE_screen.h"
#include "BKE_script.h"
#include "BKE_mesh.h" #include "BKE_mesh.h"
#include "BKE_material.h" #include "BKE_material.h"
#include "BKE_curve.h" #include "BKE_curve.h"
#include "BKE_mball.h" #include "BKE_mball.h"
#include "BKE_text.h" #include "BKE_text.h"
#include "BKE_texture.h" #include "BKE_texture.h"
#include "BKE_scene.h" #include "BKE_scene.h"
#include "BKE_image.h" #include "BKE_image.h"
@@ -173,6 +175,8 @@ ListBase *wich_libbase(Main *mainlib, short type)
return &(mainlib->vfont); return &(mainlib->vfont);
case ID_TXT: case ID_TXT:
return &(mainlib->text); return &(mainlib->text);
case ID_SCRIPT:
return &(mainlib->script);
case ID_SO: case ID_SO:
return &(mainlib->sound); return &(mainlib->sound);
case ID_SAMPLE: case ID_SAMPLE:
@@ -225,9 +229,10 @@ int set_listbasepointers(Main *main, ListBase **lb)
lb[23]= &(main->group); lb[23]= &(main->group);
lb[24]= samples; lb[24]= samples;
lb[25]= 0; lb[25]= &(main->script);
lb[26]=0;
return 25; return 26;
} }
/* *********** ALLOC AND FREE ***************** /* *********** ALLOC AND FREE *****************
@@ -305,6 +310,9 @@ static ID *alloc_libblock_notest(short type)
case ID_TXT: case ID_TXT:
id= MEM_callocN(sizeof(Text), "text"); id= MEM_callocN(sizeof(Text), "text");
break; break;
case ID_SCRIPT:
id= MEM_callocN(sizeof(Script), "script");
break;
case ID_SO: case ID_SO:
id= MEM_callocN(sizeof(bSound), "sound"); id= MEM_callocN(sizeof(bSound), "sound");
break; break;
@@ -450,6 +458,9 @@ void free_libblock(ListBase *lb, void *idv)
case ID_TXT: case ID_TXT:
free_text((Text *)id); free_text((Text *)id);
break; break;
case ID_SCRIPT:
free_script((Script *)id);
break;
case ID_SO: case ID_SO:
sound_free_sound((bSound *)id); sound_free_sound((bSound *)id);
break; break;

View File

@@ -0,0 +1,70 @@
/* script.c
*
*
* $Id$
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version. The Blender
* Foundation also sells licenses for use in proprietary software under
* the Blender License. See http://www.blender.org/BL/ for information
* about this.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
* All rights reserved.
*
* This is a new part of Blender.
*
* Contributor(s): Willian P. Germano.
*
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#include "MEM_guardedalloc.h"
#include "DNA_script_types.h"
#include "BKE_script.h"
#include "BIF_drawscript.h" /* for unlink_script */
/*
#include "BLI_blenlib.h"
#include "BKE_bad_level_calls.h"
#include "BKE_utildefines.h"
#include "BKE_library.h"
#include "BKE_global.h"
#include "BKE_main.h"
#include "BPY_extern.h" // Blender Python library
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
*/
void free_script (Script *script)
{
if (!script) return;
if (script->py_globaldict || script->py_button ||
script->py_event || script->py_draw)
{
BPY_clear_script(script);
}
unlink_script (script); /* unlink from all visible SPACE_SCRIPTS */
return;
}

View File

@@ -147,6 +147,7 @@ void free_text(Text *text)
if(text->name) MEM_freeN(text->name); if(text->name) MEM_freeN(text->name);
MEM_freeN(text->undo_buf); MEM_freeN(text->undo_buf);
if (text->compiled) BPY_free_compiled_text(text);
} }
Text *add_empty_text(void) Text *add_empty_text(void)

View File

@@ -2478,10 +2478,11 @@ static void lib_link_screen(FileData *fd, Main *main)
st->text= newlibadr(fd, sc->id.lib, st->text); st->text= newlibadr(fd, sc->id.lib, st->text);
st->py_draw= NULL; }
st->py_event= NULL; else if(sl->spacetype==SPACE_SCRIPT) {
st->py_button= NULL; SpaceScript *sc= (SpaceScript *)sl;
st->py_globaldict= NULL;
sc->script = NULL;
} }
else if(sl->spacetype==SPACE_OOPS) { else if(sl->spacetype==SPACE_OOPS) {
SpaceOops *so= (SpaceOops *)sl; SpaceOops *so= (SpaceOops *)sl;

View File

@@ -1278,6 +1278,9 @@ static void write_screens(WriteData *wd, ListBase *scrbase)
else if(sl->spacetype==SPACE_TEXT) { else if(sl->spacetype==SPACE_TEXT) {
writestruct(wd, DATA, "SpaceText", 1, sl); writestruct(wd, DATA, "SpaceText", 1, sl);
} }
else if(sl->spacetype==SPACE_SCRIPT) {
writestruct(wd, DATA, "SpaceScript", 1, sl);
}
else if(sl->spacetype==SPACE_ACTION) { else if(sl->spacetype==SPACE_ACTION) {
writestruct(wd, DATA, "SpaceAction", 1, sl); writestruct(wd, DATA, "SpaceAction", 1, sl);
} }

View File

@@ -0,0 +1,45 @@
/**
*
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version. The Blender
* Foundation also sells licenses for use in proprietary software under
* the Blender License. See http://www.blender.org/BL/ for information
* about this.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
* All rights reserved.
*
* This is a new part of Blender.
*
* Contributor(s): Willian P. Germano.
*
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#ifndef BIF_DRAWSCRIPT_H
#define BIF_DRAWSCRIPT_H
struct ScrArea;
struct SpaceScript;
struct Script;
void unlink_script(struct Script *script);
void init_scriptspace(struct ScrArea *sa);
void free_scriptspace(struct SpaceScript *sc);
#endif /* BIF_DRAWSCRIPT_H */

View File

@@ -37,7 +37,7 @@ struct uiBlock;
struct ID; struct ID;
/* these used to be in blender/src/headerbuttons.c: */ /* these used to be in blender/src/headerbuttons.c: */
#define SPACEICONMAX 14 /* See release/datafiles/blenderbuttons */ #define SPACEICONMAX 15 /* See release/datafiles/blenderbuttons */
#define XIC 20 #define XIC 20
#define YIC 20 #define YIC 20
@@ -83,6 +83,7 @@ void oops_buttons(void);
void seq_buttons(void); void seq_buttons(void);
void sound_buttons(void); void sound_buttons(void);
void text_buttons(void); void text_buttons(void);
void script_buttons(void);
void view3d_buttons(void); void view3d_buttons(void);
void do_global_buttons(unsigned short event); void do_global_buttons(unsigned short event);
@@ -101,6 +102,7 @@ void do_oops_buttons(short event);
void do_seq_buttons(short event); void do_seq_buttons(short event);
void do_sound_buttons(unsigned short event); void do_sound_buttons(unsigned short event);
void do_text_buttons(unsigned short event); void do_text_buttons(unsigned short event);
void do_script_buttons(unsigned short event);
void do_view3d_buttons(short event); void do_view3d_buttons(short event);
void do_headerbuttons(short event); void do_headerbuttons(short event);

View File

@@ -336,6 +336,9 @@
#define B_TEXTSTORE 506 #define B_TEXTSTORE 506
#define B_TEXTLINENUM 507 #define B_TEXTLINENUM 507
/* SCRIPT: 525 */
#define B_SCRIPTBROWSE 526
/* FILE: 550 */ /* FILE: 550 */
#define B_SORTFILELIST 551 #define B_SORTFILELIST 551
#define B_RELOADDIR 552 #define B_RELOADDIR 552

View File

@@ -235,6 +235,7 @@
#define REDRAWSOUND 0x402F #define REDRAWSOUND 0x402F
#define REDRAWACTION 0x4030 #define REDRAWACTION 0x4030
#define REDRAWNLA 0x4031 #define REDRAWNLA 0x4031
#define REDRAWSCRIPT 0x4032
#endif /* !__MYDEVICE_H__ */ #endif /* !__MYDEVICE_H__ */

View File

@@ -126,6 +126,7 @@ typedef struct Library {
#define ID_SEQ MAKE_ID2('S', 'Q') #define ID_SEQ MAKE_ID2('S', 'Q')
#define ID_AR MAKE_ID2('A', 'R') #define ID_AR MAKE_ID2('A', 'R')
#define ID_AC MAKE_ID2('A', 'C') #define ID_AC MAKE_ID2('A', 'C')
#define ID_SCRIPT MAKE_ID2('P', 'Y')
#define IPO_CO MAKE_ID2('C', 'O') /* NOTE! This is not an ID, but is needed for g.sipo->blocktype */ #define IPO_CO MAKE_ID2('C', 'O') /* NOTE! This is not an ID, but is needed for g.sipo->blocktype */

View File

@@ -161,7 +161,8 @@ enum {
SPACE_IMASEL, SPACE_IMASEL,
SPACE_SOUND, SPACE_SOUND,
SPACE_ACTION, SPACE_ACTION,
SPACE_NLA SPACE_NLA,
SPACE_SCRIPT
/* SPACE_LOGIC */ /* SPACE_LOGIC */
}; };

View File

@@ -0,0 +1,69 @@
/**
* blenlib/DNA_script_types.h (mar-2001 nzc)
*
* $Id$
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version. The Blender
* Foundation also sells licenses for use in proprietary software under
* the Blender License. See http://www.blender.org/BL/ for information
* about this.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
* All rights reserved.
*
* This is a new part of Blender.
*
* Contributor(s): Willian P. Germano.
*
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#ifndef DNA_SCRIPT_TYPES_H
#define DNA_SCRIPT_TYPES_H
#include "DNA_listBase.h"
#include "DNA_ID.h"
typedef struct Script {
ID id;
char *filename; /* NULL for Blender Text scripts */
void *py_draw;
void *py_event;
void *py_button;
void *py_globaldict;
int flags, lastspace;
} Script;
/* Note: a script that registers callbacks in the script->py_* pointers
* above (or calls the file or image selectors) needs to keep its global
* dictionary until Draw.Exit() is called and the callbacks removed.
* Unsetting SCRIPT_RUNNING means the interpreter reached the end of the
* script and returned control to Blender, but we can't get rid of its
* namespace (global dictionary) while SCRIPT_GUI or SCRIPT_FILESEL is set,
* because of the callbacks. The flags and the script name are saved in
* each running script's global dictionary, under '__script__'. */
/* Flags */
#define SCRIPT_RUNNING 0x01
#define SCRIPT_GUI 0x02
#define SCRIPT_FILESEL 0x04
#endif /* DNA_SCRIPT_TYPES_H */

View File

@@ -42,6 +42,7 @@
struct Ipo; struct Ipo;
struct ID; struct ID;
struct Text; struct Text;
struct Script;
struct ImBuf; struct ImBuf;
struct Image; struct Image;
struct SpaceIpo; struct SpaceIpo;
@@ -251,12 +252,19 @@ typedef struct SpaceText {
struct rcti txtscroll, txtbar; struct rcti txtscroll, txtbar;
void *py_draw;
void *py_event;
void *py_button;
void *py_globaldict;
} SpaceText; } SpaceText;
typedef struct SpaceScript {
SpaceLink *next, *prev;
int spacetype, pad1;
struct ScrArea *area;
struct Script *script;
int pad2;
short flags, menunr;
} SpaceScript;
# #
# #
typedef struct OneSelectableIma { typedef struct OneSelectableIma {

View File

@@ -41,6 +41,8 @@ struct ID; /* defined in DNA_ID.h */
struct ScriptLink; /* defined in DNA_scriptlink_types.h */ struct ScriptLink; /* defined in DNA_scriptlink_types.h */
struct ListBase; /* defined in DNA_listBase.h */ struct ListBase; /* defined in DNA_listBase.h */
struct SpaceText; /* defined in DNA_space_types.h */ struct SpaceText; /* defined in DNA_space_types.h */
struct SpaceScript;/* defined in DNA_space_types.h */
struct Script; /* defined in DNA_script_types.h */
/* /*
struct _object; // forward declaration for PyObject ! struct _object; // forward declaration for PyObject !
*/ */
@@ -51,7 +53,7 @@ void BPY_syspath_append_pythondir(void);
int BPY_Err_getLinenumber(void); int BPY_Err_getLinenumber(void);
const char *BPY_Err_getFilename(void); const char *BPY_Err_getFilename(void);
/* void BPY_Err_Handle(struct Text *text); */ /* void BPY_Err_Handle(struct Text *text); */
struct _object *BPY_txt_do_python(struct SpaceText* st); int BPY_txt_do_python(struct SpaceText* st);
void BPY_free_compiled_text(struct Text* text); void BPY_free_compiled_text(struct Text* text);
/*void BPY_clear_bad_scriptlink(struct ID *id, struct Text *byebye); */ /*void BPY_clear_bad_scriptlink(struct ID *id, struct Text *byebye); */
void BPY_clear_bad_scriptlinks(struct Text *byebye); void BPY_clear_bad_scriptlinks(struct Text *byebye);
@@ -64,8 +66,10 @@ void BPY_copy_scriptlink(struct ScriptLink *scriptlink);
/* format importer hook */ /* format importer hook */
int BPY_call_importloader(char *name); int BPY_call_importloader(char *name);
int BPY_spacetext_is_pywin(struct SpaceText *st); //int BPY_spacetext_is_pywin(struct SpaceText *st);
void BPY_spacetext_do_pywin_draw(struct SpaceText *st); void BPY_spacescript_do_pywin_draw(struct SpaceScript *sc);
void BPY_spacetext_do_pywin_event(struct SpaceText *st, unsigned short event, short val); void BPY_spacescript_do_pywin_event(struct SpaceScript *sc, unsigned short event, short val);
void BPY_clear_script(struct Script *script);
void BPY_free_finished_script(struct Script *script);
void init_syspath(void); void init_syspath(void);

View File

@@ -39,10 +39,10 @@
#include <stdio.h> #include <stdio.h>
#include <MEM_guardedalloc.h> #include <MEM_guardedalloc.h>
#include <BLI_blenlib.h> /* for BLI_last_slash() */ #include <BLI_blenlib.h> /* for BLI_last_slash() */
#include <BKE_global.h> #include <BKE_global.h>
#include <BKE_library.h>
#include <BKE_main.h> #include <BKE_main.h>
#include <BKE_text.h> #include <BKE_text.h>
#include <DNA_camera_types.h> #include <DNA_camera_types.h>
@@ -51,15 +51,17 @@
#include <DNA_material_types.h> #include <DNA_material_types.h>
#include <DNA_object_types.h> #include <DNA_object_types.h>
#include <DNA_scene_types.h> #include <DNA_scene_types.h>
#include <DNA_screen_types.h>
#include <DNA_script_types.h>
#include <DNA_scriptlink_types.h> #include <DNA_scriptlink_types.h>
#include <DNA_space_types.h> #include <DNA_space_types.h>
#include <DNA_text_types.h> #include <DNA_text_types.h>
#include <DNA_world_types.h> #include <DNA_world_types.h>
#include <DNA_userdef_types.h> /* for U.pythondir */ #include <DNA_userdef_types.h> /* for U.pythondir */
#include "BPY_extern.h" #include "BPY_extern.h"
#include "api2_2x/EXPP_interface.h" #include "api2_2x/EXPP_interface.h"
#include "api2_2x/constant.h"
/* bpy_registryDict is declared in api2_2x/Registry.h and defined /* bpy_registryDict is declared in api2_2x/Registry.h and defined
* here. This Python dictionary will be used to store data that scripts * here. This Python dictionary will be used to store data that scripts
@@ -371,81 +373,77 @@ void BPY_Err_Handle(Text *text)
/* Notes: It is called by blender/src/drawtext.c when a Blender user */ /* Notes: It is called by blender/src/drawtext.c when a Blender user */
/* presses ALT+PKEY in the script's text window. */ /* presses ALT+PKEY in the script's text window. */
/*****************************************************************************/ /*****************************************************************************/
struct _object *BPY_txt_do_python(struct SpaceText* st) int BPY_txt_do_python(struct SpaceText* st)
{ {
PyObject *dict, *ret; PyObject *py_dict, *py_result;
PyObject *main_dict = PyModule_GetDict(PyImport_AddModule("__main__")); BPy_constant *tracer;
Script *script = G.main->script.first;
if (!st->text) return NULL; if (!st->text) return 0;
/* The EXPP_releaseGlobalDict global variable controls whether we should run /* check if this text is already running */
* the script with a clean global dictionary or should keep the current one, while (script) {
* possibly already "polluted" by other calls to the Python Interpreter. if (!strcmp(script->id.name+2, st->text->id.name+2)) {
* The default is to use a clean one. To change this the script writer must /* if this text is already a running script, just move to it: */
* call Blender.ReleaseGlobalDict(bool), with bool == 0, in the script. */ EXPP_move_to_spacescript (script);
return 1;
if (EXPP_releaseGlobalDict) {
printf("Using a clean Global Dictionary.\n");
st->flags |= ST_CLEAR_NAMESPACE;
dict = CreateGlobalDictionary();
} }
else script = script->id.next;
dict = main_dict; /* must be careful not to free the main_dict */ }
/* Create a new script structure and initialize it: */
script = alloc_libblock(&G.main->script, ID_SCRIPT, GetName(st->text));
if (!script) {
printf("couldn't allocate memory for Script struct!");
return 0;
}
script->id.us = 1;
script->filename = NULL; /* it's a Blender Text script */
script->flags = SCRIPT_RUNNING;
script->py_draw = NULL;
script->py_event = NULL;
script->py_button = NULL;
py_dict = CreateGlobalDictionary();
script->py_globaldict = py_dict;
/* We will insert a constant dict at this script's namespace, with the name
* of the script. Later more info can be added, if necessary. */
tracer = (BPy_constant *)M_constant_New(); /*create a constant object*/
if (tracer) {
constant_insert(tracer, "name", PyString_FromString(script->id.name+2));
}
PyDict_SetItemString(py_dict, "__script__", (PyObject *)tracer);
clearScriptLinks (); clearScriptLinks ();
ret = RunPython (st->text, dict); /* Run the script */ py_result = RunPython (st->text, py_dict); /* Run the script */
if (!ret) { /* Failed execution of the script */ if (!py_result) { /* Failed execution of the script */
if (EXPP_releaseGlobalDict && (dict != main_dict))
ReleaseGlobalDictionary(dict);
BPY_Err_Handle(st->text); BPY_Err_Handle(st->text);
ReleaseGlobalDictionary(py_dict);
free_libblock(&G.main->script, script);
BPY_end_python(); BPY_end_python();
BPY_start_python(); BPY_start_python();
return NULL; return 0;
} }
else Py_DECREF (ret);
/* Scripts that use the GUI rely on the persistent global namespace, so
* they need a workaround: The namespace is released when the GUI is exit.'
* See api2_2x/Draw.c: Method_Register() */
/* Block below: The global dict should only be released if:
* - a script didn't defined it to be persistent and
* - Draw.Register() is not in use (no GUI) and
* - it is not the real __main__ dict (if it is, restart to clean it) */
if (EXPP_releaseGlobalDict) {
if (st->flags & ST_CLEAR_NAMESPACE) { /* False if the GUI is in use */
if (dict != main_dict) ReleaseGlobalDictionary(dict);
else { else {
BPY_end_python(); /* restart to get a fresh __main__ dict */ Py_DECREF (py_result);
BPY_start_python(); script->flags &=~SCRIPT_RUNNING;
} if (!script->flags) {
ReleaseGlobalDictionary(py_dict);
script->py_globaldict = NULL;
free_libblock(&G.main->script, script);
} }
} }
else if (dict != main_dict) PyDict_Update (main_dict, dict);
/* Line above: if it should be kept and it's not already the __main__ dict, return 1; /* normal return */
* merge it into the __main__ one. This happens when to release is the
* current behavior and the script changes that with
* Blender.ReleaseGlobalDict(0). */
/* Edited from old BPY_main.c:
* 'The return value is the global namespace dictionary of the script
* context. This may be stored in the SpaceText instance to give control
* over namespace persistence. Remember that the same script may be
* executed in several windows ... Namespace persistence is desired for
* scripts that use the GUI and store callbacks to the current script.' */
return dict;
} }
/*****************************************************************************/ /*****************************************************************************/
@@ -460,7 +458,6 @@ void BPY_free_compiled_text(struct Text* text)
return; return;
} }
/*****************************************************************************/ /*****************************************************************************/
/* ScriptLinks */ /* ScriptLinks */
/*****************************************************************************/ /*****************************************************************************/

View File

@@ -103,51 +103,65 @@ static Button *newbutton (void)
/* GUI interface routines */ /* GUI interface routines */
static void exit_pydraw(SpaceText *st) static void exit_pydraw(SpaceScript *sc, short error)
{ {
scrarea_queue_redraw(st->area); Script *script = NULL;
if (st) { if (!sc || !sc->script) return;
Py_XDECREF((PyObject *) st->py_draw);
Py_XDECREF((PyObject *) st->py_event);
Py_XDECREF((PyObject *) st->py_button);
st->py_draw= st->py_event= st->py_button= NULL; script = sc->script;
if (error) {
PyErr_Print();
scrarea_queue_redraw(sc->area);
} }
Py_XDECREF((PyObject *) script->py_draw);
Py_XDECREF((PyObject *) script->py_event);
Py_XDECREF((PyObject *) script->py_button);
script->py_draw = script->py_event = script->py_button = NULL;
} }
static void exec_callback(SpaceText *st, PyObject *callback, PyObject *args) static void exec_callback(SpaceScript *sc, PyObject *callback, PyObject *args)
{ {
PyObject *result = PyObject_CallObject (callback, args); PyObject *result = PyObject_CallObject (callback, args);
if (result == NULL) { if (result == NULL && sc->script) { /* errors in the script */
st->text->compiled = NULL; if (sc->script->filename == NULL) { /* if it's a Blender Text script */
PyErr_Print (); Text *text = G.main->text.first;
exit_pydraw (st); while (text) { /* find it and free its compiled code */
if (!strcmp(text->id.name+2, sc->script->id.name+2))
BPY_free_compiled_text(text);
}
text = text->id.next;
}
exit_pydraw(sc, 1);
} }
Py_XDECREF (result); Py_XDECREF (result);
Py_DECREF (args); Py_DECREF (args);
} }
/* BPY_spacetext_do_pywin_draw, the static spacetext_do_pywin_buttons and /* BPY_spacescript_do_pywin_draw, the static spacescript_do_pywin_buttons and
* BPY_spacetext_do_pywin_event are the three functions responsible for * BPY_spacescript_do_pywin_event are the three functions responsible for
* calling the draw, buttons and event callbacks registered with Draw.Register * calling the draw, buttons and event callbacks registered with Draw.Register
* (see Method_Register below). They are called (only the two BPY_ ones) * (see Method_Register below). They are called (only the two BPY_ ones)
* from blender/src/drawtext.c */ * from blender/src/drawscript.c */
void BPY_spacetext_do_pywin_draw(SpaceText *st) void BPY_spacescript_do_pywin_draw(SpaceScript *sc)
{ {
uiBlock *block; uiBlock *block;
char butblock[20]; char butblock[20];
Script *script = sc->script;
sprintf(butblock, "win %d", curarea->win); sprintf(butblock, "win %d", curarea->win);
block= uiNewBlock(&curarea->uiblocks, butblock, UI_EMBOSSX, block = uiNewBlock(&curarea->uiblocks, butblock, UI_EMBOSSX,
UI_HELV, curarea->win); UI_HELV, curarea->win);
if (st->py_draw) { if (script->py_draw) {
glPushAttrib(GL_ALL_ATTRIB_BITS); glPushAttrib(GL_ALL_ATTRIB_BITS);
exec_callback(st, st->py_draw, Py_BuildValue("()")); exec_callback(sc, script->py_draw, Py_BuildValue("()"));
glPopAttrib(); glPopAttrib();
} else { } else {
glClearColor(0.4375, 0.4375, 0.4375, 0.0); glClearColor(0.4375, 0.4375, 0.4375, 0.0);
@@ -156,93 +170,81 @@ void BPY_spacetext_do_pywin_draw(SpaceText *st)
uiDrawBlock(block); uiDrawBlock(block);
curarea->win_swap= WIN_BACK_OK; curarea->win_swap = WIN_BACK_OK;
} }
static void spacetext_do_pywin_buttons(SpaceText *st, unsigned short event) static void spacescript_do_pywin_buttons(SpaceScript *sc, unsigned short event)
{ {
if (st->py_button) { if (sc->script->py_button) {
exec_callback(st, st->py_button, Py_BuildValue("(i)", event)); exec_callback(sc, sc->script->py_button, Py_BuildValue("(i)", event));
} }
} }
void BPY_spacetext_do_pywin_event(SpaceText *st, unsigned short event, short val) void BPY_spacescript_do_pywin_event(SpaceScript *sc, unsigned short event, short val)
{ {
if (event == QKEY && G.qual & (LR_ALTKEY|LR_CTRLKEY|LR_SHIFTKEY)) { if (event == QKEY && G.qual & (LR_ALTKEY|LR_CTRLKEY)) {
exit_pydraw(st); /* finish script: user pressed ALT+Q or CONTROL+Q */
Script *script = sc->script;
exit_pydraw(sc, 0);
script->flags &=~SCRIPT_GUI; /* we're done with this script */
return; return;
} }
if (val) { if (val) {
if (uiDoBlocks(&curarea->uiblocks, event)!=UI_NOTHING ) event= 0; if (uiDoBlocks(&curarea->uiblocks, event)!=UI_NOTHING ) event = 0;
if (event==UI_BUT_EVENT) if (event == UI_BUT_EVENT)
spacetext_do_pywin_buttons(st, val); spacescript_do_pywin_buttons(sc, val);
} }
if (st->py_event) if (sc->script->py_event)
exec_callback(st, st->py_event, Py_BuildValue("(ii)", event, val)); exec_callback(sc, sc->script->py_event, Py_BuildValue("(ii)", event, val));
} }
int BPY_spacetext_is_pywin(SpaceText *st)
{
return (st->py_draw || st->py_event || st->py_button);
}
/* the define CLEAR_NAMESPACE is currently ignored. It should be
* substituted by a better method, that was also the intention of the
* programmer(s) who put it there. */
static PyObject *Method_Exit (PyObject *self, PyObject *args) static PyObject *Method_Exit (PyObject *self, PyObject *args)
{ {
SpaceText *st= curarea->spacedata.first; SpaceScript *sc;
Script *script;
/* if users call Draw.Exit when we are already out of the SPACE_SCRIPT, we
* simply return, for compatibility */
if (curarea->spacetype == SPACE_SCRIPT) sc = curarea->spacedata.first;
else return EXPP_incr_ret (Py_None);
if (!PyArg_ParseTuple(args, "")) if (!PyArg_ParseTuple(args, ""))
return EXPP_ReturnPyObjError (PyExc_AttributeError, return EXPP_ReturnPyObjError (PyExc_AttributeError,
"expected empty argument list"); "expected empty argument list");
exit_pydraw(st); exit_pydraw(sc, 0);
if (EXPP_releaseGlobalDict) { script = sc->script;
PyObject *d = st->py_globaldict;
/* d is the current window's global namespace dictionary */ /* remove our lock to the current namespace */
if (d) { script->flags &=~SCRIPT_GUI;
PyDict_Clear(d);
Py_DECREF(d); /* release dictionary */
}
}
return EXPP_incr_ret (Py_None); return EXPP_incr_ret (Py_None);
} }
/* Method_Register (Draw.Register) registers callbacks for drawing, events
* and gui button events, so a script can continue executing after the
* interpreter reached its end and returned control to Blender. Everytime
* the SPACE_SCRIPT window with this script is redrawn, the registered
* callbacks are executed and deleted (a new call to Register re-inserts them
* or new ones).*/
static PyObject *Method_Register (PyObject *self, PyObject *args) static PyObject *Method_Register (PyObject *self, PyObject *args)
{ {
PyObject *newdrawc= NULL, *neweventc= NULL, *newbuttonc= NULL; PyObject *newdrawc = NULL, *neweventc = NULL, *newbuttonc = NULL;
SpaceText *st= curarea->spacedata.first; SpaceScript *sc;
Script *script;
int startspace = 0;
if (!PyArg_ParseTuple(args, "O|OO", &newdrawc, if (!PyArg_ParseTuple(args, "O|OO", &newdrawc, &neweventc, &newbuttonc))
&neweventc, &newbuttonc))
return EXPP_ReturnPyObjError (PyExc_TypeError, return EXPP_ReturnPyObjError (PyExc_TypeError,
"expected one or three PyObjects"); "expected one or three PyObjects");
/*@This is a hack again:
* Every python script should actually do a global variable cleanup at
* the end of execution.
* For scripts registering GUI callbacks, this does not work, because
* the global namespace of the interpreter still needs to be accessed
* from the callback.
* Workaround: a text object has a flag which allows the global name
* space to be cleared at the end of the script. This flag should be
* normally set when executed with Alt-P. For a script registering with
* the GUI though, clear the flag and set it when the GUI mode is left
* (Method_Exit).
*/
/* EXPP_debug(("--- disable clear namespace")); */
st->flags &= ~ST_CLEAR_NAMESPACE;
if (!PyCallable_Check(newdrawc)) newdrawc = NULL; if (!PyCallable_Check(newdrawc)) newdrawc = NULL;
if (!PyCallable_Check(neweventc)) neweventc = NULL; if (!PyCallable_Check(neweventc)) neweventc = NULL;
if (!PyCallable_Check(newbuttonc)) newbuttonc = NULL; if (!PyCallable_Check(newbuttonc)) newbuttonc = NULL;
@@ -250,17 +252,57 @@ static PyObject *Method_Register (PyObject *self, PyObject *args)
if (!(newdrawc || neweventc || newbuttonc)) if (!(newdrawc || neweventc || newbuttonc))
return EXPP_incr_ret(Py_None); return EXPP_incr_ret(Py_None);
exit_pydraw(st); startspace = curarea->spacetype;
/* first make sure the current area is of type SPACE_SCRIPT */
if (startspace != SPACE_SCRIPT) newspace (curarea, SPACE_SCRIPT);
sc = curarea->spacedata.first;
/* this is a little confusing: we need to know which script is being executed
* now, so we can preserve its namespace from being deleted.
* There are two possibilities:
* a) One new script was created and the interpreter still hasn't returned
* from executing it.
* b) Any number of scripts were executed but left registered callbacks and
* so were not deleted yet. */
/* To find out if we're dealing with a) or b), we start with the last
* created one: */
script = G.main->script.last;
if (!script) {
return EXPP_ReturnPyObjError (PyExc_RuntimeError,
"Draw.Register: couldn't get pointer to script struct");
}
/* if the flag SCRIPT_RUNNING is set, this script is case a): */
if (!(script->flags & SCRIPT_RUNNING)) {
script = sc->script;
}
/* otherwise it's case b) and the script we want is here: */
else sc->script = script;
/* Now we have the right script and can set a lock so its namespace can't be
* deleted for as long as we need it */
script->flags |= SCRIPT_GUI;
/* save the last space so we can go back to it upon finishing */
if (!script->lastspace) script->lastspace = startspace;
/* clean the old callbacks */
exit_pydraw(sc, 0);
/* prepare the new ones and insert them */
Py_XINCREF(newdrawc); Py_XINCREF(newdrawc);
Py_XINCREF(neweventc); Py_XINCREF(neweventc);
Py_XINCREF(newbuttonc); Py_XINCREF(newbuttonc);
st->py_draw= newdrawc; script->py_draw = newdrawc;
st->py_event= neweventc; script->py_event = neweventc;
st->py_button= newbuttonc; script->py_button = newbuttonc;
scrarea_queue_redraw(st->area); scrarea_queue_redraw(sc->area);
return EXPP_incr_ret (Py_None); return EXPP_incr_ret (Py_None);
} }
@@ -273,6 +315,7 @@ static PyObject *Method_Redraw (PyObject *self, PyObject *args)
return EXPP_ReturnPyObjError (PyExc_TypeError, return EXPP_ReturnPyObjError (PyExc_TypeError,
"expected int argument (or nothing)"); "expected int argument (or nothing)");
/* XXX shouldn't we redraw all spacescript wins with this script on ?*/
if (after) addafterqueue(curarea->win, REDRAW, 1); if (after) addafterqueue(curarea->win, REDRAW, 1);
else scrarea_queue_winredraw(curarea); else scrarea_queue_winredraw(curarea);
@@ -427,8 +470,7 @@ static void py_slider_update(void *butv, void *data2_unused)
g_window_redrawn = 0; g_window_redrawn = 0;
curarea->win_swap= WIN_BACK_OK; curarea->win_swap= WIN_BACK_OK;
/* removed global uiFrontBuf (contact ton when this goes wrong here) */ /* removed global uiFrontBuf (contact ton when this goes wrong here) */
spacetext_do_pywin_buttons(curarea->spacedata.first, uiButGetRetVal(but)); spacescript_do_pywin_buttons(curarea->spacedata.first, uiButGetRetVal(but));
if (!g_window_redrawn) /*@ if Redraw already called */ if (!g_window_redrawn) /*@ if Redraw already called */
M_Window_Redraw(0, Py_BuildValue("(i)", SPACE_VIEW3D)); M_Window_Redraw(0, Py_BuildValue("(i)", SPACE_VIEW3D));

View File

@@ -46,10 +46,12 @@
#include "BMF_Api.h" #include "BMF_Api.h"
#include "DNA_screen_types.h" #include "DNA_screen_types.h"
#include "DNA_script_types.h"
#include "DNA_space_types.h" #include "DNA_space_types.h"
#include "DNA_text_types.h" #include "DNA_text_types.h"
#include "BKE_global.h" #include "BKE_global.h"
#include "BKE_library.h"
#include "BIF_gl.h" #include "BIF_gl.h"
#include "BIF_screen.h" #include "BIF_screen.h"
@@ -77,7 +79,6 @@ int g_window_redrawn;
static char Draw_doc[] = static char Draw_doc[] =
"The Blender.Draw submodule"; "The Blender.Draw submodule";
static void exit_pydraw (SpaceText *st);
static uiBlock *Get_uiBlock (void); static uiBlock *Get_uiBlock (void);
void initDraw (void); void initDraw (void);
@@ -119,13 +120,14 @@ static Button *newbutton (void);
/* GUI interface routines */ /* GUI interface routines */
static void exit_pydraw(SpaceText *st); static void exit_pydraw(SpaceScript *sc, short error);
static void exec_callback(SpaceText *st, PyObject *callback, PyObject *args); static void exec_callback(SpaceScript *sc, PyObject *callback, PyObject *args);
void BPY_spacetext_do_pywin_draw(SpaceText *st);
static void spacetext_do_pywin_buttons(SpaceText *st, unsigned short event); /* these are declared in ../BPY_extern.h */
void BPY_spacetext_do_pywin_event(SpaceText *st, void BPY_spacescript_do_pywin_draw(SpaceScript *sc);
unsigned short event, short val); static void spacescript_do_pywin_buttons(SpaceScript *sc, unsigned short event);
int BPY_spacetext_is_pywin(SpaceText *sc); void BPY_spacescript_do_pywin_event(SpaceScript *sc, unsigned short event, short val);
void BPY_free_compiled_text(Text *text);
static char Method_Exit_doc[] = static char Method_Exit_doc[] =
"() - Exit the windowing interface"; "() - Exit the windowing interface";

View File

@@ -33,7 +33,10 @@
#include <Python.h> #include <Python.h>
#include <BIF_space.h>
#include <BIF_screen.h>
#include <BKE_global.h> #include <BKE_global.h>
#include <BKE_library.h>
#include <BKE_main.h> #include <BKE_main.h>
#include <DNA_ID.h> #include <DNA_ID.h>
#include <DNA_camera_types.h> #include <DNA_camera_types.h>
@@ -41,7 +44,10 @@
#include <DNA_material_types.h> #include <DNA_material_types.h>
#include <DNA_object_types.h> #include <DNA_object_types.h>
#include <DNA_scene_types.h> #include <DNA_scene_types.h>
#include <DNA_screen_types.h>
#include <DNA_script_types.h>
#include <DNA_scriptlink_types.h> #include <DNA_scriptlink_types.h>
#include <DNA_space_types.h>
#include <DNA_world_types.h> #include <DNA_world_types.h>
#include "EXPP_interface.h" #include "EXPP_interface.h"
@@ -177,3 +183,42 @@ TODO: Check this */
return (scriptlink); return (scriptlink);
} }
void BPY_clear_script (Script *script)
{
if (!script) return;
Py_XDECREF((PyObject *)script->py_globaldict);
Py_XDECREF((PyObject *)script->py_button);
Py_XDECREF((PyObject *)script->py_event);
Py_XDECREF((PyObject *)script->py_draw);
}
void EXPP_move_to_spacescript (Script *script)
{ /* used by BPY_txt_do_python when a text is already being executed */
SpaceScript *sc;
newspace(curarea, SPACE_SCRIPT);
sc = curarea->spacedata.first;
sc->script = script;
return;
}
/*****************************************************************************/
/* Description: This function frees a finished (flags == 0) script. */
/*****************************************************************************/
void BPY_free_finished_script(Script *script)
{
PyObject *d = script->py_globaldict;
if (d) {
PyDict_Clear (d);
Py_DECREF (d); /* Release dictionary. */
script->py_globaldict = NULL;
}
if (script->lastspace != SPACE_SCRIPT)
newspace (curarea, script->lastspace);
free_libblock(&G.main->script, script);
return;
}

View File

@@ -31,7 +31,10 @@
#include <DNA_ID.h> #include <DNA_ID.h>
struct Script;
void initBlenderApi2_2x (void); void initBlenderApi2_2x (void);
void clearScriptLinks (void); void clearScriptLinks (void);
ScriptLink * setScriptLinks(ID *id, short event); ScriptLink * setScriptLinks(ID *id, short event);
void discardFromBDict (char *key); void discardFromBDict (char *key);
void EXPP_move_to_spacescript (struct Script *script);

View File

@@ -62,7 +62,7 @@ static PyObject *M_sys_dirname (PyObject *self, PyObject *args)
{ {
PyObject *c; PyObject *c;
char *name, dirname[256]; char *name, *p, dirname[256];
char sep; char sep;
int n; int n;
@@ -74,7 +74,11 @@ static PyObject *M_sys_dirname (PyObject *self, PyObject *args)
sep = PyString_AsString(c)[0]; sep = PyString_AsString(c)[0];
Py_DECREF(c); Py_DECREF(c);
n = strrchr(name, sep) - name; p = strrchr(name, sep);
if (p) {
n = p - name;
if (n > 255) { if (n > 255) {
PyErr_SetString(PyExc_RuntimeError, "path too long"); PyErr_SetString(PyExc_RuntimeError, "path too long");
return 0; return 0;
@@ -82,6 +86,8 @@ static PyObject *M_sys_dirname (PyObject *self, PyObject *args)
strncpy(dirname, name, n); strncpy(dirname, name, n);
dirname[n] = 0; dirname[n] = 0;
return Py_BuildValue("s", dirname); return Py_BuildValue("s", dirname);
}
return Py_BuildValue("s", "."); /* XXX need to fix this? (is crossplatform?)*/
} }

View File

@@ -31,6 +31,7 @@
#include "Window.h" #include "Window.h"
#include "vector.h" #include "vector.h"
#include <BKE_library.h>
/* Many parts of the code here come from the older bpython implementation /* Many parts of the code here come from the older bpython implementation
* (file opy_window.c) */ * (file opy_window.c) */
@@ -70,7 +71,6 @@ PyObject *M_Window_Redraw(PyObject *self, PyObject *args)
scrarea_queue_redraw(sa); scrarea_queue_redraw(sa);
} }
} else { } else {
scrarea_do_windraw(sa); scrarea_do_windraw(sa);
if (sa->headwin) scrarea_do_headdraw(sa); if (sa->headwin) scrarea_do_headdraw(sa);
@@ -123,27 +123,49 @@ static PyObject *M_Window_QRedrawAll(PyObject *self, PyObject *args)
static void getSelectedFile(char *name) static void getSelectedFile(char *name)
{ {
if (EXPP_FS_PyCallback) { if (!EXPP_FS_PyCallback) return;
SpaceText *st= curarea->spacedata.first;
PyObject_CallFunction((PyObject *)EXPP_FS_PyCallback, "s", name); PyObject_CallFunction((PyObject *)EXPP_FS_PyCallback, "s", name);
EXPP_FS_PyCallback = NULL; EXPP_FS_PyCallback = NULL;
st->flags &= ST_CLEAR_NAMESPACE; /* global dict can be cleared */
} return;
} }
static PyObject *M_Window_FileSelector(PyObject *self, PyObject *args) static PyObject *M_Window_FileSelector(PyObject *self, PyObject *args)
{ {
char *title = "SELECT FILE"; char *title = "SELECT FILE";
SpaceText *st = curarea->spacedata.first; SpaceScript *sc;
Script *script = G.main->script.last;
int startspace = 0;
if (!PyArg_ParseTuple(args, "O!|s", if (!PyArg_ParseTuple(args, "O!|s", &PyFunction_Type, &EXPP_FS_PyCallback,
&PyFunction_Type, &EXPP_FS_PyCallback, &title)) &title))
return (EXPP_ReturnPyObjError (PyExc_AttributeError, return (EXPP_ReturnPyObjError (PyExc_AttributeError,
"\nexpected a callback function (and optionally a string) as argument(s)")); "\nexpected a callback function (and optionally a string) as argument(s)"));
st->flags &= ~ST_CLEAR_NAMESPACE; /* so global dict won't be cleared */ /* trick: we move to a spacescript because then the fileselector will properly
* unset our SCRIPT_FILESEL flag when the user chooses a file or cancels the
* selection. This is necessary because when a user cancels, the
* getSelectedFile function above doesn't get called and so couldn't unset the
* flag. */
startspace = curarea->spacetype;
if (startspace != SPACE_SCRIPT) newspace (curarea, SPACE_SCRIPT);
sc = curarea->spacedata.first;
/* did we get the right script? */
if (!(script->flags & SCRIPT_RUNNING)) {
/* if not running, then we were already on a SpaceScript space, executing
* a registered callback -- aka: this script has a gui */
script = sc->script; /* this is the right script */
}
else { /* still running, use the trick */
script->lastspace = startspace;
sc->script = script;
}
script->flags |= SCRIPT_FILESEL;
activate_fileselect(FILE_BLENDER, title, G.sce, getSelectedFile); activate_fileselect(FILE_BLENDER, title, G.sce, getSelectedFile);
@@ -154,14 +176,38 @@ static PyObject *M_Window_FileSelector(PyObject *self, PyObject *args)
static PyObject *M_Window_ImageSelector(PyObject *self, PyObject *args) static PyObject *M_Window_ImageSelector(PyObject *self, PyObject *args)
{ {
char *title = "SELECT IMAGE"; char *title = "SELECT IMAGE";
SpaceText *st = curarea->spacedata.first; SpaceScript *sc;
Script *script = G.main->script.last;
int startspace = 0;
if (!PyArg_ParseTuple(args, "O!|s", if (!PyArg_ParseTuple(args, "O!|s", &PyFunction_Type, &EXPP_FS_PyCallback,
&PyFunction_Type, &EXPP_FS_PyCallback, &title)) &title))
return (EXPP_ReturnPyObjError (PyExc_AttributeError, return (EXPP_ReturnPyObjError (PyExc_AttributeError,
"\nexpected a callback function (and optionally a string) as argument(s)")); "\nexpected a callback function (and optionally a string) as argument(s)"));
st->flags &= ~ST_CLEAR_NAMESPACE; /* hold global dictionary */ /* trick: we move to a spacescript because then the fileselector will properly
* unset our SCRIPT_FILESEL flag when the user chooses a file or cancels the
* selection. This is necessary because when a user cancels, the
* getSelectedFile function above doesn't get called and so couldn't unset the
* flag. */
startspace = curarea->spacetype;
if (startspace != SPACE_SCRIPT) newspace (curarea, SPACE_SCRIPT);
sc = curarea->spacedata.first;
/* did we get the right script? */
if (!(script->flags & SCRIPT_RUNNING)) {
/* if not running, then we're on a SpaceScript space, executing a
* registered callback -- aka: this script has a gui */
SpaceScript *sc = curarea->spacedata.first;
script = sc->script; /* this is the right script */
}
else { /* still running, use the trick */
script->lastspace = startspace;
sc->script = script;
}
script->flags |= SCRIPT_FILESEL; /* same flag as filesel */
activate_imageselect(FILE_BLENDER, title, G.sce, getSelectedFile); activate_imageselect(FILE_BLENDER, title, G.sce, getSelectedFile);
@@ -299,12 +345,12 @@ PyObject *Window_Init (void)
submodule = Py_InitModule3("Blender.Window", M_Window_methods, M_Window_doc); submodule = Py_InitModule3("Blender.Window", M_Window_methods, M_Window_doc);
Types = Py_BuildValue("{s:h,s:h,s:h,s:h,s:h,s:h,s:h,s:h,s:h,s:h,s:h,s:h,s:h}", Types = Py_BuildValue("{s:h,s:h,s:h,s:h,s:h,s:h,s:h,s:h,s:h,s:h,s:h,s:h,s:h,s:h}",
"VIEW3D", SPACE_VIEW3D, "IPO", SPACE_IPO, "OOPS", SPACE_OOPS, "VIEW3D", SPACE_VIEW3D, "IPO", SPACE_IPO, "OOPS", SPACE_OOPS,
"BUTS", SPACE_BUTS, "FILE", SPACE_FILE, "IMAGE", SPACE_IMAGE, "BUTS", SPACE_BUTS, "FILE", SPACE_FILE, "IMAGE", SPACE_IMAGE,
"INFO", SPACE_INFO, "SEQ", SPACE_SEQ, "IMASEL", SPACE_IMASEL, "INFO", SPACE_INFO, "SEQ", SPACE_SEQ, "IMASEL", SPACE_IMASEL,
"SOUND", SPACE_SOUND, "ACTION", SPACE_ACTION, "SOUND", SPACE_SOUND, "ACTION", SPACE_ACTION,
"TEXT", SPACE_TEXT, "NLA", SPACE_NLA); "TEXT", SPACE_TEXT, "NLA", SPACE_NLA, "SCRIPT", SPACE_SCRIPT);
if (Types) PyModule_AddObject(submodule, "Types", Types); if (Types) PyModule_AddObject(submodule, "Types", Types);

View File

@@ -30,6 +30,7 @@
*/ */
#include "gen_utils.h" #include "gen_utils.h"
#include "constant.h"
/*****************************************************************************/ /*****************************************************************************/
/* Description: This function clamps an int to the given interval */ /* Description: This function clamps an int to the given interval */
@@ -184,13 +185,9 @@ PyObject *EXPP_tuple_repr(PyObject *self, int size)
Py_DECREF(item); Py_DECREF(item);
} }
return repr; return repr;
} }
/****************************************************************************/ /****************************************************************************/
/* Description: searches through a map for a pair with a given name. If the */ /* Description: searches through a map for a pair with a given name. If the */
/* pair is present, its ival is stored in *ival and nonzero is */ /* pair is present, its ival is stored in *ival and nonzero is */
@@ -238,8 +235,7 @@ int EXPP_map_getShortVal (const EXPP_map_pair *map,
/* and nonzero is returned. If the pair is absent, zero is */ /* and nonzero is returned. If the pair is absent, zero is */
/* returned. */ /* returned. */
/****************************************************************************/ /****************************************************************************/
int EXPP_map_getStrVal (const EXPP_map_pair *map, int EXPP_map_getStrVal (const EXPP_map_pair *map, int ival, const char **sval)
int ival, const char **sval)
{ {
while (map->sval) while (map->sval)
{ {
@@ -252,6 +248,3 @@ int EXPP_map_getStrVal (const EXPP_map_pair *map,
} }
return 0; return 0;
} }

View File

@@ -33,6 +33,8 @@
#define EXPP_gen_utils_h #define EXPP_gen_utils_h
#include <Python.h> #include <Python.h>
#include "compile.h"
#include "eval.h" /* for PyEval_GetLocals */
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
@@ -41,6 +43,7 @@
#include <DNA_ID.h> #include <DNA_ID.h>
#include <DNA_object_types.h> #include <DNA_object_types.h>
#include <DNA_material_types.h> #include <DNA_material_types.h>
#include <DNA_script_types.h>
#include <DNA_scriptlink_types.h> #include <DNA_scriptlink_types.h>
#include <DNA_listBase.h> #include <DNA_listBase.h>
@@ -63,7 +66,6 @@ int EXPP_ReturnIntError (PyObject *type, char *error_msg);
int EXPP_check_sequence_consistency (PyObject *seq, PyTypeObject *against); int EXPP_check_sequence_consistency (PyObject *seq, PyTypeObject *against);
PyObject *EXPP_tuple_repr(PyObject *self, int size); PyObject *EXPP_tuple_repr(PyObject *self, int size);
/* mapping utilities - see Texture.c for an example of how to use these */ /* mapping utilities - see Texture.c for an example of how to use these */
typedef struct { typedef struct {
const char *sval; const char *sval;

View File

@@ -0,0 +1,155 @@
/**
* $Id$
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version. The Blender
* Foundation also sells licenses for use in proprietary software under
* the Blender License. See http://www.blender.org/BL/ for information
* about this.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
* All rights reserved.
*
* The Original Code is: drawtext.c.
*
* Contributor(s): Willian Padovani Germano.
*
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#include <stdlib.h>
#include <math.h>
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifndef _WIN32
#include <unistd.h>
#else
#include <io.h>
#include "BLI_winstuff.h"
#endif
#include "MEM_guardedalloc.h"
#include "PIL_time.h"
#include "BMF_Api.h"
#include "BLI_blenlib.h"
#include "DNA_script_types.h"
#include "DNA_space_types.h"
#include "DNA_screen_types.h"
#include "DNA_userdef_types.h"
#include "BKE_utildefines.h"
#include "BKE_text.h"
#include "BKE_global.h"
#include "BKE_main.h"
#include "BPY_extern.h"
#include "BIF_gl.h"
#include "BIF_keyval.h"
#include "BIF_interface.h"
#include "BIF_drawscript.h"
#include "BIF_editfont.h"
#include "BIF_spacetypes.h"
#include "BIF_usiblender.h"
#include "BIF_screen.h"
#include "BIF_toolbox.h"
#include "BIF_space.h"
#include "BIF_mywindow.h"
#include "BSE_filesel.h"
#include "mydevice.h"
#include "blendef.h"
#include "interface.h"
void drawscriptspace(ScrArea *sa, void *spacedata);
void winqreadscriptspace(struct ScrArea *sa, void *spacedata, struct BWinEvent *evt);
void drawscriptspace(ScrArea *sa, void *spacedata)
{
SpaceScript *sc = curarea->spacedata.first;
glClearColor(0.6, 0.6, 0.6, 1.0);
glClear(GL_COLOR_BUFFER_BIT);
myortho2(-0.5, curarea->winrct.xmax-curarea->winrct.xmin-0.5, -0.5, curarea->winrct.ymax-curarea->winrct.ymin-0.5);
if(!sc->script) {
if (G.main->script.first)
sc->script = G.main->script.first;
else
return;
}
BPY_spacescript_do_pywin_draw(sc);
}
void winqreadscriptspace(struct ScrArea *sa, void *spacedata, struct BWinEvent *evt)
{
unsigned short event = evt->event;
short val = evt->val;
SpaceScript *sc = curarea->spacedata.first;
Script *script = sc->script;
if (script) {
BPY_spacescript_do_pywin_event(sc, event, val);
if (!script->flags) /* finished with this script, let's free it */
BPY_free_finished_script(script);
}
else {
if (event == QKEY)
if (val && okee("QUIT BLENDER")) exit_usiblender();
}
return;
}
void free_scriptspace (SpaceScript *sc)
{
if (!sc) return;
sc->script = NULL;
}
void unlink_script(Script *script)
{ /* copied from unlink_text in drawtext.c */
bScreen *scr;
ScrArea *area;
SpaceLink *sl;
for (scr= G.main->screen.first; scr; scr= scr->id.next) {
for (area= scr->areabase.first; area; area= area->next) {
for (sl= area->spacedata.first; sl; sl= sl->next) {
if (sl->spacetype==SPACE_SCRIPT) {
SpaceScript *sc= (SpaceScript*) sl;
if (sc->script==script) {
sc->script= NULL;
if (sc==area->spacedata.first) {
scrarea_queue_redraw(area);
}
}
}
}
}
}
}

View File

@@ -543,11 +543,6 @@ void drawtextspace(ScrArea *sa, void *spacedata)
float col[3]; float col[3];
int linecount = 0; int linecount = 0;
if (BPY_spacetext_is_pywin(st)) {
BPY_spacetext_do_pywin_draw(st);
return;
}
BIF_GetThemeColor3fv(TH_BACK, col); BIF_GetThemeColor3fv(TH_BACK, col);
glClearColor(col[0], col[1], col[2], 0.0); glClearColor(col[0], col[1], col[2], 0.0);
glClear(GL_COLOR_BUFFER_BIT); glClear(GL_COLOR_BUFFER_BIT);
@@ -984,11 +979,6 @@ void winqreadtextspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
Text *text= st->text; Text *text= st->text;
int do_draw=0, p; int do_draw=0, p;
if (BPY_spacetext_is_pywin(st)) {
BPY_spacetext_do_pywin_event(st, event, val);
return;
}
/* smartass code to prevent the events below from not working! */ /* smartass code to prevent the events below from not working! */
if (!isprint(ascii) || (G.qual & ~LR_SHIFTKEY)) ascii= 0; if (!isprint(ascii) || (G.qual & ~LR_SHIFTKEY)) ascii= 0;

View File

@@ -352,6 +352,7 @@ void scrarea_do_headdraw(ScrArea *area)
case SPACE_IMASEL: imasel_buttons(); break; case SPACE_IMASEL: imasel_buttons(); break;
case SPACE_OOPS: oops_buttons(); break; case SPACE_OOPS: oops_buttons(); break;
case SPACE_TEXT: text_buttons(); break; case SPACE_TEXT: text_buttons(); break;
case SPACE_SCRIPT:script_buttons(); break;
case SPACE_SOUND: sound_buttons(); break; case SPACE_SOUND: sound_buttons(); break;
case SPACE_ACTION: action_buttons(); break; case SPACE_ACTION: action_buttons(); break;
case SPACE_NLA: nla_buttons(); break; case SPACE_NLA: nla_buttons(); break;
@@ -1055,7 +1056,7 @@ void screenmain(void)
towin= 0; towin= 0;
} }
else if (event==QKEY) { else if (event==QKEY) {
if((G.obedit && G.obedit->type==OB_FONT && g_activearea->spacetype==SPACE_VIEW3D)||g_activearea->spacetype==SPACE_TEXT); if((G.obedit && G.obedit->type==OB_FONT && g_activearea->spacetype==SPACE_VIEW3D)||g_activearea->spacetype==SPACE_TEXT||g_activearea->spacetype==SPACE_SCRIPT);
else { else {
if(val && okee("QUIT BLENDER")) exit_usiblender(); if(val && okee("QUIT BLENDER")) exit_usiblender();
towin= 0; towin= 0;
@@ -1084,7 +1085,7 @@ void screenmain(void)
} }
} }
else if (event==SPACEKEY) { else if (event==SPACEKEY) {
if((G.obedit && G.obedit->type==OB_FONT && g_activearea->spacetype==SPACE_VIEW3D)||g_activearea->spacetype==SPACE_TEXT); if((G.obedit && G.obedit->type==OB_FONT && g_activearea->spacetype==SPACE_VIEW3D)||g_activearea->spacetype==SPACE_TEXT||g_activearea->spacetype==SPACE_SCRIPT);
else { else {
if(val) toolbox_n(); if(val) toolbox_n();
towin= 0; towin= 0;

View File

@@ -66,6 +66,7 @@ char *event_to_string(short evt) {
smap(IMALEFTMOUSE); smap(IMALEFTMOUSE);
smap(AFTERPIBREAD); smap(AFTERPIBREAD);
smap(REDRAWTEXT); smap(REDRAWTEXT);
smap(REDRAWSCRIPT);
smap(REDRAWACTION); smap(REDRAWACTION);
smap(LEFTMOUSE); smap(LEFTMOUSE);
smap(MIDDLEMOUSE); smap(MIDDLEMOUSE);

View File

@@ -71,6 +71,7 @@
#include "DNA_space_types.h" #include "DNA_space_types.h"
#include "DNA_scene_types.h" #include "DNA_scene_types.h"
#include "DNA_screen_types.h" #include "DNA_screen_types.h"
#include "DNA_script_types.h"
#include "DNA_view3d_types.h" #include "DNA_view3d_types.h"
#include "DNA_userdef_types.h" #include "DNA_userdef_types.h"
@@ -1410,6 +1411,12 @@ void filesel_prevspace()
BLI_addtail(&curarea->spacedata, sfile); BLI_addtail(&curarea->spacedata, sfile);
sfile= curarea->spacedata.first; sfile= curarea->spacedata.first;
if (sfile->spacetype == SPACE_SCRIPT) {
SpaceScript *sc = (SpaceScript *)sfile;
if (sc->script) sc->script->flags &=~SCRIPT_FILESEL;
}
newspace(curarea, sfile->spacetype); newspace(curarea, sfile->spacetype);
} }
else newspace(curarea, SPACE_INFO); else newspace(curarea, SPACE_INFO);

View File

@@ -0,0 +1,162 @@
/**
* header_script.c nov-2003
*
* Functions to draw the "Script Window" window header
* and handle user events sent to it.
*
* $Id$
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version. The Blender
* Foundation also sells licenses for use in proprietary software under
* the Blender License. See http://www.blender.org/BL/ for information
* about this.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
* All rights reserved.
*
* Contributor(s): Willian P. Germano.
*
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef WIN32
#include "BLI_winstuff.h"
#endif
#include "BMF_Api.h"
#include "BIF_language.h"
#ifdef INTERNATIONAL
#include "FTF_Api.h"
#endif
#include "BSE_headerbuttons.h"
#include "DNA_ID.h"
#include "DNA_screen_types.h"
#include "DNA_space_types.h"
#include "DNA_script_types.h"
#include "BIF_interface.h"
#include "BIF_resources.h"
#include "BIF_screen.h"
#include "BIF_space.h"
#include "BIF_toolbox.h"
#include "BKE_global.h"
#include "BKE_library.h"
#include "BKE_main.h"
#include "BKE_sca.h"
#include "BPY_extern.h"
#include "BSE_filesel.h"
#include "blendef.h"
#include "mydevice.h"
/* ********************** SCRIPT ****************************** */
void do_script_buttons(unsigned short event)
{
SpaceScript *sc= curarea->spacedata.first;
ID *id, *idtest;
int nr= 1;
Script *script;
if (!sc) return;
if (sc->spacetype != SPACE_SCRIPT) return;
switch (event) {
case B_SCRIPTBROWSE:
if (sc->menunr==-2) {
activate_databrowse((ID *)sc->script, ID_SCR, 0, B_SCRIPTBROWSE,
&sc->menunr, do_script_buttons);
break;
}
if(sc->menunr < 0) break;
script = sc->script;
nr = 1;
id = (ID *)script;
idtest= G.main->script.first;
while(idtest) {
if(nr==sc->menunr) {
break;
}
nr++;
idtest= idtest->next;
}
if(idtest!=id) {
sc->script= (Script *)idtest;
allqueue(REDRAWSCRIPT, 0);
allqueue(REDRAWHEADERS, 0);
}
break;
}
return;
}
void script_buttons(void)
{
uiBlock *block;
SpaceScript *sc= curarea->spacedata.first;
short xco = 8;
char naam[256];
if (!sc || sc->spacetype != SPACE_SCRIPT) return;
sprintf(naam, "header %d", curarea->headwin);
block= uiNewBlock(&curarea->uiblocks, naam, UI_EMBOSSX, UI_HELV, curarea->headwin);
if(area_is_active_area(curarea)) uiBlockSetCol(block, TH_HEADER);
else uiBlockSetCol(block, TH_HEADERDESEL);
curarea->butspacetype= SPACE_SCRIPT;
uiDefIconTextButC(block, ICONTEXTROW,B_NEWSPACE, ICON_VIEW3D,
windowtype_pup(), xco,0,XIC+10,YIC, &(curarea->butspacetype), 1.0,
SPACEICONMAX, 0, 0, "Displays Current Window Type. Click for menu"
" of available types.");
/* FULL WINDOW */
xco= 25;
if(curarea->full)
uiDefIconBut(block, BUT,B_FULL, ICON_SPLITSCREEN, xco+=XIC,0,XIC,YIC, 0, 0,
0, 0, 0, "Returns to multiple views window (CTRL+Up arrow)");
else
uiDefIconBut(block, BUT,B_FULL, ICON_FULLSCREEN, xco+=XIC,0,XIC,YIC, 0, 0,
0, 0, 0, "Makes current window full screen (CTRL+Down arrow)");
/* STD SCRIPT BUTTONS */
xco+= 2*XIC;
xco= std_libbuttons(block, xco, 0, 0, NULL, B_SCRIPTBROWSE, (ID*)sc->script, 0, &(sc->menunr), 0, 0, 0, 0, 0);
/* always as last */
curarea->headbutlen= xco+2*XIC;
uiDrawBlock(block);
}
/* ********************** SCRIPT ****************************** */

View File

@@ -508,7 +508,6 @@ void text_buttons(void)
/* STD TEXT BUTTONS */ /* STD TEXT BUTTONS */
if (!BPY_spacetext_is_pywin(st)) {
xco+= 2*XIC; xco+= 2*XIC;
xco= std_libbuttons(block, xco, 0, 0, NULL, B_TEXTBROWSE, (ID*)st->text, 0, &(st->menunr), 0, 0, B_TEXTDELETE, 0, 0); xco= std_libbuttons(block, xco, 0, 0, NULL, B_TEXTBROWSE, (ID*)st->text, 0, &(st->menunr), 0, 0, B_TEXTDELETE, 0, 0);
@@ -528,7 +527,6 @@ void text_buttons(void)
if(st->font_id>1) st->font_id= 0; if(st->font_id>1) st->font_id= 0;
uiDefButI(block, MENU, B_TEXTFONT, "Screen 12 %x0|Screen 15%x1", xco,0,100,YIC, &st->font_id, 0, 0, 0, 0, "Displays available fonts"); uiDefButI(block, MENU, B_TEXTFONT, "Screen 12 %x0|Screen 15%x1", xco,0,100,YIC, &st->font_id, 0, 0, 0, 0, "Displays available fonts");
xco+=100; xco+=100;
}
/* always as last */ /* always as last */
curarea->headbutlen= xco+2*XIC; curarea->headbutlen= xco+2*XIC;

View File

@@ -78,6 +78,7 @@
#include "DNA_packedFile_types.h" #include "DNA_packedFile_types.h"
#include "DNA_scene_types.h" #include "DNA_scene_types.h"
#include "DNA_screen_types.h" #include "DNA_screen_types.h"
#include "DNA_script_types.h"
#include "DNA_sequence_types.h" #include "DNA_sequence_types.h"
#include "DNA_sound_types.h" #include "DNA_sound_types.h"
#include "DNA_space_types.h" #include "DNA_space_types.h"
@@ -216,8 +217,12 @@ char *windowtype_pup(void)
strcat(string, "|%l"); //254 strcat(string, "|%l"); //254
strcat(string, "|Image Browser %x10"); strcat(string, "|Image Browser %x10"); //273
strcat(string, "|File Browser %x5"); strcat(string, "|File Browser %x5"); //290
strcat(string, "|%l"); //293
strcat(string, "|Scripts Window %x14"); //313
return (string); return (string);
} }
@@ -302,6 +307,9 @@ int std_libbuttons(uiBlock *block, short xco, short yco,
else if(curarea->spacetype==SPACE_TEXT) { else if(curarea->spacetype==SPACE_TEXT) {
id= G.main->text.first; id= G.main->text.first;
} }
else if(curarea->spacetype==SPACE_SCRIPT) {
id= G.main->script.first;
}
} }
if(id) { if(id) {
char *extrastr= NULL; char *extrastr= NULL;
@@ -356,6 +364,9 @@ int std_libbuttons(uiBlock *block, short xco, short yco,
else if(curarea->spacetype==SPACE_TEXT) { else if(curarea->spacetype==SPACE_TEXT) {
uiDefButS(block, MENU, browse, "OPEN NEW %x 32766 | ADD NEW %x 32767", xco,yco,XIC,YIC, menupoin, 0, 0, 0, 0, "Browses Datablock"); uiDefButS(block, MENU, browse, "OPEN NEW %x 32766 | ADD NEW %x 32767", xco,yco,XIC,YIC, menupoin, 0, 0, 0, 0, "Browses Datablock");
} }
else if(curarea->spacetype==SPACE_SCRIPT) {
uiDefButS(block, MENU, browse, "No running scripts", xco, yco, XIC, YIC, menupoin, 0, 0, 0, 0, "Browses Datablock");
}
else if(curarea->spacetype==SPACE_SOUND) { else if(curarea->spacetype==SPACE_SOUND) {
uiDefButS(block, MENU, browse, "OPEN NEW %x 32766",xco,yco,XIC,YIC, menupoin, 0, 0, 0, 0, "Browses Datablock"); uiDefButS(block, MENU, browse, "OPEN NEW %x 32766",xco,yco,XIC,YIC, menupoin, 0, 0, 0, 0, "Browses Datablock");
} }
@@ -2000,7 +2011,8 @@ void do_headerbuttons(short event)
else if(event<400) do_image_buttons(event); else if(event<400) do_image_buttons(event);
else if(event<450) do_buts_buttons(event); else if(event<450) do_buts_buttons(event);
else if(event<500) do_imasel_buttons(event); else if(event<500) do_imasel_buttons(event);
else if(event<550) do_text_buttons(event); else if(event<525) do_text_buttons(event);
else if(event<550) do_script_buttons(event);
else if(event<600) do_file_buttons(event); else if(event<600) do_file_buttons(event);
else if(event<650) do_seq_buttons(event); else if(event<650) do_seq_buttons(event);
else if(event<700) do_sound_buttons(event); else if(event<700) do_sound_buttons(event);

View File

@@ -3070,6 +3070,19 @@ void init_textspace(ScrArea *sa)
st->top= 0; st->top= 0;
} }
void init_scriptspace(ScrArea *sa)
{
SpaceScript *sc;
sc = MEM_callocN(sizeof(SpaceScript), "initscriptspace");
BLI_addhead(&sa->spacedata, sc);
sc->spacetype = SPACE_SCRIPT;
sc->script = NULL;
sc->flags = 0;
}
void init_imaselspace(ScrArea *sa) void init_imaselspace(ScrArea *sa)
{ {
SpaceImaSel *simasel; SpaceImaSel *simasel;
@@ -3477,6 +3490,11 @@ void init_oopsspace(ScrArea *sa)
extern void drawtextspace(ScrArea *sa, void *spacedata); extern void drawtextspace(ScrArea *sa, void *spacedata);
extern void winqreadtextspace(struct ScrArea *sa, void *spacedata, struct BWinEvent *evt); extern void winqreadtextspace(struct ScrArea *sa, void *spacedata, struct BWinEvent *evt);
/* ******************** SPACE: Script ********************** */
extern void drawscriptspace(ScrArea *sa, void *spacedata);
extern void winqreadscriptspace(struct ScrArea *sa, void *spacedata, struct BWinEvent *evt);
/* ******************** SPACE: ALGEMEEN ********************** */ /* ******************** SPACE: ALGEMEEN ********************** */
void newspace(ScrArea *sa, int type) void newspace(ScrArea *sa, int type)
@@ -3531,6 +3549,8 @@ void newspace(ScrArea *sa, int type)
init_actionspace(sa); init_actionspace(sa);
else if(type==SPACE_TEXT) else if(type==SPACE_TEXT)
init_textspace(sa); init_textspace(sa);
else if(type==SPACE_SCRIPT)
init_scriptspace(sa);
else if(type==SPACE_SOUND) else if(type==SPACE_SOUND)
init_soundspace(sa); init_soundspace(sa);
else if(type==SPACE_NLA) else if(type==SPACE_NLA)
@@ -3611,6 +3631,9 @@ void freespacelist(ListBase *lb)
else if(sl->spacetype==SPACE_TEXT) { else if(sl->spacetype==SPACE_TEXT) {
free_textspace((SpaceText *)sl); free_textspace((SpaceText *)sl);
} }
else if(sl->spacetype==SPACE_SCRIPT) {
free_scriptspace((SpaceScript *)sl);
}
else if(sl->spacetype==SPACE_SOUND) { else if(sl->spacetype==SPACE_SOUND) {
free_soundspace((SpaceSound *)sl); free_soundspace((SpaceSound *)sl);
} }
@@ -3878,6 +3901,11 @@ void allqueue(unsigned short event, short val)
scrarea_queue_winredraw(sa); scrarea_queue_winredraw(sa);
} }
break; break;
case REDRAWSCRIPT:
if (sa->spacetype==SPACE_SCRIPT) {
scrarea_queue_winredraw(sa);
}
break;
case REDRAWSOUND: case REDRAWSOUND:
if(sa->spacetype==SPACE_SOUND) { if(sa->spacetype==SPACE_SOUND) {
scrarea_queue_headredraw(sa); scrarea_queue_headredraw(sa);
@@ -4162,6 +4190,17 @@ SpaceType *spacetext_get_type(void)
return st; return st;
} }
SpaceType *spacescript_get_type(void)
{
static SpaceType *st = NULL;
if (!st) {
st = spacetype_new("Script");
spacetype_set_winfuncs(st, drawscriptspace, NULL, winqreadscriptspace);
}
return st;
}
SpaceType *spaceview3d_get_type(void) SpaceType *spaceview3d_get_type(void)
{ {
static SpaceType *st= NULL; static SpaceType *st= NULL;

View File

@@ -92,6 +92,7 @@ SpaceType *spacetype_from_code(int spacecode)
case SPACE_SEQ: return spaceseq_get_type(); case SPACE_SEQ: return spaceseq_get_type();
case SPACE_SOUND: return spacesound_get_type(); case SPACE_SOUND: return spacesound_get_type();
case SPACE_TEXT: return spacetext_get_type(); case SPACE_TEXT: return spacetext_get_type();
case SPACE_SCRIPT:return spacescript_get_type();
case SPACE_VIEW3D: return spaceview3d_get_type(); case SPACE_VIEW3D: return spaceview3d_get_type();
default: default:
return NULL; return NULL;

View File

@@ -521,6 +521,7 @@ int blenderqread(unsigned short event, short val)
if (G.flags & G_FLAGS_AUTOPLAY) return 1; if (G.flags & G_FLAGS_AUTOPLAY) return 1;
if (curarea && curarea->spacetype==SPACE_TEXT) textspace= 1; if (curarea && curarea->spacetype==SPACE_TEXT) textspace= 1;
else if (curarea && curarea->spacetype==SPACE_SCRIPT) textspace= 1;
switch(event) { switch(event) {
@@ -798,7 +799,7 @@ int blenderqread(unsigned short event, short val)
break; break;
case NKEY: case NKEY:
if(textediting==0 && textspace==0 ) { if(textediting==0 && textspace==0) {
if(G.qual & LR_CTRLKEY); if(G.qual & LR_CTRLKEY);
else if(G.qual==0 || (G.qual & LR_SHIFTKEY)) { else if(G.qual==0 || (G.qual & LR_SHIFTKEY)) {
if(curarea->spacetype==SPACE_VIEW3D); // is new panel, in view3d queue if(curarea->spacetype==SPACE_VIEW3D); // is new panel, in view3d queue