示例#1
0
def enter_roll_mode():
  global scr
  global mode
  global form
  mode='roll'
  f.change_mode('window')
  f.wipe()
  f.frame('Roll your character')
  f.selector.wipe()
  f.text(20,50,'Choose your race:',fg='green',size=12)
  race_choice=f.selector(['human','orc','dwarf','elf','half-troll'],race_choice_agent)
  race_choice.activate(20,75)
  race_choice.focus(0)
  map=w.load_map()
  c=[rand(0,31),rand(0,31)]
  form['coord']=c
  #f.inform('Your coordinates are: '+str(c))
  while (map[c[0]][c[1]]<40)|(map[c[0]][c[1]]>90): c=[rand(0,31),rand(0,31)]
  f.text(220,50,'Starting location:',fg='blue',size=12)
  f.text(240,80,'('+str(c[0])+','+str(c[1])+')',size=12)
  f.text(50,f.HEIGHT-50,"Press 's' to start...",fg='yellow',size=12)
  if map[c[0]][c[1]]<60:
    f.symbol(230//f.charsize,70//f.charsize+1,'+',color='green')
  else:
    f.symbol(230//f.charsize,70//f.charsize+1,'v',color='brown')
示例#2
0
def enter_worldgen_mode():
  global mode
  mode='worldgen'
  f.change_mode('symbols')
  f.wipe()
  w.generate(512)
  w.export()
  map=w.load_map(charnum=min(f.W,f.H))
  for y in range(len(map)):
    for x in range(len(map[y])):
      c=map[x][y]
      if c>90:
        f.symbol(x,y,'^',color='white')
      elif c<40:
        f.symbol(x,y,'~',color='blue')
      elif c>60:
        f.symbol(x,y,'v',color='brown')
      else:
        f.symbol(x,y,'+',color='green')