Welcome,
Guest
. Please
login
or
register
.
Did you miss your
activation email
?
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
Home
About
Team
Rules
Stats
Status
Sitemap
Chat
Downloads
Forum
News
Our Projects
Major Community Projects
Recent Posts
Unread Posts
Replies
Tools
SourceCoder3
Other Things...
Omnimaga Radio
TI-83 Plus ASM File Unsquisher
Z80 Conversion Tools
IES TI File Editor
Free RAM areas
Comprehensive Getkeyr table
URL Shortener
Online Axe Tilemap Editor
Help
Contact Us
Change Request
Report Issue/Bug
Team
Articles
Members
View the memberlist
Search For Members
Buddies
Login
Register
Omnimaga
»
Forum
»
General Discussion
»
Technology and Development
»
Computer Programming
»
How do you make games with coding???
« previous
next »
Print
Pages: [
1
]
2
3
Go Down
Author
Topic: How do you make games with coding??? (Read 11277 times)
0 Members and 1 Guest are viewing this topic.
runeazn
LV4
Regular (Next: 200)
Posts: 191
Rating: +5/-3
How do you make games with coding???
«
on:
February 25, 2012, 10:24:00 am »
I still dont get how you can make games with coding after getting a little taste of coding language python
Logged
aeTIos
Nonbinary computing specialist
LV12
Extreme Poster (Next: 5000)
Posts: 3915
Rating: +184/-32
Re: How do you make games with coding???
«
Reply #1 on:
February 25, 2012, 10:27:03 am »
Basically, what most games do is repeat one or more loops to get everything done (with routines and stuff).
btw you better make your questions more closed. (like "how do i code feature x as seen in game y")
«
Last Edit: February 25, 2012, 10:28:23 am by aeTIos
»
Logged
I'm not a nerd but I pretend:
runeazn
LV4
Regular (Next: 200)
Posts: 191
Rating: +5/-3
Re: How do you make games with coding???
«
Reply #2 on:
February 25, 2012, 10:28:09 am »
how the heck can a loop show something?
ok itll loop the draw comment everytime.
but ho wdoes it pickup if lets say a picture bumps onto another picture, and this results into a movement of the other picture?
«
Last Edit: February 25, 2012, 10:28:56 am by runeazn
»
Logged
aeTIos
Nonbinary computing specialist
LV12
Extreme Poster (Next: 5000)
Posts: 3915
Rating: +184/-32
Re: How do you make games with coding???
«
Reply #3 on:
February 25, 2012, 10:31:15 am »
In a modern programming language, you have a display routine that draws stuff to the screen. (for example called
void draw{ }
). This routine is called every frame.
«
Last Edit: February 25, 2012, 10:31:54 am by aeTIos
»
Logged
I'm not a nerd but I pretend:
runeazn
LV4
Regular (Next: 200)
Posts: 191
Rating: +5/-3
Re: How do you make games with coding???
«
Reply #4 on:
February 25, 2012, 10:32:00 am »
display routine?
Logged
aeTIos
Nonbinary computing specialist
LV12
Extreme Poster (Next: 5000)
Posts: 3915
Rating: +184/-32
Re: How do you make games with coding???
«
Reply #5 on:
February 25, 2012, 10:37:35 am »
Yeah, its a routine that does display stuff. Like displaying pictures or text.
Logged
I'm not a nerd but I pretend:
runeazn
LV4
Regular (Next: 200)
Posts: 191
Rating: +5/-3
Re: How do you make games with coding???
«
Reply #6 on:
February 25, 2012, 10:39:35 am »
but how does it detect that a pictures collides with another picture and that the other picture needs to move.
lets say, user, bumps against a box and box needs to move.
what i think you do:
do you code that if that picture is within this area of this picture than this will happen?
is this true?
and whats maa more efficient way to do this?
«
Last Edit: February 25, 2012, 10:41:32 am by runeazn
»
Logged
aeTIos
Nonbinary computing specialist
LV12
Extreme Poster (Next: 5000)
Posts: 3915
Rating: +184/-32
Re: How do you make games with coding???
«
Reply #7 on:
February 25, 2012, 10:41:42 am »
It does not. It's got coordinates of both things and checks if they are close enough if so, move the box.
Logged
I'm not a nerd but I pretend:
runeazn
LV4
Regular (Next: 200)
Posts: 191
Rating: +5/-3
Re: How do you make games with coding???
«
Reply #8 on:
February 25, 2012, 10:45:45 am »
aha ok,
how do you store the said "picture"
in a variable?
and how can it read the said picture? I dont think it cant read jpg or something can it?
«
Last Edit: February 25, 2012, 10:46:14 am by runeazn
»
Logged
aeTIos
Nonbinary computing specialist
LV12
Extreme Poster (Next: 5000)
Posts: 3915
Rating: +184/-32
Re: How do you make games with coding???
«
Reply #9 on:
February 25, 2012, 10:50:15 am »
All modern programming languages can read jpg. (png is used more)
And they "store" those pictures by telling the program that "this file is a picture"
Logged
I'm not a nerd but I pretend:
runeazn
LV4
Regular (Next: 200)
Posts: 191
Rating: +5/-3
Re: How do you make games with coding???
«
Reply #10 on:
February 25, 2012, 10:56:38 am »
so it calls a img everytime ok.
how does it get continuously the "keys" of movement?
all i have worked up till now is the input command but it will wait till something is inputted and after that it would continue.
This would be no plausible solution to use right?
how do we do it now?
Logged
aeTIos
Nonbinary computing specialist
LV12
Extreme Poster (Next: 5000)
Posts: 3915
Rating: +184/-32
Re: How do you make games with coding???
«
Reply #11 on:
February 25, 2012, 11:01:16 am »
Programs take keycodes. Every key on a keyboard has a different signal. The program reads the signal every loop and just continues when there's no key pressed.
Logged
I'm not a nerd but I pretend:
BlakPilar
LV8
Addict (Next: 1000)
Posts: 734
Rating: +44/-1
Re: How do you make games with coding???
«
Reply #12 on:
February 25, 2012, 11:07:43 am »
All games come down to the basic game life cycle. I recommend watching
this video
. Though it's for XNA (.NET) and not Python, it gives a pretty detailed overview and explanation of the life cycle.
Logged
runeazn
LV4
Regular (Next: 200)
Posts: 191
Rating: +5/-3
Re: How do you make games with coding???
«
Reply #13 on:
February 25, 2012, 11:22:56 am »
lets say pong, how do you let the ball move from direction?
or better said how do you move a object without user input.
Logged
aeTIos
Nonbinary computing specialist
LV12
Extreme Poster (Next: 5000)
Posts: 3915
Rating: +184/-32
Re: How do you make games with coding???
«
Reply #14 on:
February 25, 2012, 11:25:04 am »
Do (ballpos)+1->ballpos every loop.
Logged
I'm not a nerd but I pretend:
Print
Pages: [
1
]
2
3
Go Up
« previous
next »
Omnimaga
»
Forum
»
General Discussion
»
Technology and Development
»
Computer Programming
»
How do you make games with coding???