• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 11:05
CEST 17:05
KST 00:05
  • 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
Serral wins EWC 202543Tournament Spotlight: FEL Cracow 202510Power Rank - Esports World Cup 202580RSL Season 1 - Final Week9[ASL19] Finals Recap: Standing Tall15
Community News
Weekly Cups (Jul 28-Aug 3): herO doubles up6LiuLi Cup - August 2025 Tournaments3[BSL 2025] H2 - Team Wars, Weeklies & SB Ladder10EWC 2025 - Replay Pack4Google Play ASL (Season 20) Announced58
StarCraft 2
General
Weekly Cups (Jul 28-Aug 3): herO doubles up Clem Interview: "PvT is a bit insane right now" Serral wins EWC 2025 TL Team Map Contest #5: Presented by Monster Energy Would you prefer the game to be balanced around top-tier pro level or average pro level?
Tourneys
Global Tourney for College Students in September Sparkling Tuna Cup - Weekly Open Tournament WardiTV Mondays $5,000 WardiTV Summer Championship 2025 LiuLi Cup - August 2025 Tournaments
Strategy
Custom Maps
External Content
Mutation # 485 Death from Below Mutation # 484 Magnetic Pull Mutation #239 Bad Weather Mutation # 483 Kill Bot Wars
Brood War
General
BW General Discussion Help, I can't log into staredit.net How do the new Battle.net ranks translate? Which top zerg/toss will fail in qualifiers? Google Play ASL (Season 20) Announced
Tourneys
[CSLPRO] It's CSLAN Season! - Last Chance [Megathread] Daily Proleagues [ASL20] Online Qualifiers Day 2 Cosmonarchy Pro Showmatches
Strategy
Simple Questions, Simple Answers [G] Mineral Boosting Muta micro map competition Does 1 second matter in StarCraft?
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Total Annihilation Server - TAForever Beyond All Reason [MMORPG] Tree of Savior (Successor of Ragnarok)
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
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
European Politico-economics QA Mega-thread US Politics Mega-thread Things Aren’t Peaceful in Palestine Bitcoin discussion thread 9/11 Anniversary
Fan Clubs
INnoVation Fan Club SKT1 Classic Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread [\m/] Heavy Metal Thread Korean Music Discussion
Sports
2024 - 2025 Football Thread Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
Gtx660 graphics card replacement Installation of Windows 10 suck at "just a moment" Computer Build, Upgrade & Buying Resource Thread
TL Community
TeamLiquid Team Shirt On Sale The Automated Ban List
Blogs
[Girl blog} My fema…
artosisisthebest
Sharpening the Filtration…
frozenclaw
ASL S20 English Commentary…
namkraft
The Link Between Fitness and…
TrAiDoS
momentary artworks from des…
tankgirl
from making sc maps to makin…
Husyelt
Customize Sidebar...

Website Feedback

Closed Threads



Active: 826 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 States2801 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
Stormgate Nexus
14:00
Stormgate Launch Days
BeoMulf221
TKL 194
IndyStarCraft 179
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Reynor 360
SpeCial 81
StarCraft: Brood War
Britney 50665
Bisu 3971
Shuttle 2425
Mini 930
Soulkey 575
ggaemo 463
Snow 365
actioN 350
ZerO 277
Soma 221
[ Show more ]
Hyuk 197
sSak 157
Leta 91
ToSsGirL 76
sorry 74
Nal_rA 57
Sharp 56
Aegong 40
soO 39
[sc1f]eonzerg 33
sas.Sziky 29
zelot 27
scan(afreeca) 20
Rock 17
ajuk12(nOOB) 17
Sacsri 16
Terrorterran 13
Backho 12
IntoTheRainbow 10
SilentControl 9
JulyZerg 8
ivOry 4
Stormgate
BeoMulf221
TKL 194
IndyStarCraft 179
Dota 2
Gorgc5777
Dendi1606
XcaliburYe381
Counter-Strike
pashabiceps504
flusha368
byalli292
kRYSTAL_56
Heroes of the Storm
XaKoH 112
Other Games
gofns1900
hiko891
Beastyqt480
crisheroes383
KnowMe370
Hui .365
RotterdaM261
DeMusliM253
Fuzer 212
ArmadaUGS92
QueenE71
ZerO(Twitch)18
Trikslyr14
Organizations
StarCraft 2
WardiTV1060
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 17 non-featured ]
StarCraft 2
• StrangeGG 84
• poizon28 23
• davetesta16
• Kozan
• AfreecaTV YouTube
• intothetv
• sooper7s
• IndyKCrew
• LaughNgamezSOOP
• Migwel
StarCraft: Brood War
• FirePhoenix10
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• WagamamaTV791
League of Legends
• Nemesis2797
• Jankos1054
Upcoming Events
uThermal 2v2 Circuit
55m
DaveTesta Events
8h 55m
The PondCast
18h 55m
WardiTV Summer Champion…
19h 55m
Replay Cast
1d 8h
LiuLi Cup
1d 19h
uThermal 2v2 Circuit
1d 23h
RSL Revival
2 days
RSL Revival
2 days
uThermal 2v2 Circuit
2 days
[ Show More ]
CSO Cup
3 days
Sparkling Tuna Cup
3 days
uThermal 2v2 Circuit
3 days
Wardi Open
4 days
RotterdaM Event
5 days
RSL Revival
6 days
Liquipedia Results

Completed

ASL Season 20: Qualifier #2
FEL Cracow 2025
CC Div. A S7

Ongoing

Copa Latinoamericana 4
Jiahua Invitational
BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Qualifiers
HCC Europe
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025

Upcoming

ASL Season 20
CSLPRO Chat StarLAN 3
BSL Season 21
BSL 21 Team A
RSL Revival: Season 2
Maestros of the Game
SEL Season 2 Championship
WardiTV Summer 2025
uThermal 2v2 Main Event
Thunderpick World Champ.
MESA Nomadic Masters Fall
CS Asia Championships 2025
Roobet Cup 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 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.