Ignore:
Timestamp:
Jul 28, 2015, 1:27:46 PM (9 years ago)
Author:
guerin
Message:

raycast: initial port

Raycast is a small game that looks like Wolfenstein 3D. I created
it for my SESI project, on a Cortex M4 devboard.

Imported from
github.com/libcg/tiva-c/tree/master/boards/dk-tm4c129x/upmc_raycast

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_python/genmap

    r591 r673  
    3737# - gameoflife
    3838# - ocean
     39# - raycast
    3940# - router
    4041# - sort
     
    132133                   default = False,
    133134                   help = 'map the "ocean" application for the GietVM' )
     135
     136parser.add_option( '--raycast', action = 'store_true', dest = 'raycast',     
     137                   default = False,
     138                   help = 'map the "raycast" application for the GietVM' )
    134139
    135140parser.add_option( '--router', action = 'store_true', dest = 'router',     
     
    181186map_gameoflife = options.gameoflife  # map "gameoflife" application if True
    182187map_ocean      = options.ocean       # map "ocean" application if True
     188map_raycast    = options.raycast     # map "raycast" application if True
    183189map_router     = options.router      # map "router" application if True
    184190map_shell      = options.shell       # map "shell" application if True
     
    243249    print '[genmap] application "ocean" will be loaded'
    244250
     251if ( map_raycast ):     
     252    appli = __import__( 'raycast' )
     253    appli.extend( mapping )
     254    print '[genmap] application "raycast" will be loaded'
     255
    245256if ( map_router ):     
    246257    appli = __import__( 'router' )
Note: See TracChangeset for help on using the changeset viewer.