Thought this might be of interest...
Thought this might be of interest...etc...
MODE 1920,1080,32 : OFF
Thought this might be of interest......
Parameters set for 1920 x 1080 monitors - alter as required.
Warning: Very fast graphic routine and might cause migraine - if
concerned simply increase delay (suggest 100000 instead of 1000).
Richards
Thought this might be of interest...
MODE 1920,1080,32 : OFF
x = 1920: y = 1080
REPEAT
REM Random direction
dir = RND(4)
IF dir = 1 THEN y = y + 10 : REM Up
IF dir = 2 THEN x = x + 10 : REM Right
IF dir = 3 THEN y = y - 10 : REM Down
IF dir = 4 THEN x = x - 10 : REM Left
REM Keep graphic on screen
IF x < 0 THEN x = 0
IF x > 3838 THEN x = 3838
IF y < 0 THEN y = 0
IF y > 2158 THEN y = 2158
GCOL RND(255),RND(255),RND(255)
CIRCLE FILL x, y, 20
FOR delay = 1 TO 1000 : NEXT delay
UNTIL FALSE
Parameters set for 1920 x 1080 monitors - alter as required.
Warning: Very fast graphic routine and might cause migraine - if
concerned simply increase delay (suggest 100000 instead of 1000).
Thought this might be of interest...
MODE 1920,1080,32 : OFF
x = 1920: y = 1080
REPEAT
REM Random direction
dir = RND(4)
IF dir = 1 THEN y = y + 10 : REM Up
IF dir = 2 THEN x = x + 10 : REM Right
IF dir = 3 THEN y = y - 10 : REM Down
IF dir = 4 THEN x = x - 10 : REM Left
REM Keep graphic on screen
IF x < 0 THEN x = 0
IF x > 3838 THEN x = 3838
IF y < 0 THEN y = 0
IF y > 2158 THEN y = 2158
GCOL RND(255),RND(255),RND(255)
CIRCLE FILL x, y, 20
FOR delay = 1 TO 1000 : NEXT delay
UNTIL FALSE
Parameters set for 1920 x 1080 monitors - alter as required.
Warning: Very fast graphic routine and might cause migraine - if
concerned simply increase delay (suggest 100000 instead of 1000).
In message <5c989287c3basura@invalid.addr.uk>
Richard Ashbery <basura@invalid.addr.uk> wrote:
Slight improvement by getting current the current screen mode
MODE MODE
REM get current screen mode
SYS"OS_ScreenMode",1 TO r0%,r1%
x%= r1%!4
y%= r1%!8
PRINT x%
PRINT y%
x=x%
y=y%
x%=(x%*2)-2
y%=(y%*2)-2
REM MODE 1360,768,32 : OFF
REM x = 1360: y = 768
REPEAT
REM Random direction
dir = RND(4)
IF dir = 1 THEN y = y + 10 : REM Up
IF dir = 2 THEN x = x + 10 : REM Right
IF dir = 3 THEN y = y - 10 : REM Down
IF dir = 4 THEN x = x - 10 : REM Left
REM Keep graphic on screen
IF x < 0 THEN x = 0
IF x > x% THEN x = x%
IF y < 0 THEN y = 0
IF y > y% THEN y = y%
GCOL RND(255),RND(255),RND(255)
CIRCLE FILL x, y, 20
FOR delay = 1 TO 1000 : NEXT delay
UNTIL FALSE
In article <5c989287c3basura@invalid.addr.uk>,
Richard Ashbery <basura@invalid.addr.uk> wrote:
Thought this might be of interest...
MODE 1920,1080,32 : OFFetc...
Okay, but why would this be of interest?
| Sysop: | Amessyroom |
|---|---|
| Location: | Fayetteville, NC |
| Users: | 54 |
| Nodes: | 6 (0 / 6) |
| Uptime: | 12:29:11 |
| Calls: | 742 |
| Files: | 1,218 |
| D/L today: |
2 files (2,024K bytes) |
| Messages: | 183,176 |
| Posted today: | 1 |