Tagged Questions

1
vote
3answers
142 views

the quake 2 md2 file format (theory)

i am trying to load md2 files in opengl but i noticed that most example programs just use a precompiled list of normals. something like this..... //table of precalculated normals { -0.525731f, …
0
votes
4answers
51 views

Making render method virtual?

I'm starting with C++ in more depth while building a simple 2d game engine. In my engine I have (or want to have) an "Abstract" GameEntity class, which carries the methods draw, update, and maybe …
0
votes
2answers
62 views

Games helps to encourage students to learn? [closed]

Hi, this week i try to explain to some students the importance to learn some algorithms and other stuff that help me in my career, but i don't know how to demostrate the real importance of this …
2
votes
6answers
259 views

What 3D graphics framework should I use for a real world game engine.

Hello, I'm a C++ programmer with very extensive server programming experience. I'm however fairly bored at the moment and I decided to tackle a new area: 3D game programming, for learning purposes. …
2
votes
5answers
155 views

Tic Tac Toe Design Pattern

Hey everyone, I was wondering if I could get your thoughts and advice as to what would be the best/most advantageous design pattern for a networked Tic Tac Toe game? I have been looking at the …
1
vote
2answers
61 views

C# ASP.Net BlackJack/CardGames Reference

Hello. I want to build a card game in C# ASP.Net. Something like blackjack or solitaire. Has anyone any ideas on how to go about doing this or any references I could refer to? Books on card game …
4
votes
9answers
352 views

Flash games hack, score is 49700?? How to improve flash games security?

I have 2 flash games (written in as3). Both the highscore value being hacked. The normal range of each game score is not more than 5000 (normal users, will only get 2000 - 3000 points). My current …
0
votes
3answers
101 views

Beat em’ up game space management ?

Hello, I am in the process of making my 2D engine for a Beat'em Up game (Castle Crashers is what I call Beat'em Up or Brawler kind of game ). I will support 2D sprites and 2D particle emitters. This …
1
vote
3answers
129 views

Where to learn about enemy game algorithms (like Starcraft/Warcraft)?

I would like to learn about games (strategy) algorithms especially about how do enemies algorithms works ? Is there any good place for beginners?
1
vote
4answers
180 views
0
votes
3answers
75 views

Javascript Game: What should i know?

I am thinking as a challenge i should write a javascript based game. I want sound, images and input. A background to simulate a screen (like 640x480 with all my images in it) would be useful to …