how to make hombrew?
-
- 32-bit
- Posts: 270
- Joined: Fri Aug 29, 2008 5:17 pm
- Location: MI USA
how to make hombrew?
were would i go to learn how to develope games/ because i was thinking about developing homebrew
- ZeroAX
- Next-Gen
- Posts: 7469
- Joined: Sun Aug 03, 2008 9:20 am
- Location: Current: Amsterdam. From Greece
- Contact:
Re: how to make hombrew?
get a visual c++ or visual basic book to get you started

BoneSnapDeez wrote:The success of a console is determined by how much I enjoy it.
-
- 32-bit
- Posts: 270
- Joined: Fri Aug 29, 2008 5:17 pm
- Location: MI USA
Re: how to make hombrew?
what are those? should i just go to the book store and get ... for dumbys or what? thx guys, this forum is awesome
Re: how to make hombrew?
A foundation in English will definitely help.
Visual C++/Visual Basic are programming languages. These particular languages require a compiler. A compiler is what turns your code (written in an aforementioned language) into a usable program.
For example compiling the following code snippet with a C++ compiler will create a program that will display the text 'Hello World!' when run.
Hope this helps. I would recommend getting a 'for dummies' book to start off with, but only to get to grips with parsing code and basic programming etiquette. When you are familiar with the basics move onto something a little more comprehensive such as O'Reilly's series of books.
Good luck and have fun.
Visual C++/Visual Basic are programming languages. These particular languages require a compiler. A compiler is what turns your code (written in an aforementioned language) into a usable program.
For example compiling the following code snippet with a C++ compiler will create a program that will display the text 'Hello World!' when run.
Code: Select all
#include <iostream>
using namespace std;
void main()
{
cout << "Hello World!" << endl;}
Hope this helps. I would recommend getting a 'for dummies' book to start off with, but only to get to grips with parsing code and basic programming etiquette. When you are familiar with the basics move onto something a little more comprehensive such as O'Reilly's series of books.
Good luck and have fun.
Marurun wrote:Don’t mind-shart your pants, guys
- ZeroAX
- Next-Gen
- Posts: 7469
- Joined: Sun Aug 03, 2008 9:20 am
- Location: Current: Amsterdam. From Greece
- Contact:
Re: how to make hombrew?
http://www.deitel.com/Books/CPlusPlus/CPlusPlusHowtoProgram6e/tabid/2046/Default.aspx get this book I have a previous edition and it is really well writen

BoneSnapDeez wrote:The success of a console is determined by how much I enjoy it.
-
- 32-bit
- Posts: 270
- Joined: Fri Aug 29, 2008 5:17 pm
- Location: MI USA
Re: how to make hombrew?
Niode wrote:A foundation in English will definitely help.
Visual C++/Visual Basic are programming languages. These particular languages require a compiler. A compiler is what turns your code (written in an aforementioned language) into a usable program.
For example compiling the following code snippet with a C++ compiler will create a program that will display the text 'Hello World!' when run.Code: Select all
#include <iostream>
using namespace std;
void main()
{
cout << "Hello World!" << endl;}
Hope this helps. I would recommend getting a 'for dummies' book to start off with, but only to get to grips with parsing code and basic programming etiquette. When you are familiar with the basics move onto something a little more comprehensive such as O'Reilly's series of books.
Good luck and have fun.
oreilly? you meen the news commentator? lol
-
- 64-bit
- Posts: 350
- Joined: Sat Aug 11, 2007 11:51 pm
- Location: Gaffney, SC
Re: how to make hombrew?
I highly doubt that is the guy you want. But my improbabiliy drive may be out of wack.
- lordofduct
- Next-Gen
- Posts: 2907
- Joined: Sat Apr 01, 2006 12:57 pm
- Location: West Palm Beach
Re: how to make hombrew?
Homebrew for which console?
C and C++ are a necessity to learn. C for older consoles, C++ for newer.
The hard part is finding the SDKs for some of the consoles you want to code for. But until you know how to program, that is the least of your worries.
C and C++ are a necessity to learn. C for older consoles, C++ for newer.
The hard part is finding the SDKs for some of the consoles you want to code for. But until you know how to program, that is the least of your worries.
-
- 32-bit
- Posts: 270
- Joined: Fri Aug 29, 2008 5:17 pm
- Location: MI USA
Re: how to make hombrew?
pretty much every thing im gonna do DC when i get one but may try makeing a PC one, and yes i dont thats who i want
also what book should i start with?
also what book should i start with?
- Pullmyfinger
- Next-Gen
- Posts: 1470
- Joined: Sat Jan 28, 2006 12:49 pm
- Location: Orange County
- Contact:
Re: how to make hombrew?
try a starter book about object oriented programming