Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
powerbasic/write.bas
2013-07-15 23:19:32 +02:00

39 lines
1.1 KiB
QBasic
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

dim p$(20)
para$=command$
a=1:x=1
1 x$=mid$(para$,x,1)
if x$=" " then a=a+1:x=x+1:goto 1
p$(a)=p$(a)+x$
if x$="" then 2
x=x+1
goto 1
2 if p$(1)="/?" or p$(1)="" then goto Hilfe
x=val(p$(1))
y=val(p$(2))
zei=val(p$(3))
v=val(p$(4))
h=val(p$(5))
3 for z=6 to 20
if p$(z)="" then text$=left$(text$,len(text$)-1):goto 4
text$=text$+p$(z)+" "
next z
4 color v,h,0
versch=round(zei/2-len(text$)/2,0)
y=y+versch
locate x,y:print text$
end
Hilfe:
print"WRITE was written by RoboCop INDUSTRIES"
print
print"Syntax: WRITE x y length fc bc TEXT"
print
print"x - x-coordinates of the begin of the field"
print"y - y-coordinates -------- '' -------------"
print"lengt - length of the field (the TEXT will be centered)"
print"fc - foreground color"
print"bc - background color"
print"TEXT - the text to print out"
print
print"(C)1995 by RoboCop INDUSTRIES"
end