Question about games, libraries, etc. for which source code is available in some way.
0
votes
1answer
125 views
How can I modify PlayStation 1 games?
Is it possible to modify Sony PlayStation 1 games?
For example I'm planning to modify a soccer game called Winning Eleven 3. What I'm exactly trying to modify is player properties such as speed, shot ...
1
vote
1answer
151 views
Structure of Visual C++ Projects in Visual Studio
In particular, I was wondering if it was possible for Visual Studio to treat source files in different directories as all in the same directory. I first saw this after purchasing the Introversion ...
0
votes
2answers
88 views
is a good practice to orgnize MVC classes in diferent packages? [closed]
Im,working on a project where the classes are organized by subject like gameplay, menus, utilities etc... Basically this 3 packages.
is a good practice to organize classes in controller, view and ...
4
votes
3answers
178 views
How to understand huge code bases? [closed]
I read about game loops, read tutorials of simple games like Asteroids and programmed them by myself. Nevertheless if I try to start reading code of a game with many many thousand lines of code, I ...
-1
votes
2answers
4k views
Is Minecraft's source code available? [closed]
I recall Mojang stating they would release the source code of Minecraft sooner or later, but searching both on google and on Minecraft sites I wasn't about to find it.
So... is it available ...
1
vote
1answer
178 views
Pick and Drop the Ball Testing Without Replicating the Physics Frame
I am making a program that pick, drag, and drop the ball. In real life, once you pick the ball and drop it, whenever the available object is (what you see is what you get) will only be picked and ...
12
votes
2answers
3k views
What programming language were PS1 games written in?
Is there any common language that is used to create Play Station 1 Games? Or how can I find out what programming language is used for one of those games?
3
votes
1answer
349 views
Variables in static library are never initialized. Why?
I have a bunch of variables that should be initialized then my game launches, but must of them are never initialized.
Here is an example of the code:
MyClass.h
class MyClass : public BaseObject {
...
2
votes
1answer
532 views
Radiosity lightmap generation
Is there any working C++ source code for a lightmap generation algorithm using Radiosity or any other GI system? I've found technical papers only, but I can't really find any implementation.
1
vote
1answer
197 views
TF2 plugin signature (Source SDK)
I am working on the server plugin for TF2. I need it for getting some stats from game (no hacking and cheating). My problem: I got message "No valid signature found..." while testing my plugin. But I ...
1
vote
2answers
362 views
How is JS source protected in Chrome games?
I was playing a space arcade shooter https://moonbreakers.com/ and tried to see some of the JS and shader code. However, I was unable to find anything but some server communication code. Game code is ...
0
votes
1answer
291 views
Why wont SVN work on the Google Code Source? [closed]
I installed SVN Toroise. I then proceeded to the desktop and right clicked and clicked on SVN checkout. I then entered under the URL of Repository "http://apple-crunch.googlecode.com/svn/trunk/ ...
1
vote
2answers
2k views
How do I get the source code from a Google Code game project?
I'm trying to get the Hedgewars source code. When I went to the downloads tab, it doesn't specify which is the actual game. I tried downloading it using the SVN Checkout on Tortoise, but it seems ...
0
votes
1answer
298 views
naming conventions in game code / vocabulary
I'm just starting out as a game dev, and I'm finding some difficulties at the time of naming classes. I usually call the one that handles everything World or Map, or Grid. Then there's the stuff ...
8
votes
9answers
2k views
What's a good Open Source game to learn from?
I want to download the source code of an Open Source game, so I can get familiar with game architecture. Does any one know of a game with source code that's legible, and easily understandable?
Edit:
...