Search found 199 matches
- Wed Jan 06, 2021 11:55 pm
- Forum: Software & Programming
- Topic: CROBOTS
- Replies: 0
- Views: 159
CROBOTS
As Wikipedia says "Crobots is a programming game released for the first time by Tom Poindexter in December, 1985 as Shareware.[1] The robots are controlled by a program written in a stripped-down version of C. The robot's mission is to seek out and destroy other robots, each running different p...
- Tue Jan 05, 2021 6:59 pm
- Forum: Software & Programming
- Topic: Issue with Curses and C68
- Replies: 7
- Views: 521
Re: Issue with Curses and C68
The final bit of this saga is that in the end, I just got rid of Curses. The two main calls were move() and addch(). I just wrote wrappers for each one of these. I removed the other curses calls, esp. the refresh() calls and got things working that way. The oddest thing that was the clear() (like CL...
- Sat Jan 02, 2021 6:09 pm
- Forum: Software & Programming
- Topic: Issue with Curses and C68
- Replies: 7
- Views: 521
Re: Issue with Curses and C68
I've made some more progress in the program that I am porting. I got beyond a C68 compile issue just by adding some code back in. Now I'm hitting an issue of the display. Curses does not seem to be clearing the screen when it should. The printw statements are initially working, but then they start g...
- Fri Jan 01, 2021 11:20 pm
- Forum: Software & Programming
- Topic: The comp.sys.sinclair Crap Games Competition 2021: 25th edition extravaganza!
- Replies: 9
- Views: 556
Re: The comp.sys.sinclair Crap Games Competition 2021: 25th edition extravaganza!
I was thinking of doing a ZX81 game, but it would require the sz81 emulator. As far as I know, it is the only one that supports saving zx81 memory to/from disk. But the rules only mention using EightyOne, so scratch that idea.
Tim
Tim
- Fri Jan 01, 2021 11:14 pm
- Forum: Help for New Users
- Topic: Any BASIC Books on the QL?
- Replies: 13
- Views: 900
Re: Any BASIC Books on the QL?
IIRC, there might have been some SuperBasic tutorials in a number of magazines, such as QL User, QL World, QL today, etc. The first two are available on the Internet Archive. QL Today is available from "The Distribution", a large download from Urs Konig.
Tim
Tim
- Mon Dec 21, 2020 3:37 am
- Forum: Software & Programming
- Topic: as68 error message
- Replies: 4
- Views: 241
Re: as68 error message
Looking at the as68 source code, there are a couple of ways to get this message: if ( havebyte == 1 && rval != orval ) if ( rval != R_ABS && rval != R_FIRST ) if ( rval != R_ABS && rval != R_FIRST ) None of those look obvious as to what the problem is. Hopefully someone else ...
- Mon Dec 21, 2020 3:15 am
- Forum: Software & Programming
- Topic: as68 error message
- Replies: 4
- Views: 241
as68 error message
As I'm converting all non-curses print calls to curses one, I've hit a snag on the program that I am porting. Everything was compiling fine with Make. I found a few minor issues with main_c. I fixed the last error and now I get this message: as68 main_s main_o jas: (bytes not separately relocatable)...
- Sat Dec 19, 2020 4:18 pm
- Forum: Software & Programming
- Topic: Issue with Curses and C68
- Replies: 7
- Views: 521
Re: Issue with Curses and C68
Tofro, Thanks for the reply. I've not done any curses programming on Unix/Linux before, so I've not read up on any caveats. I have not tried to compile the program on LInux to see if it is a pure curses issue. The DOS version uses it's own display routines and not curses. If it is a curses issue, I ...
- Sat Dec 19, 2020 5:37 am
- Forum: Software & Programming
- Topic: Issue with Curses and C68
- Replies: 7
- Views: 521
Re: Issue with Curses and C68
Well the example text did not show as I wanted in my posting, Let me try it this way (using dots instead of spaces).
text
......text
............text
Tim
text
......text
............text
Tim
- Sat Dec 19, 2020 5:35 am
- Forum: Software & Programming
- Topic: Issue with Curses and C68
- Replies: 7
- Views: 521
Issue with Curses and C68
I'm porting an old program from Unix to the QL. It compiles and runs, but the text output has an issue. The part that uses curses seems to run fine. When printing text, the program uses "fprintf(stderr,"text \n"); ". The output on the screen looks like this: text text text as if ...