• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 21:29
CET 03:29
KST 11:29
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
RSL Season 3 - Playoffs Preview0RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10
Community News
RSL Season 3: RO16 results & RO8 bracket12Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge1[TLMC] Fall/Winter 2025 Ladder Map Rotation14Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA12
StarCraft 2
General
RSL Season 3: RO16 results & RO8 bracket SC: Evo Complete - Ranked Ladder OPEN ALPHA RSL Season 3 - Playoffs Preview Mech is the composition that needs teleportation t GM / Master map hacker and general hacking and cheating thread
Tourneys
RSL Revival: Season 3 $5,000+ WardiTV 2025 Championship StarCraft Evolution League (SC Evo Biweekly) Constellation Cup - Main Event - Stellar Fest 2025 RSL Offline Finals Dates + Ticket Sales!
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 500 Fright night Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened
Brood War
General
Data analysis on 70 million replays A cwal.gg Extension - Easily keep track of anyone soO on: FanTaSy's Potential Return to StarCraft [ASL20] Ask the mapmakers — Drop your questions FlaSh on: Biggest Problem With SnOw's Playstyle
Tourneys
[Megathread] Daily Proleagues Small VOD Thread 2.0 [BSL21] GosuLeague T1 Ro16 - Tue & Thu 22:00 CET [BSL21] RO16 Tie Breaker - Group B - Sun 21:00 CET
Strategy
Current Meta Game Theory for Starcraft How to stay on top of macro? PvZ map balance
Other Games
General Games
Stormgate/Frost Giant Megathread EVE Corporation Path of Exile [Game] Osu! Should offensive tower rushing be viable in RTS games?
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Mafia Game Mode Feedback/Ideas
Community
General
Russo-Ukrainian War Thread The Games Industry And ATVI US Politics Mega-thread Things Aren’t Peaceful in Palestine About SC2SEA.COM
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread Korean Music Discussion
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
TL Community
The Automated Ban List
Blogs
The Health Impact of Joining…
TrAiDoS
Dyadica Evangelium — Chapt…
Hildegard
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2297 users

Game Programming: Ascii Games

Blogs > CecilSunkure
Post a Reply
1 2 3 Next All
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
Last Edited: 2012-07-05 18:48:28
July 03 2012 22:31 GMT
#1


I've made a couple different posts about game programming, though everyone that read them seemed to not really know how to piece everything together to finally get off the ground writing their own game within the Windows Console.

I've been creating a series of posts back at my blog about creating a Window's console game from scratch in C. This post will act as a culmination of many different posts throughout my blog in the form of an open source game engine called AsciiEngine.

AsciiEngine is a free open source game engine for Windows XP, Vista, and Win7 that allows the user to easily create and display images within a Windows console. The engine also automates the tedious task of customizing aspects of the console, such as a font or palette color. By using AsciiEngine, users can easily construct interactive programs (games!) without the overhead of setting up all of the various system components required to run a game within the Windows console.

AsciiEngine actually runs within the Windows console. No GDI or anything, just displaying colored text within the console! This makes for a very interesting way to create games. I feel coding a game in the Windows console is a wonderful way for beginning programmers to take off in creating something very cool without using black box libraries; if you make a game in the console on your own you really should understand everything that's going on in your program. AsciiEngine intends to provide a good reference point for anyone trying to make something from scratch on their own, as well as a jumping off point for others who don't want to necessarily learn all of what's going on to get things up and running in the Console.


[image loading]
Screenshot of the AsciiEngine demo. Pressing enter pastes
sun images onto random locations.


Features include:
  • Game loop integrated into Game State Manager via function pointers
  • Game State Manager
  • Simple framerate controller
  • Various console related functions for easy customization of the console window
  • Complete graphics function set for drawing 2D images
  • Input template complete for simple keystroke detection
  • Simple image format that allows for variable size
  • Integrated hash table for storing images
  • Extremely simple creation/deletion of images
  • Implementation of my simple 2D collision library
  • Implementation of my simple 2D vector library
  • Highly organised object manager using the factory pattern
    • Allows for easy creation/handling/deletion of game objects
    • Incredibly simple to create new object types

I can recall a time in the past when I first started programming. A lot of my troubles stemmed from figuring out how all the basic programming tools (loops, functions, etc.) could fit together to construct an actual game. Hopefully my efforts here can help anyone else in the same position. I know there's a lot of people that would love to know how to code their own games, but feel like it's hard to learn in a practical way.

