Game Ideas
|
Post your ideas for new games here, or build on ideas posted by other visitors.
|
|
Reply to this item
|
Re: Game Ideas
|
cloud867
|
I've never seen so many people (or is it just one or two people?) request so many different games from programmers! Slow down man! Programmers can only do so much...and some ideas just aren't worth it. Also these things we're programming are CALCULATORS. They're very capable...but they can't perform miracles! Maybe you should learn ASM and make some of your own ideas reality!
|
|
16 November 2003, 06:52 GMT
|
|
Re: Game Ideas
|
Davy Anthonissen
|
Hello, could someone tell me how to recognize an y-coordinate in a menu. For example:
-> play
help
info
...
When you push 2 times [down], How do you jump into your program to label "info"????
Can someone help me???
Thanks
|
|
21 November 2003, 21:42 GMT
|
|
|
|
|
I Can Help!!
|
Nick_S
|
;blah
;blah
;blah
bcall(_clrscrnfull)
ld a,4
ld (currcol),a
ld a,1
ld (currow),a
ld hl,menu_item1
bcall(_puts)
bcall(_newline)
ld hl,menu_item2
bcall(_puts)
bcall(_newline)
ld hl,menu_item3
bcall(_puts)
bcall(_newline)
ld a,(cursor_y)
ld (currow),a
ld a,0
ld (curcol),a
ld hl,menu_cursor
bcall(_puts)
cursor_loop:
bcall(_getkey)
cp kup
call z,up
cp kdown
call z,down
cp kenter
jp z,selection_made
cp kclear
ret z
jr cursor_loop
down:
ld a,(cursor_y)
cp 2
ret z
inc a
ld (cursor_y),a
ld (currow),a
ld hl,kill_cursor
bcall(_puts)
ld hl,menu cursor
bcall(_puts)
ret
up:
ld a,(cursor_y)
cp 0
ret z
dec a
ld (cursor_y),a
ld (currow),a
ld hl,kill_cursor
bcall(_puts)
ld hl,menu cursor
bcall(_puts)
ret
selection_made:
ld a,(cursor_y)
cp 0
jp z,play
cp 1
jp z,help
jp info
menu_item1:
.db "Play",0
menu_item2:
.db "Help",0
menu_item3:
.db "Info",0
menu_cursor:
.db "->",0
kill_cursor:
.db " ",0
cursor_y:
.db 0
play:
;blah
;blah
;blah
help:
;blah
;blah
;blah
info:
;blah
;blah
;blah
|
|
13 March 2004, 10:16 GMT
|
|
Re: Game Ideas
|
sancho
(Web Page)
|
has anyone played grand prix or outrun (thought it's the right name) cars games for the pc I have seen this grand tourismo game and althought its great at driving it doesnt have cool graphics at all, I would like to see a car game where you can see the back of the car while you drive trying to evade other cars, i have even seen games like this in cell phones why dont you programing gods make a game like this for the 68k calcs??
|
|
24 November 2003, 17:47 GMT
|
|
New Game
|
xfan2003
(Web Page)
|
I have a sort of "Challange" for anyone that wants it.
->Some try to program Killer Instinct (the SNES game) for the TI-83+
I know theres some fighting games out already, but try to keep this one close as posible to the original (charachters, moves, combos, [combos especially]).
If not thats cool, but just try it. I would help, but im barely starting to learn asm, so i wouldnt be able to get far.
If anyones interested, let me know by e-mailing me.
Later, \m/
|
|
25 November 2003, 22:57 GMT
|
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
You can change the number of comments per page in Account Preferences.
|