mirror of
https://github.com/irmen/prog8.git
synced 2024-11-27 03:50:27 +00:00
txtelite
This commit is contained in:
parent
151dcfdef9
commit
6ff5470cf1
@ -5,25 +5,17 @@
|
|||||||
|
|
||||||
main {
|
main {
|
||||||
|
|
||||||
|
str name
|
||||||
|
|
||||||
|
|
||||||
struct Planet {
|
struct Planet {
|
||||||
ubyte x
|
ubyte x
|
||||||
ubyte y
|
ubyte y
|
||||||
str name
|
str name = "????????"
|
||||||
}
|
}
|
||||||
|
|
||||||
sub start() {
|
sub start() {
|
||||||
|
|
||||||
Planet p1
|
|
||||||
|
|
||||||
txt.print(planet_name)
|
|
||||||
txt.chrout('\n')
|
|
||||||
|
|
||||||
planet_name = "saturn"
|
|
||||||
|
|
||||||
txt.print(planet_name)
|
|
||||||
txt.chrout('\n')
|
|
||||||
txt.print_ub(len(planet_name))
|
|
||||||
txt.chrout('\n')
|
|
||||||
txt.print_ub(strlen(planet_name))
|
|
||||||
txt.chrout('\n')
|
txt.chrout('\n')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,11 +11,7 @@ main {
|
|||||||
repeat 5 {
|
repeat 5 {
|
||||||
planet.set_seed(rndw(), rndw())
|
planet.set_seed(rndw(), rndw())
|
||||||
planet.name = planet.random_name()
|
planet.name = planet.random_name()
|
||||||
txt.print("System: ")
|
planet.display(false)
|
||||||
txt.print(planet.name)
|
|
||||||
txt.chrout('\n')
|
|
||||||
txt.print(planet.soup())
|
|
||||||
txt.chrout('\n')
|
|
||||||
txt.chrout('\n')
|
txt.chrout('\n')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -40,6 +36,10 @@ _saveX .byte 0
|
|||||||
planet {
|
planet {
|
||||||
%option force_output
|
%option force_output
|
||||||
|
|
||||||
|
str[] govnames = ["Anarchy", "Feudal", "Multi-gov", "Dictatorship", "Communist", "Confederacy", "Democracy", "Corporate State"]
|
||||||
|
str[] econnames = ["Rich Industrial", "Average Industrial", "Poor Industrial", "Mainly Industrial",
|
||||||
|
"Mainly Agricultural", "Rich Agricultural", "Average Agricultural", "Poor Agricultural"]
|
||||||
|
|
||||||
str[] words81 = ["fabled", "notable", "well known", "famous", "noted"]
|
str[] words81 = ["fabled", "notable", "well known", "famous", "noted"]
|
||||||
str[] words82 = ["very", "mildly", "most", "reasonably", ""]
|
str[] words82 = ["very", "mildly", "most", "reasonably", ""]
|
||||||
str[] words83 = ["ancient", "\x95", "great", "vast", "pink"]
|
str[] words83 = ["ancient", "\x95", "great", "vast", "pink"]
|
||||||
@ -89,6 +89,15 @@ planet {
|
|||||||
ubyte[4] goatsoup_seed = [0, 0, 0, 0]
|
ubyte[4] goatsoup_seed = [0, 0, 0, 0]
|
||||||
|
|
||||||
str name = " " ; 8 max
|
str name = " " ; 8 max
|
||||||
|
ubyte x
|
||||||
|
ubyte y
|
||||||
|
ubyte economy
|
||||||
|
ubyte govtype
|
||||||
|
ubyte techlevel
|
||||||
|
ubyte population
|
||||||
|
ubyte productivity
|
||||||
|
ubyte radius
|
||||||
|
; todo: species
|
||||||
|
|
||||||
sub set_seed(uword s1, uword s2) {
|
sub set_seed(uword s1, uword s2) {
|
||||||
goatsoup_seed[0] = lsb(s1)
|
goatsoup_seed[0] = lsb(s1)
|
||||||
@ -226,6 +235,39 @@ planet {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub display(ubyte compressed) {
|
||||||
|
if compressed {
|
||||||
|
txt.print(name)
|
||||||
|
txt.print(" TL:")
|
||||||
|
txt.print_ub(techlevel+1)
|
||||||
|
txt.chrout(' ')
|
||||||
|
txt.print(econnames[economy])
|
||||||
|
txt.chrout(' ')
|
||||||
|
txt.print(govnames[govtype])
|
||||||
|
} else {
|
||||||
|
txt.print("\n\nSystem: ")
|
||||||
|
txt.print(name)
|
||||||
|
txt.print("\nPosition: ")
|
||||||
|
txt.print_ub(x)
|
||||||
|
txt.chrout(',')
|
||||||
|
txt.print_ub(y)
|
||||||
|
txt.print("\nEconomy: ")
|
||||||
|
txt.print(econnames[economy])
|
||||||
|
txt.print("\nGovernment: ")
|
||||||
|
txt.print(govnames[govtype])
|
||||||
|
txt.print("\nTech Level: ")
|
||||||
|
txt.print_ub(techlevel+1)
|
||||||
|
txt.print("\nTurnover: ")
|
||||||
|
txt.print_ub(productivity)
|
||||||
|
txt.print("\nRadius:")
|
||||||
|
txt.print_ub(radius)
|
||||||
|
txt.print("\nPopulation: ")
|
||||||
|
txt.print_ub(population >> 3)
|
||||||
|
txt.print(" Billion\n")
|
||||||
|
txt.print(soup())
|
||||||
|
txt.chrout('\n')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
asmsub getword(ubyte list @A, ubyte wordidx @Y) -> uword @AY {
|
asmsub getword(ubyte list @A, ubyte wordidx @Y) -> uword @AY {
|
||||||
%asm {{
|
%asm {{
|
||||||
|
Loading…
Reference in New Issue
Block a user