TriOS-alt/system/regnatix/beltest.spin

436 lines
25 KiB
Plaintext
Raw Normal View History

2011-11-11 17:41:02 +01:00
<EFBFBD><EFBFBD>{{
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Autor: Ingo Kripahle %
% Copyright (c) 2010 Ingo Kripahle %
% See end of file for terms of use. %
% Die Nutzungsbedingungen befinden sich am Ende der Datei. %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Informationen : hive-project.de
Kontakt : drohne235@googlemail.com
System : TriOS
Name : Bellatrix-Test
Chip : Regnatix
Typ : Programm
Version : 00
Subversion : 01
Funktion : Test f<00>r die grundlegenden Textausgabe- und Tastaturfunktionen.
Komponenten : -
COG's : -
Logbuch :
22-03-2010-dr235 - anpassung trios
Kommandoliste :
Notizen :
}}
OBJ
ios: "reg-ios"
CON
_CLKMODE = XTAL1 + PLL16X
_XINFREQ = 5_000_000
OS_TIBLEN = 64 'gr<00><00>e des inputbuffers
VAR
'systemvariablen
byte tib[OS_TIBLEN] 'tastatur-input-buffer
byte tibpos 'aktuelle position im tib
PUB main | i,j,n,a,b,rows,cols
2011-11-11 17:41:02 +01:00
ios.start
'ios.startram 'ram-testcode
cols := ios.belgetcols
rows := ios.belgetrows
2011-11-11 17:41:02 +01:00
ios.screeninit(string("Funktionstest Bellatrix-BIOS"),1)
ios.printnl
2011-11-11 17:41:02 +01:00
repeat
'------------------------------------------------------------------------------------
ios.print(string("Zeichensatz:"))
weiter
2011-11-11 17:41:02 +01:00
charset
ios.printnl
ios.printnl
'------------------------------------------------------------------------------------
ios.print(string("Hive-Logo:"))
weiter
ios.printcls
2011-11-11 17:41:02 +01:00
ios.printlogo(0,0)
ios.printnl
ios.printnl
'------------------------------------------------------------------------------------
ios.print(string("Test TAB:"))
weiter
2011-11-11 17:41:02 +01:00
if cols < 50
a := 3
b := 5
else
a := 3
b := 7
repeat j from a to b
2011-11-11 17:41:02 +01:00
repeat i from 0 to 7
ios.settabs(i,j*i)
ios.printcls
repeat 8
ios.print(string("tab"))
ios.printtab
ios.printnl
repeat i from 1 to 5
repeat 8
ios.printdec(i)
ios.printtab
ios.printnl
waitcnt(10_000_000+cnt)
ios.printnl
ios.printnl
'------------------------------------------------------------------------------------
ios.print(string("Test CLS:"))
weiter
2011-11-11 17:41:02 +01:00
ios.printcls
repeat 10
charset
ios.printcls
ios.printnl
ios.printnl
'------------------------------------------------------------------------------------
ios.print(string("Test ScrollUp:"))
weiter
2011-11-11 17:41:02 +01:00
repeat 10
charset
repeat 20
waitcnt(10_000_000+cnt)
ios.scrollup
ios.printnl
ios.printnl
'------------------------------------------------------------------------------------
ios.print(string("Test ScrollDown:"))
weiter
2011-11-11 17:41:02 +01:00
repeat 10
charset
repeat 15 <# rows - 2
2011-11-11 17:41:02 +01:00
waitcnt(10_000_000+cnt)
ios.scrolldown
repeat 16
repeat 15 <# rows - 2
2011-11-11 17:41:02 +01:00
waitcnt(1_000_000+cnt)
ios.scrollup
repeat 15 <# rows - 2
2011-11-11 17:41:02 +01:00
waitcnt(1_000_000+cnt)
ios.scrolldown
ios.printnl
ios.printnl
'------------------------------------------------------------------------------------
ios.print(string("Test SCREENINIT:"))
weiter
2011-11-11 17:41:02 +01:00
ios.screeninit(string("<00>%Funktionstest Bellatrix-BIOS [SCREENINIT OK]"),1)
ios.printnl
ios.printnl
'------------------------------------------------------------------------------------
ios.print(string("Test SETCOLOR:"))
weiter
2011-11-11 17:41:02 +01:00
repeat i from 0 to 7 'vga-tile hat 8 farbkominationen
repeat j from 0 to 32
ios.setcolor(i)
ios.printchar(j + 65)
ios.printchar(":")
ios.printdec(i)
ios.printchar(":")
ios.printhex(i,2)
ios.printnl
ios.setcolor(0)
ios.printnl
ios.printnl
'------------------------------------------------------------------------------------
ios.print(string("Test SETX/SETY (CURON/CUROFF):"))
weiter
2011-11-11 17:41:02 +01:00
ios.printcls
ios.printnl
ios.curoff
repeat n from 1 to 50
repeat j from 1 to 5
repeat i from 1 to 8 <# cols/5-1
2011-11-11 17:41:02 +01:00
ios.cursetx(i * 5)
ios.cursety(j * 2)
ios.printchar(":")
ios.printdec(n)
ios.cursetx(5)
ios.cursety(16 <# rows)
2011-11-11 17:41:02 +01:00
ios.printchar(":")
ios.printdec(j)
ios.printchar(":")
ios.printdec(i)
ios.printchar(":")
ios.printdec(n)
ios.curon
ios.printnl
ios.printnl
'------------------------------------------------------------------------------------
ios.print(string("Test Scrolling:"))
weiter
2011-11-11 17:41:02 +01:00
repeat j from 0 to 20
charset
ios.printnl
ios.printnl
'------------------------------------------------------------------------------------
ios.print(string("Test CLS:"))
weiter
2011-11-11 17:41:02 +01:00
ios.printcls
ios.printnl
ios.printnl
'------------------------------------------------------------------------------------
ios.print(string("Test Windows:"))
weiter
windows
ios.printcls
weiter
'------------------------------------------------------------------------------------
2011-11-11 17:41:02 +01:00
ios.print(string("Test Tastatureingabe/Backspace (bis Enter):"))
weiter
2011-11-11 17:41:02 +01:00
input
ios.printnl
ios.printnl
ios.print(string("Eingabe :"))
ios.print(@tib)
ios.printnl
ios.printnl
'------------------------------------------------------------------------------------
ios.print(string("Test Home:"))
weiter
2011-11-11 17:41:02 +01:00
ios.printcls
repeat i from 0 to 1000
ios.curhome
ios.printdec(i)
ios.printnl
ios.printnl
'------------------------------------------------------------------------------------
ios.print(string("Test POS1:"))
weiter
2011-11-11 17:41:02 +01:00
repeat i from 0 to 1000
ios.curpos1
ios.printdec(i)
ios.printnl
ios.printnl
'------------------------------------------------------------------------------------
ios.print(string("Test CURCHAR:"))
weiter
2011-11-11 17:41:02 +01:00
repeat i from 1 to 100
ios.curchar(i)
waitcnt(2_000_000 + cnt)
ios.curchar($0E)
ios.printnl
ios.printnl
ios.print(string("Test :"))
weiter
ios.printnl
ios.printnl
PRI weiter | tast
2011-11-11 17:41:02 +01:00
ios.printnl
ios.print(string("Weiter */<Q>uit : "))
tast := ios.keywait
if tast == "q" OR tast == "Q"
ios.stop
ios.printnl
ios.printnl
PUB charset | i
repeat i from 14 to 255
ios.printchar(i)
PUB input | charc
repeat
if ios.keystat > 0 'taste gedr<00>ckt?
charc := ios.key 'tastencode holen
if (tibpos + 1) < OS_TIBLEN 'tastaturpuffer voll?
case charc
ios#CHAR_BS: 'backspace
if tibpos > 0
tibpos--
tib[tibpos] := $0 'letztes zeichen im puffer l<00>schen
ios.printctrl(ios#CHAR_TER_BS) 'steuerzeichen anterminal senden
other: ios.bus_putchar2(charc) 'sonstige zeichen
if (charc <> ios#CHAR_NL) & (charc <> ios#CHAR_BS) 'ausser sonderzeichen alles in tib
if (tibpos + 1) < OS_TIBLEN 'tastaturpuffer voll?
tib[tibpos++] := charc
tib[tibpos] := $0
until charc == $0D 'schleife bis RETURN
VAR
long h[3], z[3], r[3]
PUB windows | cols, rows, gx, gy, i, j, tast
cols := ios.belgetcols
rows := ios.belgetrows
gx := cols / 2
gy := rows * 2 / 3
ios.printcls
ios.print(string("### Window-Test ###"))
ios.windefine(1, 2, 3, gx - 1, gy - 1)
ios.windefine(2, gx + 2, 3, cols - 1, gy - 1)
ios.windefine(3, 3, gy + 2, cols - 3, rows - 1)
repeat i from 1 to 3
ios.winset(i)
ios.printcls
ios.winoframe
waitcnt(cnt + clkfreq)
repeat i from 1 to 3
ios.winset(i)
repeat 3
charset
waitcnt(cnt + clkfreq)
repeat i from 1 to 3
ios.winset(i)
j := ios.wingetrows
repeat 8
repeat 15 <# j - 2
waitcnt(1_000_000+cnt)
ios.scrollup
repeat 15 <# j - 2
waitcnt(1_000_000+cnt)
ios.scrolldown
repeat i from 0 to 2
ios.winset(i+1)
h[i] := ios.wingetrows - 2
z[i] := 0
r[i] := 1
repeat 3
charset
i := 0
repeat 16*3*4
i := (i + 1) // 3
ios.winset(i+1)
z[i] += r[i]
if r[i] > 0
ios.scrollup
else
ios.scrolldown
if z[i] == 0 or z[i] == h[i]
r[i] *= -1
waitcnt(1_000_000+cnt)
ios.winset(3)
ios.printcls
ios.print(string("Test Screen 2"))
weiter
screen2
repeat i from 1 to 3
ios.winset(i)
ios.printcls
ios.curoff
ios.winset(1)
ios.printcls
ios.print(string("Test relative Positionierung"))
weiter
ios.winset(2)
repeat j from 2 to 3
ios.winset(j)
repeat i from 1 to 3
setpos(i, i)
waitcnt(cnt + clkfreq/2)
setpos(-i, -i)
waitcnt(cnt + clkfreq/2)
ios.winset(1)
ios.curon
ios.printnl
ios.printnl
ios.print(string("Weiter */<Q>uit : "))
tast := ios.keywait
ios.screeninit(0,0)
if tast == "q" OR tast == "Q"
ios.stop
PRI setpos(x, y)
ios.wincursetx(x)
ios.wincursety(y)
printpos(x, y)
PRI printpos(x, y)
ios.printqchar(15)
waitcnt(cnt + clkfreq/3)
if x < 0
ios.curpos1
else
ios.printqchar(2)
ios.printchar("(")
ios.printdec(x)
ios.printchar(",")
ios.printdec(y)
ios.printchar(")")
if x < 0
ios.printqchar(3)
PRI screen2
ios.set_wscr(2)
ios.set_dscr(2)
ios.print(string("hier ist Screen 2"))
ios.printnl
' Window anzeigen, Scrolling
ios.print(string("definiere Window 2 abweichend zu Screen 1: (8, 2)-(30, 8)"))
ios.printnl
ios.windefine(2, 8, 2, 30, 8)
ios.print(string("weiter mit beliebiger Taste..."))
ios.keywait
ios.winset(2)
ios.winoframe
ios.printcls
ios.print(string("Ausgabe in Window 2"))
ios.printnl
ios.print(string("zur<00>ck zu Screen 1 mit beliebiger Taste..."))
ios.keywait
ios.set_wscr(1)
ios.set_dscr(1)
2011-11-11 17:41:02 +01:00
DAT
{{
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% TERMS OF USE: MIT License %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%$%
%Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation %
%files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, %
%modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software%
%is furnished to do so, subject to the following conditions: %
% %
%The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.%
% %
%THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE %
%WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR %
%COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, %
%ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
}}