NetCog![]() Member Posts: 149 From: Registered: 06-15-2006 |
It's general and it's development. Here's the deal. I like games, would like to learn to create them. I have interests in storyline, coding, and the graphics. I got here via Bible Dave's entry on www.sourceforge.net in trying to find some Python project that I might be able to join or contribute to learn Python. My experience w/ Crystal Reports and SQL says you learn better when you have a problem than trying to start from scratch. So...does anyone know of some python projects willing to take on a nearly bare bones newbie? Or barring that...anyone have ideas on where to start - what I need to do to start my own game? Because even after reading some articles on game development...I haven't a clue. Danke. |
|
Jari![]() Member Posts: 1471 From: Helsinki, Finland Registered: 03-11-2005 |
Hi NetCog, welcome to CCN! I am glad to give you advice on this. Now since you don't know how to get started on game making you are just like all of us at first, well if not like all at least like I used to be. ![]()
------------------ [VoHW] (Help needed) [Blog] - Truedisciple (mp3) |
|
HanClinto![]() Administrator Posts: 1828 From: Indiana Registered: 10-11-2004 |
Hi, Netcog! Welcome to CCN! ![]() I might have just the thing for you. You can find my presentation and all of the source code files here. If you have any questions regarding any of it, feel free to e-mail me. My address is hanclinto at gmail dot com. Cheers! Respectfully, [This message has been edited by HanClinto (edited June 16, 2006).] |
|
buddboy![]() Member Posts: 2220 From: New Albany, Indiana, U.S. Registered: 10-08-2004 |
you can help me on my game i have been working on... it's motion detection in Python using Pygame, PIL, and VideoCapture. the motion is already set up, using a module i found. but i need to work on making graphics that the motion controls. i haven't been able to work on it lately, just (half an hour ago, 'bout) got home from church camp... it was very very awesome... i'll talk about it later, but that's off topic. so i would need somebody to help me code the graphics and/or make them, i can make them also (i love gimp =D) somewaht. pardon my spelling/capitalization, in a hurry =D ------------------ RADIOACTIVE IE AHEAD! int name() |
|
NetCog![]() Member Posts: 149 From: Registered: 06-15-2006 |
Well I've done a small stand alone application (still has the command shell running in the background though). It's a "Work Order Request" program. It takes your name and your location then allows you to fill in the details of the request. It takes that data and creates a text file in a location specifically coded into the program using the location and the date of submission as its file name. jari, do you have another idea for another small app? I've got a pile of handwritten notes I need to get through and I've been thinking about fleshing out my Work Order Request app into something I can use there. Otherwise I need to use notepad and go through the hassle of changing save locations and coming up w/ unique file names. hanclinto, I'll definately check out that game. buddboy, can you tell me a little more about what your doing? A site perhaps or a project page? [edit] Ah found the thread: http://www.christiancoders.com/ubb/Forum3/HTML/000318.html [/edit]
[This message has been edited by NetCog (edited June 18, 2006).] [This message has been edited by NetCog (edited June 18, 2006).] |
|
buddboy![]() Member Posts: 2220 From: New Albany, Indiana, U.S. Registered: 10-08-2004 |
yes, i do... but IdolSMASH has graphics, and that looks pretty easy to code. plus i'll be learning how to do it at the same time as you, so we'll be at the same level (somewhat). To run Idol SMASH click the .bat named start1 or something like that. there are up to 11 of them, each uses a corresponding code file that improves on the other one. so after running start1, do start2, but after you read the source (if you want to). ------------------ RADIOACTIVE IE AHEAD! int name() |
|
NetCog![]() Member Posts: 149 From: Registered: 06-15-2006 |
After a couple days reading the results from searching "game engine" on this site and reading the links given I've realized I need to start small, especially if I don't want to use cut and paste. So...to have something online I can reference I'll start my ideas (or journal) here if that's okay.
[u]Graphics[/u] [u]Code[/u] Which means if my ant is 10 pixels high, I'll need to make the actual ant image 20-25 pixels high to accommodate the boulder appearing.
|
|
NetCog![]() Member Posts: 149 From: Registered: 06-15-2006 |
HanClinto - is there anyway to learn what is going on in your idolsmash game as far as what the different commands are doing? stuff like : def player_loop(g,s) those are just two of many examples....it's one thing to rewrite/copy and then go experiment with your own values....it's another to know what the heck is going on... thanks [This message has been edited by NetCog (edited June 21, 2006).] |
|
HanClinto![]() Administrator Posts: 1828 From: Indiana Registered: 10-11-2004 |
Hey Netcog! Sorry for not commenting my code enough -- I put a fair number of overview comments in there, but looking back, I see I didn't put in too many implementation comments. Here's a small section from sdrn_5.py that I've added more comments to for you just now:
Does that small section help? I'm sure there are probably more things, but I hope that at least gives you a start. If you are wanting to learn the basics of Python, the book that I recommend to people is called How to Think Like a Computer Scientist: Learning with Python -- it's completely free, and you can download it in pdf, html or other formats. I have a printed and bound copy sitting on my desk at work -- it's fantastic for learning Python. I hope that helps! Please let me know how I can help you more. In Christ, [This message has been edited by HanClinto (edited June 22, 2006).] |
|
D-SIPL![]() Moderator Posts: 1345 From: Maesteg, Wales Registered: 07-21-2001 |
I remember reading that a while back, i found it a lot better then Diving into Python or whatever it was called ![]() ------------------ |
|
NetCog![]() Member Posts: 149 From: Registered: 06-15-2006 |
Thanks for the additional comments and the book suggestion. Yea, those comments did help explain some stuff as I just sit here reading it (I don't have the code up atm). And I'll definately check out that book, I've seen it around but now I've got the "well primed" so to speak. |