I really loved making my own Ascii game, and would be really excited to see anything anyone makes





Here's some screenshots of a game I made when I didn't know hardly anything about programming. This game was made my first semester of college, it's called TerraNisi. It wasn't actually made with AsciiEngine, but it'd be incredibly simple to make it within AsciiEngine:

[image loading]
Intro picture!

[image loading]
Screenshot of some gameplay

[image loading]
Only the most cutest and funny villain evar.




Link to TerraNisi: LINK
Link to AsciiEngine Info: LINK
Link to AsciiEngine: LINK




Feel free to email me at: r.gaul@digipen.edu if you have any questions about making a game. For some reason getting other people interested in game programming is just so fun, so don't be shy in asking for help with programming or anything else! I'm also completely open to any criticism/suggestions on the project.

***
fabiano
Profile Blog Joined August 2009
Brazil4644 Posts
July 03 2012 22:50 GMT
#2
This is beautiful. I'll check it out for sure, sounds loads of fun :D
"When the geyser died, a probe came out" - SirJolt
Mossen
Profile Blog Joined December 2010
43 Posts
Last Edited: 2012-07-03 22:54:27
July 03 2012 22:54 GMT
#3
So, you wrote this? Nice work! How many colors does it support? And what is the max resolution? Also, does it support text input, like if you wanted to have a picture, and the user can also enter text at a prompt for commands?
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
Last Edited: 2012-07-03 23:42:34
July 03 2012 23:04 GMT
#4
On July 04 2012 07:50 fabiano wrote:
This is beautiful. I'll check it out for sure, sounds loads of fun :D

Hey sweet! Do post back here to show off what you've done

On July 04 2012 07:54 Mossen wrote:
So, you wrote this? Nice work! How many colors does it support? And what is the max resolution? Also, does it support text input, like if you wanted to have a picture, and the user can also enter text at a prompt for commands?

Yes I did write this. It supports quite a few colors by default, though you can only have 16 colors active in your palette. Luckily I've figured out (with help from programmers unkown on the internet) how to set a custom color palette.

There's no functionality within AsciiEngine for command line input currently, but it'd be very easy to create. I wrote a post on creating a custom scripting language, you can pretty easily write your own parser for input commands. The functionality to show what the user is writing on the screen would also be really easy to make as well -- I put something like this into TerraNisi, but it only supported one character at a time for simplicity.

Edit: Any resolution.
EsX_Raptor
Profile Blog Joined February 2008
United States2802 Posts
July 03 2012 23:06 GMT
#5
You should try reverse-engineering Dwarf Fortress.
DRTnOOber
Profile Blog Joined February 2012
New Zealand476 Posts
July 03 2012 23:09 GMT
#6
It certainly is a unique way to develop games. The issue I have is that although you can create some pretty fun games this way, there isn't really a market for sharing or selling them. I don't know why but that gets to me when I'm making a game; unless I know it could potentially go somewhere I find it hard to invest the time.

I've been finding that Android is actually a really nice platform for creating beginner games at the moment. The only tricky bit is setting up your development environment but there is a full tutorial online on how to set up Eclipse IDE for Android development: http://developer.android.com/sdk/installing/installing-adt.html

The game engine I've been using is called AndEngine and is designed for 2D graphics only: http://www.andengine.org/

And if you're into 3D graphics there's a nice free engine called JPCT-AE: http://www.jpct.net/jpct-ae/

At the end of the day you need to understand programming and how to structure a program in order to make games from scratch. It's a fallacy that anyone can download some tools and make a game... it just doesn't work that way.

In saying that your game looks awesome Reminds me of the past. Very quirky idea.
But I'm off creep... and so I slow down, what are hellions doing here? I don't belong here...
Mstring
Profile Joined September 2011
Australia510 Posts
July 04 2012 00:34 GMT
#7
Your artwork is impressive. You have a gift.

