Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Apr 9th, 2007, 2:00 AM   #1
demon101
Hobbyist Programmer
 
demon101's Avatar
 
Join Date: Mar 2006
Location: westboro, ohio
Posts: 159
Rep Power: 0 demon101 is an unknown quantity at this point
Send a message via Yahoo to demon101
Making Games

i was wondering if you could make games in visual basic 6.

i was thinking about geting into making games and i already know a little about visual basic 6.
__________________
Demon101 Production's

Code Forums
demon101 is offline   Reply With Quote
Old Apr 9th, 2007, 3:46 AM   #2
mrynit
Hobbyist Programmer
 
mrynit's Avatar
 
Join Date: Mar 2006
Location: WA, USA
Posts: 332
Rep Power: 3 mrynit is on a distinguished road
Send a message via AIM to mrynit Send a message via MSN to mrynit Send a message via Yahoo to mrynit Send a message via Skype™ to mrynit
Yes you can make games in VB 6. i dont suggest it tho. IF you want to make games and you dont know java,C++ or C# try FreeBASIC. it has a similar syntax to VB but it is more powerful than VB for making games. FB can use 32 bit dll so you can use Alegro,SDL,OpenGL, winsock,win32 API etc. FB is not fully OOP but has object orientation support. look thru some of the game code for examples. if you want i can give you some of my code. FB is crossplatform to windows, protected dos mode, linux and xbox.

general overview, a bit outdated http://en.wikipedia.org/wiki/Freebasic
a bunch of 2D/3D games in FB http://games.freebasic.info/
home page http://freebasic.net/
__________________
i dont know much about programming but i try to help
mrynit is offline   Reply With Quote
Old Apr 9th, 2007, 4:06 AM   #3
lectricpharaoh
Caffeinated Neural Net
 
lectricpharaoh's Avatar
 
Join Date: Jun 2005
Location: Dry west coast of Canada
Posts: 1,005
Rep Power: 5 lectricpharaoh will become famous soon enough
I'd recommend moving over to VB.NET or C# to try writing some simple games. As you get more advanced, you can do 3D and stuff through managed DirectX (using either VB.NET or C#). Also, you can grab both compilers for free (express versions anyways) from Microsoft's web site.

Should you want to do more CPU-intensive games, you might well need to use native (ie, not .NET 'managed') code, and probably the most popular language for this would be C++. If you learn C# first (it's easier), it might make the c++ learning curve a little less steep, since C#, like Java, borrows a lot of its syntax and language concepts from C++.

I recommend C# over VB.NET for two reasons. First is the 'it will serve you better if you move to C++' reason mentioned above, and second is personal preference. I find it to be a cleaner language, but ultimately, it compiles down to .NET managed code with either language, so will not really differ in efficiency between the two.
__________________
And once again, Probability proves itself willing to sneak into a back alley and service Drama as would a copper-piece harlot.
- Vaarsuvius, Order of the Stick
lectricpharaoh is offline   Reply With Quote
Old Apr 10th, 2007, 11:04 AM   #4
demon101
Hobbyist Programmer
 
demon101's Avatar
 
Join Date: Mar 2006
Location: westboro, ohio
Posts: 159
Rep Power: 0 demon101 is an unknown quantity at this point
Send a message via Yahoo to demon101
Quote:
Originally Posted by mrynit View Post
if you want i can give you some of my code.
yeah if you want to show a little of it that would help me out to see how the code is and things.
__________________
Demon101 Production's

Code Forums
demon101 is offline   Reply With Quote
Old Apr 10th, 2007, 12:38 PM   #5
uman
Expert Programmer
 
Join Date: Dec 2004
Posts: 794
Rep Power: 4 uman is on a distinguished road
I was wondering if you could give a press conference in Latin. I was thinking about getting into giving press conferences and I already know a little Latin.
__________________
Few people deserve to be compared to (Rush) Limbaugh, most of them were convicted at the Nuremburg trials.
--WilliamSChips on Slashdot
uman is offline   Reply With Quote
Old Apr 15th, 2007, 10:49 AM   #6
Komodo
Hobbyist Programmer
 
Komodo's Avatar
 
Join Date: May 2005
Location: Scranton, PA
Posts: 112
Rep Power: 0 Komodo is an unknown quantity at this point
Send a message via AIM to Komodo Send a message via MSN to Komodo
uman that's just not nice...
Komodo is offline   Reply With Quote
Old Apr 19th, 2007, 11:33 PM   #7
physicist
Hobbyist Programmer
 
Join Date: Oct 2006
Posts: 146
Rep Power: 2 physicist is on a distinguished road
uman...wtf

yeah you CAN make games in VB6, but i would not. as mentioned before, i would get into VB.net because, although VB.net is almost just as easy as VB6, you can implement DirectX!!!! yeah thats what they use in all the big games nowadays...
BUT i would not waste my time learning C# and just start learning C++ everyone says ZOMG ITS TOO HARD NO YOU ARE NOOB YOU CANT LEARN C++ but C# is closer to C++ than most people realize and neither one is much harder to learn than the other; therefore go with the most productive, C++

IMHO if you learn C++ and master it then you can learn ANY C based language (Java, C#) in a few days with documentation on the side

although i must say my transition into Java found me thinking that C++ is easier

i myself am only an amateur in both C++ and Java; as well as VB and VB.net.

if you want VB.net games i can give you some. physics is tedious because elastic collisions with conserved KE round off each time so the speed is not constant of a bouncing projectile in arachnid.
physicist is offline   Reply With Quote
Old Apr 20th, 2007, 3:45 AM   #8
pal
Programmer
 
pal's Avatar
 
Join Date: Mar 2005
Location: Washington
Posts: 89
Rep Power: 4 pal is on a distinguished road
Python programming language is good with game programming. Give python a try and visit pygame.org.
pal is offline   Reply With Quote
Old Apr 20th, 2007, 4:44 AM   #9
rsnd
Hobbyist Programmer
 
rsnd's Avatar
 
Join Date: Jun 2005
Location: Helltown
Posts: 162
Rep Power: 4 rsnd is on a distinguished road
I made many games in visual back back in high school =) Nods and crosses, manual chess, pong, connect dots... just to name a few. I even started space invaders...then i started on c++ and never got back =(
__________________
Spread your wings and fly! Chicken!
rsnd is offline   Reply With Quote
Old Apr 20th, 2007, 11:41 AM   #10
pegasus001
Hobbyist Programmer
 
pegasus001's Avatar
 
Join Date: Nov 2006
Location: 163H
Posts: 213
Rep Power: 2 pegasus001 is on a distinguished road
Quote:
Originally Posted by rsnd View Post
I made many games in visual back back in high school =) Nods and crosses, manual chess, pong, connect dots... just to name a few. I even started space invaders...then i started on c++ and never got back =(
Did you rewrite them using c++? If not what a pitty.
__________________
You never test the depth of a river with both feet.
The believer is happy. The doubter is wise.
Free speech carries with it some freedom to listen.
The next generation will always surpass the previous one. It`s one of the never ending cycles of life.
pegasus001 is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
C++ Programmers needed for game making Foxtrot Uniform Paid Job Offers 26 May 15th, 2006 8:08 PM
Programmer Opening with New Era Games Nox587 Paid Job Offers 0 Oct 25th, 2005 1:00 AM
Making a game need some help. Logger767 Existing Project Development 23 Jun 7th, 2005 8:54 AM
Games are possible to develop single-handedly gardon C++ 12 Mar 6th, 2005 1:09 PM




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 6:37 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC