- Viewing Profile: Reputation: Gamer Gamester
Community Stats
- Group Members
- Active Posts 282
- Profile Views 1,937
- Member Title Member
- Age Age Unknown
- Birthday Birthday Unknown
-
Gender
Not Telling
#4895192 Functional languages in gamedev
Posted by Gamer Gamester
on 18 December 2011 - 11:20 PM
#4883303 Any free sound effects programs?
Posted by Gamer Gamester
on 12 November 2011 - 05:07 PM
#4878954 Game programming vs Girls
Posted by Gamer Gamester
on 31 October 2011 - 12:13 PM
Back when I was a strapping young youth I would mistake my being horny for love. Girls who had rather obnoxious and immature personalities suddenly seemed like "angels" to me (but only one at a time.... there could only be one "perfect being"). Certain activities or topics which held no genuine interest for me were suddenly fascinating simply because she liked them.
It took me a long time to realize that I was misinterpreting what I really wanted: to sexually devour them. Along with discovering this, I noticed that there were girls I wanted to do this with EVERYWHERE. All over the place.
Love and relationship are something different. They're slower, take time, and in many ways are much more of a practical matter. Do you genuinely enjoy her other interests? (you don't just think they're interesting just because her hotness likes them, do you?) Do you really like talking with her? (as in: you really enjoy the conversations, not just the fact that it's coming from her body.... Here's a good test: would you still enjoy the conversation if she were some 80 year old woman?)
It takes time and experience. At first, finding a girl attractive will distort your interpretation of everything else related to her (and even not related to her, such as programming). Good luck!
#4878306 Apples new patent (what a joke)
Posted by Gamer Gamester
on 29 October 2011 - 01:41 PM
If slide-to-unlock wasn't the result of innovative genius, then why wasn't it around years ago? Because the problems it solves weren't. Problem: You are carrying a touch-screen device in your pocket, and need to be able to activate it easily. Answer: You can just touch it to activate it! Problem: Your device will be activated unintentionally if a simple touch can activate it. Answer: Hmm.... what's the simplest solution to this. You could be required to touch in only a specific spot, but even that precise spot may accidentally be touched. Oh wait, I know!! Maybe you need to touch a specific spot, then move to a different specific spot! That is unlikely to happen by accident.
Coloring visited hyperlinks is equally ridiculous for a patent. Why hadn't such coloring been widely used for years? Because hyperlinks hadn't widely used, not because it takes some one-of-a-kind genius to think up. Being able to put your kids through college from something like that implies that the patent system is like some kind of casino.
#4860998 Any suggestion for the correct game engine
Posted by Gamer Gamester
on 13 September 2011 - 02:43 AM
1. Performance.
2. A good reverse engineer can dump the classes and members offset and easily hack my game. (Using the script engine)
3. I like C++ more than high level languages.
1. The performance critical part is the engine.
2. This is not as serious a priority as: finishing something that somebody would actually want to reverse engineer.
3. But your planning to work on a higher level! You program on top of the (low level) engine. Really the whole point of an engine is to let you use scripting.
#4859358 When/Why to Move to C++?
Posted by Gamer Gamester
on 08 September 2011 - 11:46 PM
#4857954 new to programming
Posted by Gamer Gamester
on 05 September 2011 - 02:43 PM
I always recommend Python to beginners. C# is supposed to be good too (but I've always avoided it as I don't like being limited to one company's ecosystem). There are other good choices as well, but stay away from C++!
The best place to start is to pick a language and begin studying it. Find a few good books and take pleasure in understanding the language itself. Making games is very frustrating if you don't first cultivate a strong interest in programming itself.
#4857951 Need help picking a game engine
Posted by Gamer Gamester
on 05 September 2011 - 02:34 PM
That sucks. I really want something that will allow me to program in c++ so I can get better with that language as don't want to just use scripting. Wanting to get better as going to college for game programming so this isn't just going to be a hobby and need c++ projects to work on to help me get better.
You don't need C++ projects in order to get better at programming. And it's harmful to dismiss "scripting" languages as not powerful. Where are 90% of beginners getting these ideas?
I get the impression you're new to programming -- in that case (especially when thinking of a career in the field), I highly recommend learning programming fundamentals and concepts. Things will go smoother with a language like Python, but try something 2D first instead of Panda3D. FPSes and RPGs are both too difficult to start with -- try something like Pacman. Even old 80s style arcade games will provide quite the challenge and learning experience.
#4849279 Python/Pygame or C#/XNA
Posted by Gamer Gamester
on 15 August 2011 - 01:29 AM
I would go with C#/XNA. It's more Object-Oriented
How is C#/XNA more Object-Oriented?
and the syntax is closer to other modern languages (Java, C++).
I wouldn't call Java or C++ modern languages (anymore), though they still can be quite useful in these modern times.
To the OP:
I've heard C#/XNA are a joy to work with -- they're probably a safe bet if limiting to Windows works for you.
How important is the portability to you? If you require Linux and other OSes, then Python/PyGame is a more appropriate tool.
It will help to cultivate a strong interest in the programming itself. Take some time to study whichever language you choose.
If you discover no passion for programming, you're likely better off with a form of game maker software. But give programming a try first!
#4847299 Can I be a game designer and a programmer at the same time?
Posted by Gamer Gamester
on 10 August 2011 - 02:18 PM
#4846989 Questions about the debt discussions
Posted by Gamer Gamester
on 09 August 2011 - 07:59 PM
This type of talk:
The government tells you what drugs to do because drugs ruin lives and waste potential. Look at your average stoner. They insist vehemently that weed has no bad points, isn't addictive and would single-handedly save the economy- facts be damned. They usually say all this at 3pm on a Tuesday in their parents garage.
has no substance. Many "stoners" that I know are successful financially, don't think legalization is a silver bullet for the economy, and fully acknowledge both pros & cons to the drug. Their lives are not ruined, and some of them would say that weed (among many other factors) helped them to realize their potential.
If you don't know much about something, please refrain from spewing nonsense about it. There's too much regurgitating of nonsense going around these days -- it inhibits real discovery and learning about topics.
#4842026 Is'nt scripting maybe a little overated?
Posted by Gamer Gamester
on 29 July 2011 - 01:58 AM
Programming high-level game logic in C++ is cumbersome. The language works better for crafting fast, fine-tuned engines.
"Scripting" makes it more practical to play with details and experimentally find that "just right" gameplay.
#4826595 DOM: get elements of a node
Posted by Gamer Gamester
on 22 June 2011 - 03:38 PM
firstElementChild, lastElementChild
Then iterate through them using that child node's:
nextElementSibling, previousElementSibling
When nextElementSibling returns null, you know you are done.
Alternatively, you can get the number of children that a node has with:
childElementCount
These work in all browsers except (I think) Internet Explorer (not sure about version 9).
If you need to support older IEs, you can use the more cumbersome:
firstChild, lastChild, nextSibling, previousSibling
However, these are tricky as they don't limit themselves to child elements
(they also return the text nodes that make up the contents of elements, etc.)
so you'll want to check:
nodeType
elements have a nodeType of 1 (text nodes have 3, etc.)
#4803406 When to start using SFML?
Posted by Gamer Gamester
on 26 April 2011 - 11:05 PM
If you don't feel like you know what do from there, then maybe you're not ready.
Remember to plan something extremely simple to get going.
Do you have your compile/linking process down (are you able to make executables)? That is one of the trickier aspects of C++.
Start by getting a SFML window running.
Then get an image in that window.
Maybe you'd like to be able to move the image around with arrow keys?
Reading books is great, keep it up. But don't be afraid to mix in some programming (at least half your time, I'd say --- though the occasional academic sabbatical can be healthy).
#4797354 Does game development require "special tools"?
Posted by Gamer Gamester
on 11 April 2011 - 08:38 PM
But you're correct, a person with a computer, electricity, and internet can make a game, with the only additional cost being time (which perhaps you value?). Look into the indie scene for examples of successes and failures without "millions".
Lofty ambitions are good for an indie, but it's important to be able to transform those goals into something tangible. This requires thinking things through realistically -- it's easy to underestimate what goes into things (see Dunning-Kruger).
- Home
- » Viewing Profile: Reputation: Gamer Gamester

Find content