Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - dra600n

#1
Second Dimension Chat / Kickstarter - Affinity Sorrow!
January 28, 2022, 18:08:16 PM
Hey everyone!

We're at it again :)

https://www.kickstarter.com/projects/seconddimension/affinity-sorrow-a-true-16-bit-turn-based-rpg-adventure

Nearly 75% funded! If you like RPG's, check this out <3
#2
Eyra MD will be shipping within the next week!
#3
Second Dimension Chat / Eyra, the Crow Maiden Kickstarter
February 16, 2020, 05:26:31 AM
Hey everyone! We just launched our newest Kickstarter campaign for Eyra, the Crow Maiden, a brand new NES game with a stretch goal of a sega genesis port!

Check it out here: https://www.kickstarter.com/projects/seconddimension/eyra-the-crow-maiden-a-new-adventure-for-the-nintendo-nes?ref=rvg
#4
So the thing with keeping the exact same time across all machines, and regions, and being 100% the exact same speed just isn't possible (I don't think anyway) on the console without ancillary hardware inside of the cartridge (such as a clock). This is because you'd have to rely on everything to utilize the same code/hardware/standard, which there's no standard to keep things uniform.

That being said, you can get close by keeping a counter ticking during vblank. Here's some skeleton code of how to set that up:



Dim ClockSpeed As Integer
Dim Timer As Integer
Dim hours As Integer, minutes As Integer, seconds As Integer




If TvType() = 0 Then
ClockSpeed = 60
Else
ClockSpeed = 50
End If

On VBlank GoSub vblank_routine
Enable InterruptVBlank

While 1 'infinite loop
Locate 0,1: Print "Clockspeed: "; ClockSpeed
Locate 1,1: Print "Timer: "; timer; "                "
Locate 2,1: Print "Seconds: "; seconds; "    "
Locate 3,1: Print "Minutes: "; minutes; "    "
Locate 4,1: Print "Hours: "; hours


Wend




vblank_routine:
Timer++
If Timer = ClockSpeed Then
Timer = 0
seconds++
If seconds = 60 Then
seconds = 0
minutes++
If minutes = 60 Then
hours++
minutes = 0
End If
End If
End If
Return


Hope this helps
#5
Teenage Ninja Mutant Turtles, eh? :P
#6
Second Dimension Chat / Re: The Curse of Illmoore Bay
November 20, 2019, 21:14:26 PM
Quote from: zapiy on November 17, 2019, 23:10:37 PM
Well, I have played it and I got to say, wow fella, huge improvements.

Thanks mate! Still have a few things to tweak, but it's coming along real well now!

Quote from: Greyfox on November 18, 2019, 19:11:06 PM
I don't play Megadrive Games, but had to try this out and it was like "WOW" I couldn't believe this was Homebrew dev title..it's 100% retail quality !..Smashed IT!

Thank you! Seriously. I'm hoping this game pushes Second Dimension into the next level.
#7
Second Dimension Chat / Re: The Curse of Illmoore Bay
November 14, 2019, 02:15:33 AM
Let us know what you think! :D
#9
Second Dimension Chat / Re: The Curse of Illmoore Bay
November 13, 2019, 18:35:19 PM
Quote from: zapiy on November 12, 2019, 22:20:48 PM
That must be the Curse of Illmoore Bay striking lol

See what I did there????

Seriously though, that must be a pain?

Boo! LOL!!! The puns that can be used around this game is amazing haha

I *think* I resolved it. I discovered a few oopsies I did, which could've caused a hangup (when you die, if the music doesn't play, then the trigger for the screen transition never comes), but I won't know until more people are able to test it on different setups/configurations (Sega + CD unit, which model sega, which model CD unit, clone hardware, 32x add-on, etc).

If anyone runs into freezes or glitches, I'm just hoping it's 100% reproducible so it's possible to troubleshoot. I'll be releasing the new demo this evening (there's a few more goodies in there for ya'll to find)
#10
Second Dimension Chat / Re: The Curse of Illmoore Bay
November 12, 2019, 21:17:23 PM
I wish I knew some Jaguar coding. Same with Neo Geo. I'd love to make a true arcade rom one day.

That said, I've been working my you-know-what's off since the Halloween Demo. There was a scrolling/performance issue that was driving me crazy. I rewrote a fair amount of code, and while it helped, it only helped slightly. Last night I found the thing causing the hiccups and now that's resolved.

I had one of my buddies test it last night and it locked up once during the regular stage, then locked up again after a death on the boss - neither of which were reproducible, which is going to be a nightmare to troubleshoot.

Hopefully I can find and fix those issues swiftly.
#11
Second Dimension Chat / Re: The Curse of Illmoore Bay
November 06, 2019, 23:15:36 PM
I would love to be finished within the next 3 months, but it's probably looking closer to 4 or 5, putting it finished around March.

All of the tools are built (at least to where I'm okay using them myself, but others would probably frown at them), and all of the graphical assets are created (sans touchups and the like), and the music is nearly all composed (2 tracks are in progress currently and 4 remain past that).

The main things I need to finish up for the engine are the colored doors/keys to enable the power-ups/extra boosts and such, and the other stage enemies AI and boss AI.

So, there's a lot of little things to tidy up with the engine, some medium work with the enemy AI's, and a fair amount of work for the boss AI's. Plus the other Kickstarter features (boss rush, achievements, SRAM stuffs, etc)
#12
Second Dimension Chat / The Curse of Illmoore Bay
November 06, 2019, 19:46:48 PM
Hey Everyone!

Some of you may be familiar with this project from the Kickstarter campaign earlier this year, but in case you've missed it, I'm hear to babble on about it :)

Firstly, the first world (there will be 6 worlds all together) is finished and available for play in the demo (link at the end). The game is an adventure platformer for the Sega Genesis.

Here's a video of a playthrough of the demo: https://www.youtube.com/watch?v=_FB6UYeHHrY

You can download the demo, as well as preorder the game, here: http://www.second-dimension.com/shop/product/33

Please note about this demo: There's some floor collisions that need to be updated and you can't shoot your fireball in the air. Future demo updates will have these issues fixed (the floors are already fixed, just not in the released demo).

I hope ya'll enjoy it!

Cheers!
#13
Quote from: RPC_GAMES on May 20, 2019, 23:22:57 PM
How cool. Great work!!!! I don't know much about the Sega Genesis.
What's the screen resolution and how many on screen colours can the hardware handle?
Pete.
Thanks! The resolution is 320x224. The genesis can display 4 palettes with 15 colors plus 1 transparent color. Without tricks, 61 colors are displayable.
#14
Kickstarter is live - lots of new screenies and a demo available!

https://www.kickstarter.com/projects/seconddimension/the-curse-of-illmoore-bay

Hope you all enjoy it!!
#15
Alright, it's been a bit since I've given an update.

First, here's a video:
https://youtu.be/uGBMiam66P0

There's 2 music tracks in this preview - one at the intro screen (you can skip it if you want), and one for the stage. It's missing some sound effects still, and some things need tightening up, but it's coming along pretty well!

There's also some preview screens for the cut scenes :)