2020-12-28 14:38:26 +03:00
|
|
|
class list():
|
2020-12-30 10:59:21 +03:00
|
|
|
"Resizable array with direct constant-time indexing."
|
2020-12-30 04:08:21 +03:00
|
|
|
def __init__():
|
|
|
|
self._list=__builtins__.list_new()
|
|
|
|
def __get__(i):
|
|
|
|
return __builtins__.list_get(self._list,i)
|
|
|
|
def __set__(i,v):
|
|
|
|
return __builtins__.list_set(self._list,i,v)
|
|
|
|
def append(v):
|
2020-12-30 10:59:21 +03:00
|
|
|
"Add an entry to the end of the list."
|
2020-12-30 04:08:21 +03:00
|
|
|
return __builtins__.list_append(self._list,v)
|
2020-12-30 09:50:26 +03:00
|
|
|
def __len__():
|
2020-12-30 04:08:21 +03:00
|
|
|
return __builtins__.list_length(self._list)
|
|
|
|
def extend(i):
|
2020-12-30 10:59:21 +03:00
|
|
|
"Add all entries from an iterable to the end of this list."
|
2020-12-30 04:08:21 +03:00
|
|
|
for v in i:
|
|
|
|
self.append(v)
|
2020-12-30 09:50:26 +03:00
|
|
|
return self.__len__()
|
2020-12-30 04:08:21 +03:00
|
|
|
def __str__(self):
|
2021-01-01 04:42:16 +03:00
|
|
|
let b="["
|
|
|
|
let l=self.__len__()
|
2020-12-30 04:08:21 +03:00
|
|
|
for i=0,i<l,i=i+1:
|
|
|
|
if i>0:
|
2021-01-01 04:42:16 +03:00
|
|
|
b+=", "
|
2020-12-30 04:08:21 +03:00
|
|
|
b=b+__builtins__.list_get(self._list,i)
|
|
|
|
return b+"]"
|
|
|
|
def __iter__(self):
|
|
|
|
let m = self
|
|
|
|
def I(i):
|
|
|
|
let e=m
|
2020-12-30 09:50:26 +03:00
|
|
|
let l=e.__len__()
|
2020-12-30 04:08:21 +03:00
|
|
|
let x=i
|
|
|
|
def _():
|
|
|
|
if x>=l:
|
|
|
|
return _
|
|
|
|
let o=e[x]
|
2021-01-01 04:42:16 +03:00
|
|
|
x++
|
2020-12-30 04:08:21 +03:00
|
|
|
return o
|
|
|
|
return _
|
|
|
|
return I(0)
|
2020-12-28 13:25:33 +03:00
|
|
|
|
2020-12-28 14:38:26 +03:00
|
|
|
class dict():
|
2020-12-30 10:59:21 +03:00
|
|
|
"Hashmap of arbitrary keys to arbitrary values."
|
2020-12-30 04:08:21 +03:00
|
|
|
def __init__(self):
|
|
|
|
self._map = __builtins__.hash_new()
|
|
|
|
def __get__(self, ind):
|
|
|
|
return __builtins__.hash_get(self._map, ind)
|
|
|
|
def __set__(self, ind, val):
|
|
|
|
return __builtins__.hash_set(self._map, ind, val)
|
|
|
|
def __str__(self):
|
|
|
|
let out = "{"
|
|
|
|
let first = True
|
|
|
|
for v in self.keys():
|
|
|
|
if not first:
|
2021-01-01 04:42:16 +03:00
|
|
|
out += ", "
|
2020-12-30 04:08:21 +03:00
|
|
|
first = False
|
|
|
|
out = out + v + ": " + self[v]
|
2021-01-01 04:42:16 +03:00
|
|
|
out += "}"
|
2020-12-30 04:08:21 +03:00
|
|
|
return out
|
2020-12-30 09:50:26 +03:00
|
|
|
def __len__(self):
|
2020-12-30 04:08:21 +03:00
|
|
|
return __builtins__.hash_count(self._map)
|
|
|
|
def capacity(self):
|
|
|
|
return __builtins__.hash_capacity(self._map)
|
|
|
|
def keys(self):
|
2020-12-30 10:59:21 +03:00
|
|
|
"Returns an iterable of the keys in this dictionary."
|
2020-12-30 04:08:21 +03:00
|
|
|
class KeyIterator():
|
|
|
|
def __init__(self, target):
|
|
|
|
self.target = target
|
|
|
|
def __iter__(self):
|
|
|
|
let me = self
|
|
|
|
def makeIter(ind):
|
|
|
|
let m = me.target
|
|
|
|
let c = m.capacity()
|
|
|
|
let i = ind
|
|
|
|
def iter():
|
|
|
|
let out = None
|
|
|
|
while out == None and i < c:
|
|
|
|
out = __builtins__.hash_key_at_index(m._map,i)
|
2021-01-01 04:42:16 +03:00
|
|
|
i++
|
2020-12-30 04:08:21 +03:00
|
|
|
if out == None:
|
|
|
|
return iter
|
|
|
|
else:
|
|
|
|
return out
|
|
|
|
return iter
|
|
|
|
return makeIter(0)
|
|
|
|
return KeyIterator(self)
|
2020-12-28 13:25:33 +03:00
|
|
|
|
|
|
|
class range:
|
2020-12-30 10:59:21 +03:00
|
|
|
"Helpful iterable."
|
2020-12-30 04:08:21 +03:00
|
|
|
def __init__(self, min, max):
|
|
|
|
self.min = min
|
|
|
|
self.max = max
|
|
|
|
def __iter__(self):
|
|
|
|
let me = self
|
|
|
|
def makeIter(ind):
|
|
|
|
let l = me
|
|
|
|
let i = ind
|
|
|
|
def iter():
|
|
|
|
if i >= l.max:
|
|
|
|
return iter
|
|
|
|
let out = i
|
2021-01-01 04:42:16 +03:00
|
|
|
i++
|
2020-12-30 04:08:21 +03:00
|
|
|
return out
|
|
|
|
return iter
|
|
|
|
return makeIter(self.min)
|
2020-12-28 13:25:33 +03:00
|
|
|
|
2020-12-30 09:50:26 +03:00
|
|
|
def len(obj=None): return (obj and obj.__len__()) or 0
|
2020-12-30 06:28:18 +03:00
|
|
|
def str(obj=None): return (obj and ("" + obj)) or ""
|
|
|
|
def int(obj=None): return (obj and obj.__int__()) or 0
|
|
|
|
def float(obj=None): return (obj and obj.__float__()) or 0.0
|
|
|
|
def dir(obj): return obj.__dir__()
|
2020-12-28 13:25:33 +03:00
|
|
|
|
2020-12-30 10:59:21 +03:00
|
|
|
def help(obj=None):
|
|
|
|
if not obj:
|
|
|
|
print "Kuroko - Interpreted bytecode VM."
|
|
|
|
print " usage:"
|
|
|
|
print " help() - Displays this message."
|
|
|
|
print " help(func) - Displays docstring for function, if present."
|
|
|
|
print " help(class) - Displays docstring for class, if present."
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
print obj.__doc__
|
|
|
|
except:
|
|
|
|
print "No docstring available for", obj
|
|
|
|
|
|
|
|
export list,dict,range,len,str,int,float,dir,help
|
2020-12-28 13:25:33 +03:00
|
|
|
|
2020-12-31 09:48:39 +03:00
|
|
|
__builtins__.module_paths = ["./","./modules/","/home/klange/Projects/kuroko/modules/","/usr/share/kuroko/"]
|
|
|
|
|
2020-12-28 13:25:33 +03:00
|
|
|
return object()
|