making bond man a stage

  Рет қаралды 4,862

michaelwave

michaelwave

Күн бұрын

Пікірлер: 40
@PowerPandaMods
@PowerPandaMods 5 ай бұрын
I love that this simultaneously feels like a MM1 level, while also feeling unique from the other MM1 levels. For a boss fight, I think that Bond Man would try to trap you in place, and then slam into you from above. Like other MM1 bosses, it wouldn't need to be complicated.
@xavierjuno4572
@xavierjuno4572 5 ай бұрын
Sounds almost like Slash man's boss fight
@Zieldak
@Zieldak 5 ай бұрын
The MM1 guy is here to ruin the day or something I guess? Things that are spot-on: - Graphical style is very accurate. You had 3 16x16 stage specific tile slots unused which is pretty close to MM1's space limit. It's true that MM1 didn't use its 4 palettes cleverly, but 2 of the 4 palettes are left completely unused here. - Guts Lifts, Gabyoalls and Killer Bullets being able to appear on screen at the same time without graphical glitches. Edit: There'd be even enough RAM space for the barrel enemy's graphics too actually. Nice. - Gabyoalls only treat solid blocks as walls in MM1, they go through spikes and ice blocks. You successfully avoided putting them next to 1 tile high glue blocks, even if by accident. Edit: As a fun fact, MM3's electric ones don't even check for walls lmao - Guts Blocks are not placed on different backgrounds before the boss corridor. The game loads a different 32x32 texture in place of the block before and after the first boss door. Things that I'll let slide: - MM1's engine can only do 4 different collision types at once. This is because palette data and collision data for a single 32x32 block is stored in a single byte. Bitwise $10, $20, $40, $80 are for collision, $01, $02, $04 and $08 are for palette data, and which collision bit is which block type is read from a lookup table. Your level breaks this limit, as it has Null, Solid, Ladder, Spike, and Glue. It however would be possible to trick a part of the collision system to consider ladders as spikes on certain circumstances for example with a simple enough hack. Since your enemies do not interact differently with the glue blocks, I'll just assume there's code in place that overrides the output of the map reading subroutine by reading the player's location and comparing it to screen and x position lookup tables, and depending on the result, it swaps the ladder block type to the glue block type. I actually did this in my WIP MM1 hack, as rewriting half of the game just to be able to use more block types at once would have been a nightmare. It just works. The technical stuff you wouldn't know about without touching the MM1 level editor at least once: - You didn't use the NES section type scroll stops at all. MM1 room data is made up of 8x8 32x32 metatiles, with the bottom 16x16 tile row completely ignored when reading the room data. In short, if someone decided to remake this level in the actual ROM, they would be missing some tile data. However, there's a bigger problem... - There are only 192 unique 32x32 metatiles available to use per RM/Wily stage pair in MM1. The engine can't do more without... doubling the ROM size and rewriting the entire game to store each level data in a different bank and rearranging all the data in the ROM. You used 240 or so unique 32x32 metatiles. That's about 2-2.5 RM stages worth of 32x32 metatile data! MM1's space constraints are that ridiculous. - In vertical sections, falling down on the wrong side of the screen back into a multiple-screen horizontal section would cause the camera to instantly focus on Mega Man in the original game. Not a good sight to be honest. The room at 8:28 and 9:58 are good examples, both having pits on the left side with a horizontal section down below. The originals (notably Cut Man) always tried to make it impossible to fall back to the previous screen in these cases. - In MM1, Guts blocks can only be placed on a 32x32 grid (from the top-left of the screen) without the game overriding the wrong background tiles. Loading graphics is done entirely in 32x32 chunks. It really sucks actually. Not only that, Mega Man would fall inside the blocks after the screen transition, as Guts Block collision is completely disabled during and after screen transitions until the player regains control of Mega Man. That's why Cut Man's boss room has a small ledge next to the door. Enabling the collision would open up a different can of worms... The technical stuff you wouldn't know about without looking at the game much closer: - Mega Man 1's engine simply cannot do the lift screen transition without major modifications to the screen transition and object handling subroutines. It'd be possible to code this though (albeit would probably use up the remaining free space in the ROM, leaving none for anything else), and vertically* moving lifts are completely doable. Edit: How did I type horizontally instead of vertically?
@michaelwave1997
@michaelwave1997 5 ай бұрын
this is an incredibly good analysis!! thanks a ton for taking the time to write this! while i was going for more of a halfway-accurate halfway-modern style for the level design, i did wonder what the level could be like working with the nes games' metatiles and such also in planning for the video i was wanting to use the mm1-6 quads though tiled didnt support them unfortunately :/
@jess648
@jess648 5 ай бұрын
this is like if mm9/10 had been based more of mm1
@Zieldak
@Zieldak 5 ай бұрын
@@michaelwave1997 While there's no option to change the quad size when creating a new map, the Tiled Megamix fork does technically support any quad sizes. The width and height of the map are not editable within the program, but you can edit these parameters manually in ordinary text editors (existing tile layers will retain the old dimensions, editing the dimensions of those layers will corrupt the file unless you manually expand the CSV/Base64/XML data, but newly added ones use the new map size) or you can just click the 'Infinite' checkbox and the map will be dynamically resized, I don't like it though. However, even if you don't do all that, simply using your own quad grid (just a layer that you put on top and you draw the quad grid yourself with tiles then lock it lol) and using the NES type camera will do the trick just fine. If you want to revisit this idea later in the future, like for an 'if Oil Man and Time Man were originally in MM1' scenario or something or if you are just simply curious, for checking how many 32x32 metatiles you have currently used in your level with the NES quads, you can make a copy of your level in Tiled, remove the object layers, if using the NES style camera then expand each screen to be 256x256 by adding an extra row of tiles below each screen (between screen transitions too) and filling in the blanks, export the result as an image, use GMare's import from image function, and import the map with 32x32 tile size. It's a bit of a pain to do each time though. This reminds me, there's a good reason why the 10+ year old MM3->MM9 NES demake was quickly abandoned. Most of MM9's levels just use way too many metatiles for how MM3-MM6 were programmed. There'd be a way to get around that though in MM3 and possibly other games too. Doubling the size of the metatile table to 512 and adding a 256 byte bitwise lookup table to determine which page of the metatile table should be read when reading the room data. It'd take just 1.25 kb of ROM space per level to do so. Though that's easier said than done cuz a duckton of code would be needed to be relocated (a nightmare) or 16x16 tiles would need to be limited to 128 instead of 256 (there's no real need for 256 unique 16x16 tiles), though I'm pretty sure it still wouldn't be quite enough free space per bank in MM3's case.
@ivanmegafanboy1981
@ivanmegafanboy1981 2 ай бұрын
Wow
@RandomMcSomethin
@RandomMcSomethin 5 ай бұрын
BOND MAN GOT A NEW STAGE 🎉🎉😎🥳🥫
@drinkspartypack
@drinkspartypack 5 ай бұрын
i love your sprites they look so true to the original art style
@robertlupa8273
@robertlupa8273 5 ай бұрын
Those vertical Guts Lifts give me Nail Man flashbacks @_@
@adhoclavaman
@adhoclavaman 5 ай бұрын
It's always fun to see other people replicate the MM1 art and level design style. Nice work.
@SomeRobIoxDude
@SomeRobIoxDude 3 ай бұрын
In all honesty, id like to see a entire fangame based off of mm1 level design thats actually good
@Metrocysh
@Metrocysh 5 ай бұрын
I honestly couldn't understand the voice very well, but still, the art and the level layout looks so nice! It's a nice usage of the guts lifts and feels very faithful! Good work :3
@retroghostx3788
@retroghostx3788 5 ай бұрын
I remember when I made a level for bond man in Mega Man maker back when it was called Mega Maker, it became pretty popular
@DarksTunes
@DarksTunes 5 ай бұрын
Awesome Level! It really felt like you took the good parts about the MM1 level design and put them to good use with this. Also didn't expect to hear my remake of that One Shot One Kill theme! Thanks for the credit!
@SkipperTheSuperGamer
@SkipperTheSuperGamer 5 ай бұрын
Pretty good, and much better than my Bond Man from MAGMML2!
@robertlupa8273
@robertlupa8273 5 ай бұрын
Eyyy, nice to see that level's creator in the comment section. :)
@SomeRobIoxDude
@SomeRobIoxDude 3 ай бұрын
Honestly, both stages are good in their own ways
@NIMPAK1
@NIMPAK1 5 ай бұрын
I have an idea for Bond Man's boss pattern that would fit MM1. He'd have two attacks, a glue shot and a line of rapid fire regular shots. Getting hit with the glue shot doesn't hurt you but will make you get stuck for a short period of time and force you down to the ground if you were in the air. You can get out of the glue faster by mashing left and right. The glue shot also obeys gravity and will drift downwards after being shot. For his pattern, he'll start just running left and right, turning when he hits a wall. If Mega Man presses A, he'll jump in the air and fire a glue shot. If Mega Man is glued down, he'll fire rapid fire shots at you. If Mega Man presses B, he'll fire rapid fire shots at you and then jump. The strategy would likely involve baiting him by pressing A at the right time, so he'll jump without you getting hit by the glue shot. The weapon he gives is the glue shot itself. It works just like his own glue shot, except it actually does do damage. It would be good against flying enemies which would force them into the ground and automatically destroy them. As for weapon weakness... I'd probably go with Guts Man, since I feel like that would be one of the more risky options.
@SomeRobIoxDude
@SomeRobIoxDude 3 ай бұрын
In all honesty, if oil man and time man were in this conceptual version of mm1, i imagine Oil Man could be Bond Man’s weakness
@themilkstar
@themilkstar 5 ай бұрын
making a fangame now that's exclusively bond man's stage and nothing else like there's 8 robot masters but they're all bond man and all of the wily stages are just bond man as well mega man: bond man edition gonna be the first mega man game to sell 1 bondillion copies JOKES ASIDE I did actually play the stage it felt super accurate to the weird janky charm of mega man 1
@caramelflann
@caramelflann 5 ай бұрын
This looks cool but there's no score counter, making it absolutely unplayable (Good job tho this is cool)
@smnio5619
@smnio5619 5 ай бұрын
they also missed the Doctah Wahwee at the top of the boss door
@caramelflann
@caramelflann 5 ай бұрын
@@smnio5619 I don't think that was in Megaman 1
@THEPINKONEISHERE
@THEPINKONEISHERE 5 ай бұрын
Bond man’s weakness: mega buster
@Enlightenment0172
@Enlightenment0172 5 ай бұрын
I challenge you to propose this to the indie devs working on Mega Man Maker
@blossom6309
@blossom6309 5 ай бұрын
Great stage
@looeyg
@looeyg 5 ай бұрын
Mega man 1 custom levels? Never though I’d see the day As a level desinger I have to say this is very good, but heads up, next time you do mega man levels jump when entering a boss door:)
@DoubleWarp18
@DoubleWarp18 4 ай бұрын
What did you do to create the room with Tiled?
@michaelwave1997
@michaelwave1997 4 ай бұрын
there's a tiled fork set up to work with the megamix engine -github.com/MightyPrinny/TiledGMS14ME
@zianblox
@zianblox 5 ай бұрын
Michaelwave can you make a megaman fangame
@arevalo8117
@arevalo8117 5 ай бұрын
nice
@RollingCutter
@RollingCutter 5 ай бұрын
Awesome!
@Epicman33456
@Epicman33456 5 ай бұрын
Sweet
@SamArt6607
@SamArt6607 5 ай бұрын
, but what did you use to make this:$
@michaelwave1997
@michaelwave1997 5 ай бұрын
this is made using the megamix engine! instructions for downloading and using it can be found here - www.magmmlcontest.com/megamix.php
@Izzythemaker127
@Izzythemaker127 5 ай бұрын
I don't know enough about mega man to know why bond man doesn't already have a stage, but this is cool good job
@EmilioFM06
@EmilioFM06 5 ай бұрын
Bond Man is a discarded Robot Master from Mega Man 1.
@Izzythemaker127
@Izzythemaker127 5 ай бұрын
@@EmilioFM06 Thx
@Royvpizza
@Royvpizza 5 ай бұрын
@@Izzythemaker127 He and Oil were both discarded back in 1987, however, in 2006, Oil was re imagined for Powered-Up and Time probably took Bond's spot for some reason. EDIT: Ice Man was originally going to be Bubble Man with a water element.
Mega Man 1 Was Special....
11:44
Rockin Kat Reviews
Рет қаралды 2,3 М.
Booster Course Coconut Mall Kinda Sucked... So I Fixed It!
41:38
Charlie's Café
Рет қаралды 139 М.
It’s all not real
00:15
V.A. show / Магика
Рет қаралды 20 МЛН
Une nouvelle voiture pour Noël 🥹
00:28
Nicocapone
Рет қаралды 9 МЛН
if Mega Man was a 3d game
8:04
CodyCantEatThis
Рет қаралды 417 М.
I Made A Waluigi Game!
9:30
Endo
Рет қаралды 123 М.
How To Make a FIGHTING GAME In Godot! [Complete Course]
29:00
helewrer3
Рет қаралды 14 М.
Mega Man Maker: The Nightmare of Elecman
21:13
Paper Joe
Рет қаралды 24 М.
Making a difficult game about fitting in - Acerola Jam 0
19:17
jess::codes
Рет қаралды 460 М.
How To Fail At Level Design
3:54
Artindi
Рет қаралды 125 М.
Why Stardew Valley’s Creator Hated His Game
20:17
Nello
Рет қаралды 1,3 МЛН
The Basics on Bond Man - Mega Man
5:33
Rockman HQ
Рет қаралды 3,7 М.
The Unseen Side of Speedrunning - 4:58.941 All Attempts [SMB1 Any%]
7:02
FlibidyDibidy
Рет қаралды 3,6 МЛН
Mega Man:Fully Charged is Bizarre
11:00
Real Renaissance Man
Рет қаралды 278 М.