undo.
The way this got updated from the context is a bit unreliable, and for handlers
the update couldn't happen because there is no context passed in. Now it's
updated from setup_app_data, which is where the change actually happens. I left
in the other updates to be sure but they should not be needed anymore.
#include "WM_api.h" // XXXXX BAD, very BAD dependency (bad level call) - remove asap, elubie
+#ifdef WITH_PYTHON
+#include "BPY_extern.h"
+#endif
+
Global G;
UserDef U;
/* ListBase = {NULL, NULL}; */
G.f = bfd->globalf;
+#ifdef WITH_PYTHON
+ /* let python know about new main */
+ BPY_context_update(C);
+#endif
+
if (!G.background) {
//setscreen(G.curscreen);
}
void BPY_DECREF(void *pyob_ptr); /* Py_DECREF() */
int BPY_context_member_get(struct bContext *C, const char *member, struct bContextDataResult *result);
void BPY_context_set(struct bContext *C);
+void BPY_context_update(struct bContext *C);
void BPY_id_release(struct ID *id);
#endif
/* use for updating while a python script runs - in case of file load */
-void bpy_context_update(bContext *C)
+void BPY_context_update(bContext *C)
{
/* don't do this from a non-main (e.g. render) thread, it can cause a race
* condition on C->data.recursion. ideal solution would be to disable
*gilstate = PyGILState_Ensure();
if (py_call_level == 1) {
- bpy_context_update(C);
+ BPY_context_update(C);
#ifdef TIME_PY_RUN
if (bpy_timer_count == 0) {
/* refreshes the main struct */
BPY_update_rna_module();
- bpy_context_module->ptr.data = (void *)C;
+ if(bpy_context_module)
+ bpy_context_module->ptr.data = (void *)C;
}
void BPY_context_set(bContext *C)
/* update pointers since this can run from a nested script
* on file load */
if (py_call_level) {
- bpy_context_update(C);
+ BPY_context_update(C);
}
bpy_context_set(C, &gilstate);
void BPY_update_rna_module(void)
{
+ if(rna_module_ptr) {
#if 0
- RNA_main_pointer_create(G.main, rna_module_ptr);
+ RNA_main_pointer_create(G.main, rna_module_ptr);
#else
- rna_module_ptr->data = G.main; /* just set data is enough */
+ rna_module_ptr->data = G.main; /* just set data is enough */
#endif
+ }
}
#if 0
struct bContext *BPy_GetContext(void);
void BPy_SetContext(struct bContext *C);
-extern void bpy_context_update(struct bContext *C);
extern void bpy_context_set(struct bContext *C, PyGILState_STATE *gilstate);
extern void bpy_context_clear(struct bContext *C, PyGILState_STATE *gilstate);
#endif