Search found 126 matches
- Tue Aug 27, 2024 2:39 am
- Forum: C/C++
- Topic: Express BASIC - an interpreter in C
- Replies: 22
- Views: 21906
Update!
Update time! This one is later than expected. A server migration set us back. Fixes and new features: - Added RND() to supplement RND - LOCATE command was one position off in x and y in Windows edition - EB was crashing when there were two commas at the end of a print statement Ex. PRINT "hi&qu...
- Mon Aug 26, 2024 11:36 pm
- Forum: C/C++
- Topic: Math Quiz for Atari ST (Pure C)
- Replies: 0
- Views: 64
Math Quiz for Atari ST (Pure C)
Now that we're starting to mess around with Pure C programming on the Atari ST, it felt like a good idea to make a few little games for the platform. Nothing serious, just some examples. For starters, I have this Math Quiz game taken from my Express BASIC example program. Download it here: http://ww...
- Mon Aug 26, 2024 8:54 pm
- Forum: C/C++
- Topic: Express Calculator (Linux, Windows, DOS, Atari ST)
- Replies: 1
- Views: 4934
Re: Express Calculator
Update!
As an experiment, I tried compiling Express Calculator with Pure C on the Atari ST. I also took the opportunity to update it a bit with some recent progress from Express BASIC.
A little tweaking and I got it working!
The download will now include an Atari ST edition of Express Calculator.
As an experiment, I tried compiling Express Calculator with Pure C on the Atari ST. I also took the opportunity to update it a bit with some recent progress from Express BASIC.
A little tweaking and I got it working!
The download will now include an Atari ST edition of Express Calculator.
- Mon Aug 26, 2024 8:49 pm
- Forum: PHP/SQL
- Topic: Spellbound by Darkness Online MMORPG
- Replies: 2
- Views: 8596
Server Migration
The past few weeks have been difficult. We went through a server migration (still working things out). All of my websites went down for a few days between waiting for the migration and getting the DNS reconfigured. While coming back online, some of them had server configuration issues that needed to...
- Sun Aug 18, 2024 6:02 pm
- Forum: PHP/SQL
- Topic: Spellbound by Darkness Online MMORPG
- Replies: 2
- Views: 8596
Re: Spellbound by Darkness Online MMORPG
Update! This game was released in 2020 and had some initial success. Unfortunately, it wasn't nearly as successful as my previous online game form around 2015. The previous game called Lands of Chaos Online had over 3500 player accounts and an average of 20 to 30 online at any time. SBBD has only ov...
- Tue Aug 13, 2024 5:35 pm
- Forum: Blitz Research
- Topic: One Click Network
- Replies: 0
- Views: 1207
One Click Network
One Click Network by Gemino Smothers This setup contains a set of GUI client and server applications. The first is called One Click Server and the other is One Click Client. The server is a networking multi tool for Windows that operates as a telnet chat room. Telnet clients connect to the server a...
- Tue Aug 13, 2024 5:18 pm
- Forum: C/C++
- Topic: Express BASIC - an interpreter in C
- Replies: 22
- Views: 21906
Re: Express BASIC - an interpreter in C
Found a few more bugs and glitches. Will be working on fixing them these next few days. One problem was the LOCATE is displaying 1 off in Windows. Another was a few missing symbol values for the new functions SHR and SHL in the expression evaluator. We really just need more time for testing. There c...
- Sat Aug 10, 2024 10:51 pm
- Forum: C/C++
- Topic: Express BASIC - an interpreter in C
- Replies: 22
- Views: 21906
Re: Express BASIC - an interpreter in C
Bleeding edge update! Before I get into the update, let me talk a bit about the conditions.. The past weeks have been rough here in the Arizona desert. We're powered by solar and generator. A few 100 watt panels, 2k watt generator, and three Jackery power stations. I put in a window AC for the first...
- Mon Jul 08, 2024 7:44 am
- Forum: C/C++
- Topic: Express BASIC - an interpreter in C
- Replies: 22
- Views: 21906
Re: Express BASIC - an interpreter in C
Update! Some issues with file and string handling are fixed. A string array called $() similarly to @() has been added. There's more error handling and messages. For example: "String parsing operation out of bounds" "Attempted input past end of file" Usually BASIC languages will ...
- Mon Jul 08, 2024 7:29 am
- Forum: Express BASIC Archive
- Topic: HTM Parser
- Replies: 0
- Views: 5331
HTM Parser
HTM Parser Converts HTM/HTML files to plain text. 1 REM HTM Parser by Gemino Smothers 2 REM Written in Express BASIC 10 lf$ = CHR$(10): INPUT "*.htm: ", htmfile$: GOSUB 1000: END 1000 PRINT "Parsing: "; htmfile$ 1010 OPEN "I", #1, htmfile$ 1020 OPEN "O", #2, ...