Any good sources on video game programming in vb.net?

C

COHENMARVIN

Are there any good sources on video game programming in vb.net?
Is "DirectX" a set of libraries for video game programmers?
The reason I ask is that I'd like to convert a board game into a
computer game. Its a game with up to 4 players, so it seems like it
would be hard to do. After all, a computer doesn't have up to 4
mouses. And its a board game where pieces move on the board, so I'd
have to keep redrawing the board but with squares sometimes become
covered by a piece, and sometimes being emptied of a piece. Also, I'd
like to insert video fragments when the user lands on a certain square
(like a fragment on a dungeon when he lands on a dungeon square).
Is this kind of game possible, and if so, where would I get some
lessons on how to create it?
-- MC
 
R

rowe_newsgroups

Are there any good sources on video game programming in vb.net?
Is "DirectX" a set of libraries for video game programmers?
The reason I ask is that I'd like to convert a board game into a
computer game. Its a game with up to 4 players, so it seems like it
would be hard to do. After all, a computer doesn't have up to 4
mouses. And its a board game where pieces move on the board, so I'd
have to keep redrawing the board but with squares sometimes become
covered by a piece, and sometimes being emptied of a piece. Also, I'd
like to insert video fragments when the user lands on a certain square
(like a fragment on a dungeon when he lands on a dungeon square).
Is this kind of game possible, and if so, where would I get some
lessons on how to create it?
-- MC

Are you dead-set on using Visual Basic .Net? For true videogame
programming you'll want to use C++ with directX for the best
performance, and there are tons of books/sites dedicated to this. If
you want to use your .Net skills, you should look into XNA Game Studio
by Microsoft. I believe it only works with C#, unless they have
changed it. I has a dedicated forum and some walkthroughs on the site,
iirc.

Thanks,

Seth Rowe
 
C

Chris Dunaway

Are you dead-set on using Visual Basic .Net? For true videogame
programming you'll want to use C++ with directX for the best
performance, and there are tons of books/sites dedicated to this. If
you want to use your .Net skills, you should look into XNA Game Studio
by Microsoft. I believe it only works with C#, unless they have
changed it. I has a dedicated forum and some walkthroughs on the site,
iirc.

Thanks,

Seth Rowe

While XNA Game Studio is C#, there is support for using VB.Net. Try
this link:

http://www.alanphipps.com/VisualBasicdotNET-XNA.html

Chris
 
M

Mr. Politics

I hope we are still not having this conversation, depending on what he
is doing, VB.net and C# are indistinguishable in their ability to
create games.
 
R

rowe_newsgroups

I hope we are still not having this conversation, depending on what he
is doing, VB.net and C# are indistinguishable in their ability to
create games.

Perhaps you should re-read my post. I did not say that C# was better
suited to game development, I said that as far as I know XNA only had
"out of the box" support for C#.

I do appreciate Chris' link - I had never seen a complete walkthrough
on how to get XNA to run properly with VB.NET.

Thanks,

Seth Rowe
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top