Page 1 of 1

Anyone have any ideas for a console application

Posted: Fri Nov 19, 2010 1:15 pm
by richred20
i just want to make something other than calculators and random text adventures

Re: Anyone have any ideas for a console application

Posted: Fri Nov 19, 2010 4:42 pm
by Ginto8
learn SDL and go graphical!

Re: Anyone have any ideas for a console application

Posted: Fri Nov 19, 2010 7:02 pm
by optLog
One application that wouldn't require a gui but would still be useful would be a simple image format converter. you could have it so that the app takes a 24 bit bitmap (or any other image formats you know how to work with) and outputs a 32 bit image. This is useful for people who need an alpha channel for their images but are stuck with imaging software like paint. Doing this would give you a useful app as well as exposure to how image data is stored and how to manipulate it.

Re: Anyone have any ideas for a console application

Posted: Fri Nov 19, 2010 7:08 pm
by davidthefat
An encryption algorithm? Or perhaps a sorting algorithm.

Re: Anyone have any ideas for a console application

Posted: Fri Nov 19, 2010 7:12 pm
by ajtgarber
You could try making Skynet

Re: Anyone have any ideas for a console application

Posted: Fri Nov 19, 2010 8:54 pm
by Arce
Do what I did when I was 12 and asked the same thing:

Make a porn encryptor.

Re: Anyone have any ideas for a console application

Posted: Sat Nov 20, 2010 12:05 am
by dandymcgee
richred20 wrote:i just want to make something other than calculators and random text adventures
Like what? We need more to work with than "I want to make something." What sorts of things interest you the most? Motivation is always easiest to find while working on a project you want to work on.

Re: Anyone have any ideas for a console application

Posted: Sat Nov 20, 2010 12:06 am
by dandymcgee
dandymcgee wrote:
richred20 wrote:i just want to make something other than calculators and random text adventures
Like what? We need more to work with than "I want to make something." What sorts of things interest you the most?

Motivation is always easiest to find with projects you have a passion for.

Re: Anyone have any ideas for a console application

Posted: Sat Nov 20, 2010 2:19 am
by JGorard159
Make an ASCII cartoon, because they're always fun.

Or, better still, make some software to convert a regular .avi video into an ASCII cartoon...

Re: Anyone have any ideas for a console application

Posted: Sat Nov 20, 2010 12:19 pm
by Trask
ajtgarber wrote:You could try making Skynet
#include skynet.h

Re: Anyone have any ideas for a console application

Posted: Sat Nov 20, 2010 7:48 pm
by richred20
Im really just want something to do before i go into graphics anything would be nice but i haven't had any work with a gui yet.

Re: Anyone have any ideas for a console application

Posted: Sun Nov 21, 2010 6:08 am
by JGorard159
If you really don't want to go graphical using SDL or something similar (which I would recommend at this point), and you're bored of making text adventures, why don't you try something in between? Maybe code a game which is in a console window, where the player is physically denoted with an asterisk; you give the player text commands like 'walk forward' or 'turn left' and he moves inside the console. You could even try and make walls denoted with '|'s, and the player has to avoid them. That might be quite cool.

Re: Anyone have any ideas for a console application

Posted: Sun Nov 21, 2010 9:58 am
by wearymemory
JGorard159 wrote:If you really don't want to go graphical using SDL or something similar (which I would recommend at this point).
What gives you—or anyone for that matter—the impression that the OP is prepared to advance into graphical programming? Have you considered the OP's previous posts to ensure that the OP is not lacking in any fundamental areas? It seems empirical that the OP selects something that would increase their general programming knowledge before moving into a field that relies on many aspects which the OP has not fully comprehended; this is how poor habits are won.

Re: Anyone have any ideas for a console application

Posted: Sun Nov 21, 2010 11:28 am
by JGorard159
wearymemory wrote:What gives you—or anyone for that matter—the impression that the OP is prepared to advance into graphical programming? Have you considered the OP's previous posts to ensure that the OP is not lacking in any fundamental areas? It seems empirical that the OP selects something that would increase their general programming knowledge before moving into a field that relies on many aspects which the OP has not fully comprehended; this is how poor habits are won.
OK, maybe that was poorly said :oops:. I was simply trying to say that there's only so much that you can learn with simple console applications, and it would seem that the poster has nearly exhausted all the capabilities of a console application (hence this post's creation), and provided that he/she has a good enough grasp of the basics of C++ (up to pointers, arrays, memory allocation), then in my opinion, a graphical API such as SDL is probably the best step.