123
-=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- (c) WidthPadding Industries 1987 0|453|0 -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=-
Socoder -> C/C++/C#/Other -> Flap Happy and Fancy Free!

Page : 1 2 Next 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Prev
Mon, 06 Nov 2017, 16:46
cyangames

Flap Happy and Fancy Free!


My port of Flapadiddle is beginning, after taking my last NES game attempt as more extended learning than an actual game, I'm attempting to do that lovely procedural generation of levels on a 6502, with a proper,seeded PRNG, Demo levels viewable here, with limits to 8-bit integers for testing.

refreshgames.co.uk/randomness.php



Hopefully the game can fit nicely into 32kb, with many, MANY levels! Gooo proc gen!

-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Mon, 06 Nov 2017, 17:21
Jayenkai
Good luck!!

The way the original works.
Fill screen with random spikes.
Place 5 platforms within certain X sections. Eg, leftmost platform in somewhere in first 20% of screen, rightmost in last 20%, others inbetween.
Next, erase any spikes within an X radius of platforms.
Next, pick a random y value for each of the 20%s, and erase spikes within a certain height of that y value, to create a horizontal corridor at y.
Then, create a vertical shaft from platform to the y, to ensure each platform can reach a horizontal area.
Last, cut additional vertical shafts between the midpoints of each 20%

It’s VERY formulaic, but given a "not completely full" random set of spikes, the level looks random enough.

-=-=-
''Load, Next List!''
Tue, 07 Nov 2017, 02:17
cyangames
Thanks, I'm going to need it! I'm planning on using this approach for the moment, it'll need some tweaking but it's essentially:

Fill screen with spikes
Place verticals up from the platforms
Carve a random path out left to right with a set height ( maximum height change of 1 or 2 blocks per column)
Carve another, shorter path out left to right (max height change of 1)
Then once more, same height, left to right (max height change of 1).

Dot some spikes around randomnly.
Dot some blank spaces around
Place up to 5 platforms where they can appear, based on surrounding blocks being empty.

Bit compress it down so each tile is only 2 bytes
Output to the screen.

It does need some changing, mainly in the placing of the platforms I reckon.

-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Mon, 20 Nov 2017, 02:04
cyangames
Starting to tackle the NES Audio Processig Unit after a lot of failures attempting to integrate famitone.

It's kinda like the gameboy one, but the exact opposite at the same time.

Mainly that it uses period instead of frequency so, upping the period value reduces the frequency instead of what I'm used to, ha!

Goona write up some sorta sfx tool along the same lines as my gameboy one, should be a good starting point.

-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Mon, 20 Nov 2017, 18:13
cyangames
Okay, got control over a couple of beeps and scaling, longer beeps. Will maybe add fading tomorrow and other stuff, possibly multi channel gubbins.

-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Thu, 23 Nov 2017, 05:57
cyangames
I finally upped my high score on hard mode btw Jay

-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Thu, 23 Nov 2017, 06:03
cyangames
Considering adding different worlds with mobile enemies inside each one,

Classic (no enemies)
Woodland with leafs instead of spikes and falling spider type things
and errr. others? I'll have to think about it a fair bit!

-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Thu, 23 Nov 2017, 06:04
Jayenkai
Go nuts!! Can’t wait to see what you can come up with.

-=-=-
''Load, Next List!''
Thu, 23 Nov 2017, 06:09
cyangames
Don't mind if I do!!!

Well, I'm putting together a "function" library formyself in ASM currently, so I have some sorta of a game engine to make single screen games a bit easier to make.

Super Floofy Sheepie taught me a fair amount about what to do and not to do in assembly so this is building from that in a sense.

-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Wed, 29 Nov 2017, 13:40
cyangames
Quickie update.

Had a good few hours to code today and got started on the function library for some NES games, there's a legit title screen and actual planning going on this time as opposed to me doing things very much off the cuff.

-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Wed, 29 Nov 2017, 14:43
Jayenkai
Kewly! A NES Framework
Wed, 29 Nov 2017, 15:52
cyangames
Aye, It'll all be in ASM still once it's ready though so I don'tk now how much use it would be to others but, we'll see how it develops.

-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Sat, 02 Dec 2017, 14:17
cyangames
Re-did the title screen in ASM today and got that bird a flappin' and a squawkin'




-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Sat, 02 Dec 2017, 14:20
Jayenkai
\o/yeay\o/
Sat, 02 Dec 2017, 16:14
cyangames
Level generation is proving to be a lil tough, as it thought, when you're only able to mainpulate reigsters, things get tough fast!

I'm sure there's a way i can use a switch -case scenario to make life easier but for now, time to chill, at least the initial block to lift you off is proc gen now

-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Sun, 03 Dec 2017, 17:10
cyangames
Getting somewhere tonight with the level path generation -->



Add a few more paths to it and I might be getting somewhere close to some nice levels!

-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Wed, 06 Dec 2017, 05:22
cyangames
Got that sweet, sweet background collision working this morning, yeah!!!

-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Wed, 06 Dec 2017, 06:19
rockford
It's always great to see a main mechanic becoming a thing of reality
Wed, 06 Dec 2017, 07:59
cyangames
Yes, it really is, pretty excited to get further with this one!

Nailed the level geneation down a lot more today also.



-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Wed, 06 Dec 2017, 15:46
cyangames
I'm kinda planning on 2 player co-op and vs modes. Probably best over 3 levels and total combined score on co-op mode.

Maybe combine it with a timer for speed runs or something perhaps? I reckon it has potential for it.

That and multiple worlds, varying themed enemies / obstacles would be cool to add into it.

We'll see how it goes

-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Fri, 08 Dec 2017, 13:58
cyangames
Rough box art done!



It needs some work on it

-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Fri, 08 Dec 2017, 15:43
Jayenkai
Neato!

.... Flappychick looks a little ghost-like, though!!

-=-=-
''Load, Next List!''
Fri, 08 Dec 2017, 15:50
rockford
Flappychick looks a little ghost-like, though!!

Yeah, to be fair I thought that too. What size sprite are you using for the main character. Would you be happy with some graphics input?
Fri, 08 Dec 2017, 17:07
cyangames
I'm using two separate sprites stacked on top of each other with I think... 6 frames of animation total (2 head, 4 body). Knowing me, I'll likely change over to some sorta penguins at some point.

Should I have enough spare tiles I'll probably bung a character select along the way. Should have space for 4 of the lil blighters. With palette swaps for player 2.

I only have 128 tiles total to use here however as I'm planning on doing some 2 frame background animation by swopping the sprite tiles for the bkg ones, etc.

I agree btw, this tinified flappy chick is a bit ghosty


Here's my tileset I'm working with currently


-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Fri, 08 Dec 2017, 17:31
cyangames
Got started on the back just now, but time to sleep, busy day with kids tomorrow



-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Thu, 14 Dec 2017, 02:19
cyangames
Added the flame wheels last night, spent most of the day looking after Layla instead which was lovely, just hope she's (and the rest of us) are all better before Chrimbo.

I have put in the platforms as background tiles whilst testing and they sort of work but need some sorta fixing to prevent the "bobbling" effect on them.

Might bung some death-splosions in there tonight also

-=-=-
Web / Game Dev, occasionally finishes off coding games also!
Page : 1 2 Next 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Prev