Thanks for your reply @Michael
Here’s my entire project as a python file:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
This experiment was created using PsychoPy3 Experiment Builder (v2021.2.3),
on April 20, 2022, at 11:44
If you publish work using this script the most relevant publication is:
Peirce J, Gray JR, Simpson S, MacAskill M, Höchenberger R, Sogo H, Kastman E, Lindeløv JK. (2019)
PsychoPy2: Experiments in behavior made easy Behav Res 51: 195.
https://doi.org/10.3758/s13428-018-01193-y
"""
from __future__ import absolute_import, division
from psychopy import locale_setup
from psychopy import prefs
from psychopy import sound, gui, visual, core, data, event, logging, clock, colors
from psychopy.constants import (NOT_STARTED, STARTED, PLAYING, PAUSED,
STOPPED, FINISHED, PRESSED, RELEASED, FOREVER)
import numpy as np # whole numpy lib is available, prepend 'np.'
from numpy import (sin, cos, tan, log, log10, pi, average,
sqrt, std, deg2rad, rad2deg, linspace, asarray)
from numpy.random import random, randint, normal, shuffle, choice as randchoice
import os # handy system and path functions
import sys # to get file system encoding
from psychopy.hardware import keyboard
import random
import numpy as np
from psychopy import visual, core, event
from psychopy.visual import ShapeStim
# Ensure that relative paths start from the same directory as this script
_thisDir = os.path.dirname(os.path.abspath(__file__))
os.chdir(_thisDir)
# Store info about the experiment session
psychopyVersion = '2021.2.3'
expName = 'rocket' # from the Builder filename that created this script
expInfo = {'participant': ''}
dlg = gui.DlgFromDict(dictionary=expInfo, sortKeys=False, title=expName)
if dlg.OK == False:
core.quit() # user pressed cancel
expInfo['date'] = data.getDateStr() # add a simple timestamp
expInfo['expName'] = expName
expInfo['psychopyVersion'] = psychopyVersion
# Data file name stem = absolute path + name; later add .psyexp, .csv, .log, etc
filename = _thisDir + os.sep + u'data/%s_%s_%s' % (expInfo['participant'], expName, expInfo['date'])
# An ExperimentHandler isn't essential but helps with data saving
thisExp = data.ExperimentHandler(name=expName, version='',
extraInfo=expInfo, runtimeInfo=None,
originPath='C:\\Users\\zahra\\Desktop\\space\\space.py',
savePickle=True, saveWideText=True,
dataFileName=filename)
# save a log file for detail verbose info
logFile = logging.LogFile(filename+'.log', level=logging.EXP)
logging.console.setLevel(logging.WARNING) # this outputs to the screen, not a file
endExpNow = False # flag for 'escape' or other condition => quit the exp
frameTolerance = 0.001 # how close to onset before 'same' frame
# Start Code - component code to be run after the window creation
# Setup the Window
win = visual.Window(
size=[1536, 864], fullscr=False, screen=0,
winType='pyglet', allowGUI=True, allowStencil=False,
monitor='', color=[0,0,0], colorSpace='rgb',
blendMode='avg', useFBO=True,
units='height')
# store frame rate of monitor if we can measure it
expInfo['frameRate'] = win.getActualFrameRate()
if expInfo['frameRate'] != None:
frameDur = 1.0 / round(expInfo['frameRate'])
else:
frameDur = 1.0 / 60.0 # could not measure, so guess
# Setup eyetracking
ioDevice = ioConfig = ioSession = ioServer = eyetracker = None
# create a default keyboard (e.g. to check for escape)
defaultKeyboard = keyboard.Keyboard()
# Initialize components for Routine "route"
routeClock = core.Clock()
spaceship = visual.ImageStim(
win=win,
name='spaceship',
image='images/rocket_transparent.png', mask=None,
ori=0.0, pos=[0,0], size=(0.1, 0.1),
color=[1,1,1], colorSpace='rgb', opacity=None,
flipHoriz=False, flipVert=False,
texRes=128.0, interpolate=True, depth=0.0)
y_rocket = -1
x_rocket = 0
gravity = .01
x_drift = 0.05
#kb = keyboard.Keyboard()
#theseKeys = kb.getKeys(keyList=["left", "right"], waitRelease=False)
# Create some handy timers
globalClock = core.Clock() # to track the time since experiment started
routineTimer = core.CountdownTimer() # to track time remaining of each (non-slip) routine
# ------Prepare to start Routine "route"-------
continueRoutine = True
# update component parameters for each repeat
spaceship.setPos((x_rocket, y_rocket))
#create a window
mywin = visual.Window(fullscr=True)
line = visual.ShapeStim(win=mywin, lineColor = 'black', lineWidth = 5, closeShape = False)
i = 0
lower_bound = .2
upper_bound = .3
final_array = []
sign = [1, -1]
L = 3
l = 0
start_x = [0]
start_y = [1]
while l < L:
if np.mod(i,2) == 0: #up and down
final_array.append(random.uniform(lower_bound, upper_bound))
l += final_array[i]
start_x.append(start_x[i])
start_y.append(start_y[i] - (final_array[i])/2)
else: #left and right
index = np.random.randint(2)
final_array.append(sign[index] * random.uniform(lower_bound, upper_bound))
start_y.append(start_y[i])
start_x.append(start_x[i] + (final_array[i])/2)
line.vertices = list(zip(start_x, start_y))
line.draw()
mywin.flip()
core.wait(0.5)
i += 1
# keep track of which components have finished
routeComponents = [spaceship]
for thisComponent in routeComponents:
thisComponent.tStart = None
thisComponent.tStop = None
thisComponent.tStartRefresh = None
thisComponent.tStopRefresh = None
if hasattr(thisComponent, 'status'):
thisComponent.status = NOT_STARTED
# reset timers
t = 0
_timeToFirstFrame = win.getFutureFlipTime(clock="now")
routeClock.reset(-_timeToFirstFrame) # t0 is time of first possible flip
frameN = -1
# -------Run Routine "route"-------
while continueRoutine:
# get current time
t = routeClock.getTime()
tThisFlip = win.getFutureFlipTime(clock=routeClock)
tThisFlipGlobal = win.getFutureFlipTime(clock=None)
frameN = frameN + 1 # number of completed frames (so 0 is the first frame)
# update/draw components on each frame
# *spaceship* updates
if spaceship.status == NOT_STARTED and tThisFlip >= 0.0-frameTolerance:
# keep track of start time/frame for later
spaceship.frameNStart = frameN # exact frame index
spaceship.tStart = t # local t and not account for scr refresh
spaceship.tStartRefresh = tThisFlipGlobal # on global time
win.timeOnFlip(spaceship, 'tStartRefresh') # time at next scr refresh
spaceship.setAutoDraw(True)
#
#if event.getKeys(["right"]):
# x_rocket += x_drift
#elif event.getKeys(["left"]):
# x_rocket -= x_drift
y_rocket += gravity
#x_rocket += x_drift
# check for quit (typically the Esc key)
if endExpNow or defaultKeyboard.getKeys(keyList=["escape"]):
core.quit()
# check if all components have finished
if not continueRoutine: # a component has requested a forced-end of Routine
break
continueRoutine = False # will revert to True if at least one component still running
for thisComponent in routeComponents:
if hasattr(thisComponent, "status") and thisComponent.status != FINISHED:
continueRoutine = True
break # at least one component has not yet finished
# refresh the screen
if continueRoutine: # don't flip if this routine is over or we'll get a blank screen
win.flip()
# -------Ending Routine "route"-------
for thisComponent in routeComponents:
if hasattr(thisComponent, "setAutoDraw"):
thisComponent.setAutoDraw(False)
thisExp.addData('spaceship.started', spaceship.tStartRefresh)
thisExp.addData('spaceship.stopped', spaceship.tStopRefresh)
# the Routine "route" was not non-slip safe, so reset the non-slip timer
routineTimer.reset()
# Flip one final time so any remaining win.callOnFlip()
# and win.timeOnFlip() tasks get executed before quitting
win.flip()
# these shouldn't be strictly necessary (should auto-save)
thisExp.saveAsWideText(filename+'.csv', delim='auto')
thisExp.saveAsPickle(filename)
logging.flush()
# make sure everything is closed down
thisExp.abort() # or data files will save again on exit
win.close()
core.quit()
The problem is that the space image does not show up.
and this is what it looks likes in the builder: