I am currently working on a project using Blender 2.49b which requires objects to be spawned at certain locations during runtime when the appropriate conditions are met during simulation.
To test out the method to be used for this I made a simple .blend file with the initial cube and a plane. I then made a .csv file containing Names and Coordinates of 6 other cubes to be "spawned" when the user controlled cube gets close enough to them.
The cubes are "spawned" by a simple script that appends the object from another .blend file containing only a cube. This is done because the future product will need to be able to spawn different objects from different files.
I used sensors and a python script I wrote to make it all happen but I am having problems getting to work completely as required. During the simulation, with keyboard inputs to move the cube, one can see the screen flicker and updating the location of the cube in the blender scene but not in the runtime scene. And when the cube gets in range of the other cubes, one can see the other cubes spawning due to the flickering but the actual simulation shows the initial cube sitting alone at its original location. Once simulation is exited, the blender scene shows the newly added cubes and the user cube at its new location.
How can I make everything happen in the actual simulation and not just in the background?
Here is the script I wrote:
# This script dynamically spawns cubes when the user controlled cube gets close enough to their locations
import string
import csv
import math as M
import Blender as B
from Blender import Library, Window, Draw, BGL, Camera, Object
# import selected _OBJECT_ data.
def open_library(name):
global object_list, already_imported
object_list=[]
already_imported = 1
Library.Open(name) # opens the library file
groups = Library.LinkableGroups()
data_Type = 'Object'
#3 _append_ OBJECTS to new file.
# if the objects are 'Object' (can change to Mesh, Arm, light etc...)
if data_Type in groups:
for obname in Library.Datablocks(data_Type):
#obname = 'Cube-'+ str(cubeId)
#print obname
Library.Load(obname, data_Type, 0) # note the 0...
# add the objec to a list so imported objects
# _only_ are renamed.........
object_list.append(obname)
Library.Update()
Library.Close()
print object_list
scns = B.Scene.Get() # get a list of all scenes in Blender
for i in scns: # get each scene in the list
scn = i
obs = list(scn.objects) # get a list of all objects in scene
for j in obs: # get each object in the scene
if (j.name == 'Cube.001'): # newly spawned object
j.name = 'Cube-'+ str(cubeId)
j.loc = (cubeX, cubeY, cubeZ)
#print obname
Window.RedrawAll()
ob = B.Object.Get('Cube')
# get current controller
cont = GameLogic.getCurrentController()
# get sensors named up and down
up = cont.sensors["Up"]
down = cont.sensors["Down"]
# up key
if up.positive == True and down.positive == False:
# move up
ob.LocY += 1
# back key
elif down.positive == True and up.positive == False:
# move down
ob.LocY -= 1
# get sensors named right and left
right = cont.sensors["Right"]
left = cont.sensors["Left"]
# right key
if right.positive == True and left.positive == False:
# move right
ob.LocX += 1
# left key
elif left.positive == True and right.positive == False:
# move left
ob.LocX -= 1
B.Redraw(-1)
obX = float(ob.loc[0])
obY = float(ob.loc[1])
obZ = float(ob.loc[2])
# format csv link file reader
cubeReader = csv.reader(open('Cubes.csv', 'rb'))
line = 0
for cubeRow in cubeReader:
# skip header
if (line > 0):
# parse data
cubeId = float(cubeRow[0])
cubeX = float(cubeRow[1])
cubeY = float(cubeRow[2])
cubeZ = float(cubeRow[3])
distance = M.sqrt(M.pow((obX-cubeX), 2)+M.pow((obY-cubeY), 2))
print distance
if (distance < 5):
scns = B.Scene.Get() # get a list of all scenes in Blender
for i in scns: # get each scene in the list
scn = i
obs = list(scn.objects) # get a list of all objects in scene
found = False
for j in obs: # get each object in the scene
if (j.name == 'Cube-'+ str(cubeId)):# check if object already spawned
found = True
if (found == False):
print 'Spawning cubes...'
object_list=[]
already_imported = 0
name = "H:\TRC\CubeSpawner\Cube.blend"
#1 SELECT file to append from.
open_library(name)
print 'Done!'
line += 1
And here is a video of what happens when I run the simulation:
Thanks in advance for any future assistance :)