Initial prototype of Web Assembly IDE

This commit is contained in:
Jeremiah Orians 2016-07-20 22:07:10 -04:00
parent 9331df8920
commit 8cd94f4eda
No known key found for this signature in database
GPG Key ID: 7457821534D2ACCD
1 changed files with 78 additions and 0 deletions

78
Knight.py Executable file
View File

@ -0,0 +1,78 @@
import os, os.path
import string
import array
import time
import cherrypy
import User_Interface as UI
class StringGenerator(object):
@cherrypy.expose
def index(self):
return UI.returnPage()
@cherrypy.expose
def Memory(self, col=8, row=8, value=0):
if 0 > int(col) or 0 > int(row):
return "Out of range"
if int(value, 16) > 255:
return "Too big"
return UI.returnPage()
@cherrypy.expose
def Register(self, Reg="", value=0):
index = int(Reg[1:])
registers = int(value, 16)
return UI.returnPage()
@cherrypy.expose
def RUN(self):
UI.Step_lilith()
if UI.Current_IP in UI.Watchpoints:
raise cherrypy.HTTPRedirect("/")
return UI.returnPage()
@cherrypy.expose
def STEP(self):
UI.Step_lilith()
return UI.returnPage()
@cherrypy.expose
def STOP(self):
return UI.returnPage()
@cherrypy.expose
def PAUSE(self):
return UI.returnPage()
@cherrypy.expose
def RESET(self):
return UI.returnPage()
@cherrypy.expose
def DEBUG(self, Inst=""):
UI.Watchpoints
UI.Watchpoints.add(int(Inst, 16))
return UI.returnPage()
if __name__ == '__main__':
conf = {
'/': {
'tools.sessions.on': True,
'tools.staticdir.root': os.path.abspath(os.getcwd())
},
'/generator': {
'request.dispatch': cherrypy.dispatch.MethodDispatcher(),
'tools.response_headers.on': True,
'tools.response_headers.headers': [('Content-Type', 'text/plain')],
},
'/static': {
'tools.staticdir.on': True,
'tools.staticdir.dir': './public'
}
}
webapp = StringGenerator()
webapp.generator = StringGenerator()
cherrypy.quickstart(webapp, '/', conf)