No console for me though, I'm an OpenGL/GLFW convert XD
Tiegrr
Profile Blog Joined September 2010
United States607 Posts
July 04 2012 01:58 GMT
#8
I <3 Calcifer! :3
fire_brand
Profile Blog Joined October 2009
Canada1123 Posts
July 04 2012 03:13 GMT
#9
Let's make games together cecil. I need someone with ideas and programming knowledge to demand art from me.
Random player, pixel enthusiast, crappy illustrator, offlane/support
NB
Profile Blog Joined February 2010
Netherlands12045 Posts
July 04 2012 07:13 GMT
#10
the last picture looks like a portrait in Mario N64 .
Im daed. Follow me @TL_NB
Tobberoth
Profile Joined August 2010
Sweden6375 Posts
July 04 2012 08:29 GMT
#11
Cool and all, but I'm surprised you say that writing console based games is a good start for beginners because they don't have to use black box libraries, yet the point of your post is to talk about your black box library, AsciiEngine. I mean, in the same sense that AsciiEngine sets up a lot of boring stuff for you so you can focus on making the game, so does SDL, difference being that SDL supports "proper graphics". I would think most beginner developers would get more benefit, and have more fun, makind SDL games over Ascii games.

Personally I feel beginner programmers who want to become more advanced should generally not use premade engines but instead learn to make their own since that gives a completely different perspective on what is possible. To a reasonable degree of course, using SDL or your asciiengine is fine since they help with background annoying stuff, while using stuff like Unity is, IMO, abstracting the developer too far away from the groundwork.
Talin
Profile Blog Joined September 2010
Montenegro10532 Posts
July 04 2012 09:50 GMT
#12
On July 04 2012 17:29 Tobberoth wrote:
Cool and all, but I'm surprised you say that writing console based games is a good start for beginners because they don't have to use black box libraries, yet the point of your post is to talk about your black box library, AsciiEngine. I mean, in the same sense that AsciiEngine sets up a lot of boring stuff for you so you can focus on making the game, so does SDL, difference being that SDL supports "proper graphics". I would think most beginner developers would get more benefit, and have more fun, makind SDL games over Ascii games.


Going by the same reasoning I'd recommend Pygame over SDL for even more fun (and rapid) development. It's basically an SDL wrapper, but you get the advantage of using Python which is as accessible as programming languages get.
Tobberoth
Profile Joined August 2010
Sweden6375 Posts
July 04 2012 10:01 GMT
#13
On July 04 2012 18:50 Talin wrote:
Show nested quote +
On July 04 2012 17:29 Tobberoth wrote:
Cool and all, but I'm surprised you say that writing console based games is a good start for beginners because they don't have to use black box libraries, yet the point of your post is to talk about your black box library, AsciiEngine. I mean, in the same sense that AsciiEngine sets up a lot of boring stuff for you so you can focus on making the game, so does SDL, difference being that SDL supports "proper graphics". I would think most beginner developers would get more benefit, and have more fun, makind SDL games over Ascii games.


Going by the same reasoning I'd recommend Pygame over SDL for even more fun (and rapid) development. It's basically an SDL wrapper, but you get the advantage of using Python which is as accessible as programming languages get.

Well yeah, that's what I meant. If you're a beginning programmer who want to make games, going to C is probably not a good idea. There are SDL wrappers for all languages imaginable, so it's really easy to get started with.
Chef
Profile Blog Joined August 2005
10810 Posts
July 04 2012 12:23 GMT
#14
Does this mean Howl's Moving Castle is just a fanfiction of your game?
LEGEND!! LEGEND!!
Random()
Profile Blog Joined August 2004
Kyrgyz Republic1462 Posts
Last Edited: 2012-07-04 14:45:15
July 04 2012 14:40 GMT
#15
On July 04 2012 17:29 Tobberoth wrote:
Cool and all, but I'm surprised you say that writing console based games is a good start for beginners because they don't have to use black box libraries, yet the point of your post is to talk about your black box library, AsciiEngine. I mean, in the same sense that AsciiEngine sets up a lot of boring stuff for you so you can focus on making the game, so does SDL, difference being that SDL supports "proper graphics". I would think most beginner developers would get more benefit, and have more fun, makind SDL games over Ascii games.

Personally I feel beginner programmers who want to become more advanced should generally not use premade engines but instead learn to make their own since that gives a completely different perspective on what is possible. To a reasonable degree of course, using SDL or your asciiengine is fine since they help with background annoying stuff, while using stuff like Unity is, IMO, abstracting the developer too far away from the groundwork.


