Original author: Bob Albrecht Description: 23 matches is one version of popular game where idea is to remove items from a table. In this case, there is 23 matches at table. You can remove one, two or…
If Planet1 is x1 = 20, y1 = 20, z1 = 100 and Planet2 is x2 = 40, y2 = 40, z2 = 200 3D distance=Sqr((x1-x2)^2 +(y1-y2)^2+(z1-z2)^2) 2D distance = Sqr( (x1-x2)^2 + (y1-y2)^2 )
'Demostrates how to calculate line of sight and display visible and non visible tiles 'Richard D. Clark 'Public Domain 'Key consts Const xk = Chr$(255) Const key_up = xk + "H" Const key_dn = xk + "P"…
About ASCII/ANSI Art: Just what is ASCII Art? The first thing to come to mind might be something you've seen on a computer. But that's actually an evolution of something much older than the computer…
by Chris Warren-Smith The SmallBASIC project commenced in May 2000 by Nicholas Christopoulos and was initially designed for the Palm Pilot. The 'Small' prefix in the project name reflects the…
Introduction As you might have noticed, if you've search the internet for ASCII and Text related development projects, applications, games, tools and utilities, You might be able to find them, however…
Original author: Bill Palmby. ORIGINAL:Original game did randomize three cards. Then two first cards was revealed to player while third card still hided. After this, player had to choose do he believe…
Ada for Linux Barnes ADA 95 website Very good ADA 95 website for ADA beginners and even for bit more experienced ones. Includes so much things about ADA, that its impossible to mention it all in here….
WALKTHROUGH FOR COLOSSAL CAVES ADVENTURE by Sean L. Palmer released to the public domain This is a walkthrough for the 350-point version of the Colossal Caves Adventure by Crowther and Woods. It…
To boldly go… In 1971, Mike Mayfield probably didn't know what he was starting when he wrote his very first Star Trek game. In the course of the following year, he had already ported it to Hewlett…
INTRODUCTION: Welcome to the Applications section. Simply put, whatever is not a game is an Application. That includes specific business management tools, utility programs, decision making software,…
Original post in FreeBASIC Forums ''There's a code challenge to code the best ascii demo effect in Freebasic going on over at the dbf/gvy forum, so I made a 3D starfield out of ascii, it's the first…
Just save this source as normal .html file in your computer and open it with browser. You can check online version of this demo in here. html head title Web Demo! /title script…
I give all honor for modern games. They includes 3D effects that has never been seen before, and best part of these games is that they advance all the time. Specs that modern day computers offers for…
Randomize Timer '' ASCII CUBE '' '' '' Code : Hezad (Hezad0 at Gmail dot com) '' '' '' Const _255 = 1/255 Const MAX_Z = 50 Redim Shared As Single ZBuffer(79*25) …
About ASCII Art: About ASCII Art ASCII Art Academy - Articles and Tutorials by Roy Sac Famous and known ASCII Artist's: Joan G Stark aka jgs llizard aka ejm Website previews: Chris.Com Website…
Nice small code lists all ASCII chars on screen in beautifull order. 'Graphic screen ascii chart for low and high ascii chars' 'Richard D. Clark' 'Public Domain…
Generates a tunnel effect. 'Ascii Chladni Tunnel option explicit #define chs 64 #define tw 160 #define th 128 'Jofers Type Pixel_Color B As Ubyte G As Ubyte R As Ubyte A As Ubyte…
Here are chladni patterns in glorious ASCII. 'Chladni Fractalish Demo3 'http://local.wasp.uwa.edu.au/~pbourke/modelling/chladni/ 'Thanks to Taj for the idea and Tan function suggestion 'Jim, Rbraz…