Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #11.7K
Ranked #3K
~5K People Reached

12 Posted Topics

Member Avatar for Sh4dowz

Since you said you already know Python, I'd say stick with that and try Pygame or Pyglet. Pygame - [Click Here](http://pygame.org/news.html) Pyglet - [Click Here](http://pyglet.org/)

Member Avatar for tuto.narahenpitiya
0
689
Member Avatar for miran788

So what kind of questions do you have? What's happening when you run the program vs what you're expecting to happen? Are you getting any compiler or run-time errors? In lines 45-49, you have the code just kind of hanging out there inside the class. You likely want that to …

Member Avatar for jalpesh_007
0
1K
Member Avatar for happygeek

I certainly think there will be a GPU in the system. That would strike me as a huge blunder if they didn't put in a dedicated GPU. I think discussing "obsolete" is a little unrealistic. It's literally not possible for anyone to build a system today that can stand strong …

Member Avatar for rhowell
0
466
Member Avatar for shanenin
Re: True

The is keyword tests for identity ([http://docs.python.org/release/2.3.5/ref/comparisons.html](http://docs.python.org/release/2.3.5/ref/comparisons.html)). So it's true when both sides point the same memory location. Your thought is correct though; non-empty strings equal true. To test it, you could write code like so: word = 'abc' if word: print 'yes' else: print 'no' That code's not tested …

Member Avatar for Gribouillis
0
111
Member Avatar for toby.thomas.79

Answers to a few questions might give enough information for myself or someone else to be able to help you... 1) What are your intentions/goals with the game? 2) Is it open source or closed source? 3) For sale or free?

Member Avatar for Anddos
0
168
Member Avatar for soapyillusion

When I read this article and saw the Guild Wars 2 developers answer why they don't plan on taking their MMO(s) to consoles, I thought of this thread right away: http://venturebeat.com/2012/08/09/guild-wars-2-interview/ For my part, I think both the stigma and the subscription fee are big barriers. In addition to those …

Member Avatar for jLocke
0
235
Member Avatar for Karkalash

I don't have any experience with either, but it's worth you thinking about and knowing the answer as you search around the internet for help: What platform(s) are you targeting? All of the same options might not be available depending on if you're aiming at PC and/or XBox 360 and/or …

Member Avatar for jLocke
0
468
Member Avatar for berben11

Your link has an additional period at the end. Just figured I'd throw that out there as someone else may click the link, call it dead and not investigate further. Nice work on that engine. I hope to see some games you make on top of it to demo it …

Member Avatar for berben11
0
139
Member Avatar for efth

I think JamesCherrill hit the nail on the head with the "problem" you were encountering. I just wanted to post on the idea a little more explicitly. Yes, java can return a value from a method. Using void in a method definition says that it won't return a value. Changing …

Member Avatar for jLocke
0
254
Member Avatar for JESIA72

It seems the fundamental difference between the values you said are working (first name, etc) and the ones that aren't working is that you have to calculate the ones that aren't working. In the code that uses the EmployeePayroll instance, are you calling *calcGrossPay* before trying to display the gross …

Member Avatar for jLocke
0
564
Member Avatar for trishtren

Where is the code where you actually store something in the field named *output*?

Member Avatar for JamesCherrill
0
209
Member Avatar for saransh60

I think a good start for a linked list class would be to have a Node class and have the list be made up of Node objets. [CODE]class Node(): def __init__(self, val, next=None): self.value = val self.nextNode = next def update(val=None, next=None): if val: self.value = val if next: self.nextNode …

Member Avatar for jLocke
0
285

The End.