That is what I was thinking when I first decided that I'd like to make games, and well, I have spent A LOT of time building my own 3D engine, and although that indeed gave me a better understanding of how those things work, that has not helped me to actually make a game and obviously it really sucked compared to OGRE or Unity :-)

I think that as long as you understand what someone's library is doing, not necessarily how, that is sufficient. That is if your goal is to make a working product, and not become a "better programmer" :-)
Random()
Profile Blog Joined August 2004
Kyrgyz Republic1462 Posts
July 04 2012 14:48 GMT
#16
I wonder if it is possible to gather a group of enthusiasts here on TL and make a funny little game project...
Talin
Profile Blog Joined September 2010
Montenegro10532 Posts
July 04 2012 15:10 GMT
#17
On July 04 2012 23:48 Random() wrote:
I wonder if it is possible to gather a group of enthusiasts here on TL and make a funny little game project...


To gather a group? Probably. To actually get something finished? Much less likely.

But it would be a fun experience nonetheless (I'd be up for it personally!).
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
July 04 2012 15:43 GMT
#18
On July 04 2012 17:29 Tobberoth wrote:
Cool and all, but I'm surprised you say that writing console based games is a good start for beginners because they don't have to use black box libraries, yet the point of your post is to talk about your black box library, AsciiEngine. I mean, in the same sense that AsciiEngine sets up a lot of boring stuff for you so you can focus on making the game, so does SDL, difference being that SDL supports "proper graphics". I would think most beginner developers would get more benefit, and have more fun, makind SDL games over Ascii games.

That does make sense, but since this is open source if someone wanted, they could use it simply as a reference point for starting their own project. That's the point I was trying to make, if that makes any sense.
imPermanenCe
Profile Joined July 2011
Netherlands595 Posts
July 04 2012 17:56 GMT
#19
On July 04 2012 12:13 fire_brand wrote:
Let's make games together cecil. I need someone with ideas and programming knowledge to demand art from me.

You may make art for my games :D
Micro at its best is like an elegant dance between two people trying to achieve a similar end.
memcpy
Profile Blog Joined April 2010
United States459 Posts
July 05 2012 05:22 GMT
#20
Nice work. Do you use an in game editor to draw art?
1 2 3 Next All
Please log in or register to reply.
Live Events Refresh
Next event in 5h 1m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RuFF_SC2 233
StarCraft: Brood War
PianO 59
Sexy 27
Leta 21
NaDa 17
Noble 9
Dota 2
NeuroSwarm79
LuMiX1
League of Legends
JimRising 533
Super Smash Bros
C9.Mang0306
Other Games
summit1g14637
fl0m669
WinterStarcraft418
ViBE169
Trikslyr72
ToD17
Organizations
Other Games
gamesdonequick831
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 17 non-featured ]
StarCraft 2
• Hupsaiya 112
• davetesta24
• IndyKCrew
• sooper7s
• AfreecaTV YouTube
• Migwel
• intothetv
• LaughNgamezSOOP
• Kozan
StarCraft: Brood War
• Azhi_Dahaki20
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota22047
League of Legends
• Doublelift5106
• Rush829
Other Games
• Scarra1188
Upcoming Events
RSL Revival
5h 1m
Classic vs MaxPax
SHIN vs Reynor
herO vs Maru
WardiTV Korean Royale
9h 31m
SC Evo League
10h 1m
IPSL
14h 31m
Julia vs Artosis
JDConan vs DragOn
OSC
14h 31m
BSL 21
17h 31m
TerrOr vs Aeternum
HBO vs Kyrie
RSL Revival
1d 5h
Wardi Open
1d 11h
IPSL
1d 17h
StRyKeR vs OldBoy
Sziky vs Tarson
BSL 21
1d 17h
StRyKeR vs Artosis
OyAji vs KameZerg
[ Show More ]
OSC
1d 20h
OSC
2 days
Monday Night Weeklies
2 days
OSC
2 days
Wardi Open
3 days
Replay Cast
4 days
Wardi Open
4 days
Tenacious Turtle Tussle
4 days
The PondCast
5 days
Replay Cast
5 days
LAN Event
6 days
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2025-11-16
Stellar Fest: Constellation Cup
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
CSCL: Masked Kings S3
SLON Tour Season 2
RSL Revival: Season 3
META Madness #9
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.