8-Bit Minecraft Pt. 2: There's A Reason This Doesn't Exist

Поділитися
Вставка
  • Опубліковано 14 січ 2025

КОМЕНТАРІ • 1 тис.

  • @InkboxSoftware
    @InkboxSoftware  Рік тому +210

    The first 100 people to use code INKBOX at the link below will get 60% off of
    Incogni: incogni.com/inkbox

    • @LavaCreeperPeople
      @LavaCreeperPeople Рік тому +7

      8-Bit Minecraft: There's A Reason This Doesn't Exist

    • @JimMilton-ej6zi
      @JimMilton-ej6zi Рік тому +16

      it's a scam

    • @yourneighbour3309
      @yourneighbour3309 Рік тому +1

      great vid

    • @TSTRUSS
      @TSTRUSS Рік тому +11

      its like promoting temu and established titles, its a scam but most creators don't know that

    • @JimMilton-ej6zi
      @JimMilton-ej6zi Рік тому +8

      @@TSTRUSS Either way they should be responsible for anyone who uses their affiliate code and ends up scammed by the service, that's the only way these types of scams will stop.

  • @mindthemoods
    @mindthemoods Рік тому +5535

    Here's an idea: what about a control to rotate the current chunk 90 degrees? So you could see multiple sides of things? I'm sure this would be super easy to implement and would in no way totally break every core system you've made thusfar.

    • @yuval3210
      @yuval3210 Рік тому +201

      😂😂😂

    • @TheGeekRex
      @TheGeekRex Рік тому +382

      I do wonder how difficult that would be. I don't know a thing about assembly or anything, but wouldn't it simply involve reading the chunk data in a different order? So instead of north to south, you read south to north. Then you just recalculate the player's position and rotation.

    • @Gipsy_T.
      @Gipsy_T. Рік тому +66

      Hahahaha that was such a clever joke

    • @anchs2501
      @anchs2501 Рік тому

      ​​@@yuval3210
      Dear yuval
      I hope this message finds you well. I wanted to offer a friendly perspective on your recent comment, which contained the emoji "😂" in response to the assertion that "a control to rotate the current chunk 90 degrees would be easy to implement." While humor and laughter are often delightful in the right context, it's essential to consider the appropriateness of such expressions.
      The original comment simply stated the feasibility and grants of implementing a control to rotate the current chunk 90 degrees which is a straightforward observation and not inherently humorous. Using laughter in response might inadvertently convey sarcasm or belittlement, which may not align with the intention of the original comment.
      When participating in discussions, it's valuable to maintain a respectful and constructive tone, acknowledging the merit of others' input. By doing so, we can foster a more positive and supportive online environment for everyone.
      I appreciate your understanding, and I look forward to more engaging interactions in the future.
      Best regards,
      Anchs

    • @teets3000
      @teets3000 Рік тому +193

      that sounds so absurdly complex it'd be worth it just for the joke

  • @mindthemoods
    @mindthemoods Рік тому +1746

    As both a Minecraft and arcade nerd, I love the absurdity of this project. Really drives home the level of dedication it took to make games with the limitations of older tech. Very impressive!

    • @LavaCreeperPeople
      @LavaCreeperPeople Рік тому +24

      imagine trying to fit a huge game like Minecraft into an NES/Sega Master System cartridge

    • @boney2982
      @boney2982 Рік тому +15

      @@LavaCreeperPeoplei can’t imagine it would be very good considering the limitations now a Nintendo 64 would be interesting there’s still massive limitations but you have a lil more wiggle room

    • @jmgonzales7701
      @jmgonzales7701 Рік тому

      would minecraft even function in the ps2? @@leeroyjenkins0

    • @blackrainbow4898
      @blackrainbow4898 Рік тому +1

      ​@RepentandbelieveinJesusChrist5shut up

    • @CallumsArmy
      @CallumsArmy 11 місяців тому +2

      ​@RepentandbelieveinJesusChrist5sir, this is 8bit minecraft.

  • @boozydaboozer
    @boozydaboozer Рік тому +1693

    Limit item quantity to 6 bits, that way you have two bits left for special flags. Like specifying that the number reflects durability instead of quantity.

    • @niktniewiem4785
      @niktniewiem4785 Рік тому +76

      yessss! Less is more :D

    • @niktniewiem4785
      @niktniewiem4785 Рік тому +31

      yessss! Less is more :D

    • @thecryingsoul
      @thecryingsoul Рік тому +46

      I would say limit it to 7 bits, that way you can have a clean 99 limit and an extra bit for a special flag

    • @MemeMarine
      @MemeMarine Рік тому +23

      The item ID should already be enough for this since you can look up the item and check if it should be stackable or not

    • @InkboxSoftware
      @InkboxSoftware  Рік тому +632

      Some item types are stackable, some are not. Those that are can use the 6 bits to store the number of items. Those that aren't use the 6 bits to store durability.

  • @Zeemis
    @Zeemis Рік тому +419

    One of the problems you'll run into with isometric is platforming. Jumping from tile to tile, you can easily become discombobulated. Add a shadow that appears under your character as he jumps to help solve this, this'll help players gauge jump distance.

    • @theposhdinosaur7276
      @theposhdinosaur7276 Рік тому +15

      It certainly sounds like a good feature if the engine permits it.

    • @nic_lol4202
      @nic_lol4202 11 місяців тому +28

      But then there would be the problem of having to render the shadow on the lowest block under stanley, since it wouldn't really make sense to have a floating shadow right under your feet while you're falling. Also there would be the problem of having to split the shadow in half while you're standing between a higher block and a lower block, in 2/3 if you're standing more on the block than on the block under ect.. basically it would be needed to render every single pixel of the shadow independently from each other. Also, to make it look good it'd be needed to add a shade to every single block you can stand into in case some of the pixels of them are shadowed. So practically impossible especially with limited VRAM and colours, but this guy is crazy enough to actually somewhat do it, so we'll see

    • @iXenox
      @iXenox 6 місяців тому +4

      Making some of the blocks a bit darker in a checkerboard pattern would make it easier to understand where exactly a block is. It would also be helpful for the block cursor, for the same reason.

    • @cumcumcum148
      @cumcumcum148 5 місяців тому

      I think with isometric view locking the players position in a grid would also help. But it's my preference. Shadow alone works too

    • @o_sch
      @o_sch 5 місяців тому

      @@iXenox block shadows do the same thing but may be too hard to implement
      but basically in isometric there are only 2/3 possible shadow states. The first state is where a triangular half of a face of the block is shaded on all 3 sides, not touching. The other state is the opposite halves. The last state is simply both of these, or fully shaded.

  • @idkk5335
    @idkk5335 8 місяців тому +198

    "should only take me about 2 weeks"
    6 months later...

  • @GermanTopGameTV
    @GermanTopGameTV Рік тому +288

    When you went into the house, an issue with the current design showed: There's no way to "hide all ceilings". Since you don't have the luxury of the first person cam, you need to somehow be able to hide ceilings, otherwise any cave visit or interior space will suck. A cheap way would be to simply stop drawing blocks that are above in Z and infront of the player (with that meaning the sum of x and y exceed of the block exceed the sum of the x and y coordinate of player itself). This way you could achieve something similar to the sims, where you could hide ceilings and walls in front of someone. A +-1 addition can be used to toggle between "no walls", "half height walls" and "full height walls" if you'd like that option.

    • @ibiuld443
      @ibiuld443 Рік тому +37

      option to cull blocks above player's head is a really good idea

    • @icantthinkofaname4723
      @icantthinkofaname4723 Рік тому +7

      My idea would be to not render any blocks that are in front of the player(meaning that their x, y, and z coords are all greater than or equal to the player's, assuming that greater is closer to the camera), but only when the player would be completely covered by blocks. You'd probably also need to render any block faces that shouldn't be visible as black, to prevent x-raying.

    • @eboshidori7748
      @eboshidori7748 Рік тому +6

      i know it would probably take a while to redraw (computationally) but redrawing from different angles would be great combined with the suggestion to cull blocks above the player's head; you could even reuse the old code to have 8 directions for the camera. but i would suggest making the top of the block the same size visually as the side of the block for consistency

    • @bennettcox1857
      @bennettcox1857 11 місяців тому +4

      my idea was to add a block for the door and maybe a clear block that indicates a cave entrance, and entering these blocks changes the whole world to the interior space you're entering

  • @HubrisInc
    @HubrisInc Рік тому +195

    idea: when your cursor is over a block it should show on screen what the block type is, so that if you're selecting an occluded block (say, you're stuck down a hole or inside your beautiful dirt house), you know what it is that Stanley is looking at

    • @SWRDMaster
      @SWRDMaster Рік тому +4

      And auto highlight the block you are walking towards so you know if it is lava or air.

    • @miniepicness
      @miniepicness Рік тому +8

      could maybe draw the same block in a corner or somewhere of the screen

  • @AB-Prince
    @AB-Prince Рік тому +166

    one feature I think could be useful, if possible, is to have all blocks 2 blocks above the player be invisible if the player is below a celing. so that tou could navigate caves or the interior of a house.

    • @haphazard1342
      @haphazard1342 Рік тому +30

      This might need to be a quick toggle, so that you don't lose track of things "above". It would be cool as a translucent overlay but that's probably too difficult/expensive to implement. It would probably require an extra rendering pass to generate the "top" overlay and then another one to re-render the current level slice and then calculate the overlay effect.

  • @NerdGlasses256
    @NerdGlasses256 Рік тому +720

    Let's be honest: If someone got this thing back in the 90's on an 8-bit pc, they would be absolutely freaked out, how amazing it is.

    • @Forke13
      @Forke13 Рік тому +94

      90's? More like 70's or 80's

    • @Scott-sx9qq
      @Scott-sx9qq Рік тому +35

      no kidding. i cant wait for enemies and objectives to make it the greatest true 8 bit rpg ever made

    • @DaddyGandhi
      @DaddyGandhi Рік тому +50

      ​@Forke13 yep seems like people forget we had "3d"(ish) graphics when doom was out in '93 and by '99 we had real 3d with unreal tournament 1 and system shock 2

    • @elibecton3558
      @elibecton3558 Рік тому +7

      most computers were 32 or 16 bit btw, so he would have a lot more to work with

    • @ciclon5682
      @ciclon5682 Рік тому +22

      @@DaddyGandhi actually despite its primitive nature Doom was a fully fledged 3D engine, despite not being able to look up or having rooms above rooms all the collisions and the world itself in doom 1 and 2 are code-wise speaking actual 3D representations with true collision detection and rotating/scaling. the doom engine doesnt simulate 3D it IS 3d. just very archaic.

  • @fromixty
    @fromixty Рік тому +184

    Love to see your channel grow. I said it in the past, but I'll say it again: You're one of the most underrated channels on this platform, and I'm glad your channel was reccomended to me.

    • @dingusbingus7463
      @dingusbingus7463 Рік тому +1

      I originally found his channel from the NESOS video, I feel like there are plenty of people with this creative mindset but just don't make videos.

    • @JacobsKrąnųg
      @JacobsKrąnųg 11 місяців тому

      this dude is advertising scam, his channel should be deleted

  • @aidanmurray8283
    @aidanmurray8283 Рік тому +44

    I was blown away with the first video in this series. And again now. It’s unbelievable how week this is turning out. Imagine brining this to your friends house to play in the 80’s - super cool

  • @haazmat
    @haazmat Рік тому +21

    I love the progress, and the fact that youre not cutting many corners. I feel like most "I remade minecraft" videos would give up at making the inventory, or would make only the most basic items.

  • @featherofajay4667
    @featherofajay4667 3 місяці тому +16

    I assume the fact that the two week timeframe was set 11 months ago means that either you were way off or this proved too difficult and you had to quit.

    • @featherofajay4667
      @featherofajay4667 3 місяці тому +4

      By the way, I would love to see 8-bit Minecraft realized, I'm in awe at this!

  • @otto_ueue
    @otto_ueue Рік тому +196

    The Science Elf and Inkbox are really taking the sentence "if exists, it runs Minecraft" to a whole new level!
    My respect for you two.

    • @UriMachine
      @UriMachine Рік тому +13

      The Doom situation is becoming the Minecraft situation....

    • @dannyweiss5001
      @dannyweiss5001 Рік тому +5

      I wonder how would Minecraft run on Conway s game of life

    • @Bobbias
      @Bobbias Рік тому +4

      @@dannyweiss5001 very very slowly :)

    • @alexela_
      @alexela_ Рік тому

      Yeh, I watched both! Even Zachary Staines is trying to get everything to run minecraft!

  • @keXa2008
    @keXa2008 Рік тому +18

    14:50 So, why not Select+L/R?

  • @JeremyFinch42
    @JeremyFinch42 Рік тому +15

    "Joe, they turned the frogs 8-bit."
    "I licked an 8-bit frog once, and I could see the clockwork villagers."

  • @WHYNOTONY
    @WHYNOTONY Рік тому +52

    5:28 the logo colliding with the subtitles was incredible

  • @xx_epicgamergirl_xx6718
    @xx_epicgamergirl_xx6718 Рік тому +18

    You should also add an outline on top of interactive blocks like chests and crafting tables so if they are behind a block you still know they are there. Looking awesome so far, Cant wait to see it finished!

  • @dacueba-games
    @dacueba-games Рік тому +83

    David must be thrilled to have this on his computer.

    • @poble
      @poble Рік тому +3

      he actually featured it on his latest video

    • @reyariass
      @reyariass Рік тому +2

      @@poblelink?

    • @pimwagemans4848
      @pimwagemans4848 Рік тому

      @@reyariass ua-cam.com/video/mPuP1L7vnr0/v-deo.html

  • @alantyto3627
    @alantyto3627 Рік тому +14

    Man, I thought you could not stretch the limitations of Commander X16 any further, but you keep up your impressive work! Your devotion is remarkable. This project is hands down fascinating, so please keep going and good luck!

  • @tomaszwrobel6387
    @tomaszwrobel6387 Рік тому +8

    If you fall into a maze undergroud the outline won't help you. You should be able to change maximum draw height. This could also be used to remove roof of the house to see inside.

  • @LessThanPro
    @LessThanPro Рік тому +65

    Since this is 8-bit blocks, the stack size should definitely be 8.
    No but really, maybe use the last few bits to affect stack size limits, like how some items are not stackable? Maybe this could even let you have durability using the stack size bits? Great job so far, excited to see how far this gets!

    • @bradywb98
      @bradywb98 Рік тому +9

      Those “attributes” should be implicitly (or nominally i guess) tied to the block ID, not as a separate value like that.

    • @mikafoxx2717
      @mikafoxx2717 11 місяців тому +1

      A stack of 64 would only be.. well, 6 bits. Then another array entry for block type, or maybe durability counter, etc.

  • @TheAdhdGaming
    @TheAdhdGaming Рік тому +8

    suggestion, start + (u/d) scrolls through row in the inventory, use less sprites by using 1 set of tools and changing their colors (stick separate), use smaller flowing for liquids and maybe milk as a liquid, change the player model for armor using change of color pallette, food?, health at 16 to match with the 8-bit, i hope youre having fun making this, good job IB!

  • @danielgysi5729
    @danielgysi5729 Рік тому +14

    This is way more depth than I expected. Well done. I can't wait to see how far you take it

  • @greenknight9000
    @greenknight9000 Рік тому +13

    Incredible work! And I'm delighted to see Emerald Tools be included! Kinda hope that Emerald Tools are the best tier of tools, since that was always a childhood dream of mine hahaha.
    You're really cooking here, keep up the incredible work! Though I think that 8-Blocks would be a better condensed name for the title

  • @Schmidtstone
    @Schmidtstone Рік тому +24

    Still amazing project! Can't wait to see where this is going

  • @Jamesake065
    @Jamesake065 7 місяців тому +33

    Is this still being worked on?

  • @aiden_3c
    @aiden_3c Рік тому +7

    I think having an artificial cap on the number of items you can carry at once would let you open up a few bits for extra info, like durability/enchantments, etc
    You could also make it so different items have a type (block/armor/tools) so you can set the number of bits allocated to what for each if needed
    Mostly just spitballing

  • @popular_dollars
    @popular_dollars Рік тому +13

    Using the sholder buttons to rotate the cursor seems a little unnatural. Have you considered this?: Holding R makes it so the player stands still, so the D pad is free to be used for selecting the 8 surrounding blocks. Holding L or Y also holds the player still, so the up and down buttons are free to change the cursor height.

    • @haphazard1342
      @haphazard1342 Рік тому +2

      I would also consider synthesizing the cursor and character movement. Have the dpad control the cursor position in the x,y plane, and when the player tries to move the cursor beyond the selection range have the character move into the previously-selected position.
      This might end up being annoying though. Depends on whether you're doing more block manipulation or complex movement. Maybe have it toggle?

    • @palmzmetal9131
      @palmzmetal9131 Рік тому +1

      Yeah [button] + D-pad Up/Down for Z pos, and D-pad L/R for rotating

    • @cst1229
      @cst1229 11 місяців тому

      ​@@haphazard1342Maybe the cursor could instead be semi-tied to the player, pointing horizontally in the last direction pressed, and vertically it can be cycled through a few positions using some button (maybe 6; up, a 4-block vertical range in front of the player and down). Though this might be a bad idea.

  • @rijaja
    @rijaja Рік тому +4

    11:15 Congratulations, your 8-bit assembly code can do something renderdragon can't

  • @toyotaae86trueno
    @toyotaae86trueno Рік тому +6

    "vote for you favorite mob"
    everyone : *W O O D*

  • @HaydenTheEeeeeeeeevilEukaryote

    I haven’t played this but from the looks I worry the controls may feel clunky. I know it’s probably arrogant to suggest controls then but maybe something like this could be looked at or built off of:
    • Move: D-Pad
    • Jump: B
    • Scroll Hotbar: L/R
    • Building and Mining: Hold Y, then DPad for lateral aim, L to cycle layer, R to place/mine (depending on what the cursor is overlapping), and still B to Jump to reach higher.
    • If a sword is held, Y is just a simple attack in the DPad direction, no holding it to pop out the cursor or anything.
    • Quick-Place Below You: Tap Y with block selected (this seems good gameplay-wise but feels ugly).
    • Inventory: X
    My thought process is to speed up and simplify building, and because the cursor only appears when you hold Y it wont ruin screenshots. A, Start and Select remain free and unused for any other controls I didnt think of.

  • @patcunha1
    @patcunha1 Рік тому +12

    If you one day add furniture, like furnaces or crafting tables, I think it would be a good idea to add an outline to them too. If you put them inside your house you wouldn’t be able to see them.

  • @elerileigh7926
    @elerileigh7926 10 місяців тому +2

    I’ll see you in six months when that two weeks has finally elapsed

  • @-AAA-147
    @-AAA-147 Рік тому +4

    i like how the early public build of this game mirrors the early builds of actual MC lol

  • @Tripster_Hipster
    @Tripster_Hipster Місяць тому +1

    bro this is amazing and i hope to see more of it. please dont ever give up on this project

  • @pepn
    @pepn Рік тому +7

    This is so impressive! congrats, I can't wrap my head around how much work went into this. Also, the game looks surprisingly playable (the outline feature is awesome)

  • @SomeBlokeOrWhatever
    @SomeBlokeOrWhatever 11 місяців тому +1

    Two things:
    1. Ink blocks by Inkbox was a genuinely clever name. Darn.
    2. Now, I dropped out of a programming-related major because I lacked the touch (I'm in audiovisual production now-) but I distinctly remember one of my professors back in the day telling me that "whatever project you're working on, when you are estimating how long it'll take, take whatever estimate you made, add two and go up an order of magnitude to get the time it'll actually take" - So like, if you think it'll take 2 weeks, it'll take 4 months.
    Edit: Actually third thing, Subbed :)

  • @thechoripankiller
    @thechoripankiller 2 місяці тому +6

    I'd really love to see this game made in java with 3d graphics and first person pov

  • @furnaceheadgames9001
    @furnaceheadgames9001 Рік тому +2

    7:57 in the minecraft xbox 1 edition 'a' was used for jumping, b for dropping stuff, y for inventory, x for crafting or creative inventory, the button with 3 lines was used for menu, the button with 2 squares was used for the player list and host privileges, left joy stick was used for moving, right for rotating, the cross thingy was used to move on the xy plane while flying, the big thing on the top left was used for mining, the one on the right was used for placing blocks, and the 2 little things on the top were used to switch hotbar slot.

  • @eyemotif
    @eyemotif Рік тому +3

    0:15 woah thats crazy, i remember voting in that

  • @kotzka4626
    @kotzka4626 6 місяців тому +2

    I hope you plan to continue this project. It's so impressive and I would absolutely play it.

  • @ShadowManceri
    @ShadowManceri Рік тому +23

    For walking animation I wonder if you could just recolor the bottom 2 pixels with different shade of blue. Then it might look like the feet are moving.

  • @dingusbingus7463
    @dingusbingus7463 Рік тому +2

    5:45 I like to think the aliens are watching your videos with great interest, wishing they could help you with the physics

    • @dingusbingus7463
      @dingusbingus7463 Рік тому

      Also, name idea for the finished project: Stanley's Bits

    • @econo23bis
      @econo23bis Рік тому

      @@dingusbingus7463in french that doesn't sound right😂

    • @dingusbingus7463
      @dingusbingus7463 Рік тому

      @@econo23bis I don't think it sounds right in any language 🤣 which is what I was going for

    • @econo23bis
      @econo23bis Рік тому

      @@dingusbingus7463 i don't think you've got my point try to translate it

  • @the-guy-beyond-the-socket
    @the-guy-beyond-the-socket Рік тому +4

    common optimisation move is to calcutale which blocks are able to be seen by checking if it has a neighbour block being air every time chunk is changed in any way and only drawing those blocks.

  • @calebhale9865
    @calebhale9865 Місяць тому +1

    I have a new-found respect for the guy who made Rollercoaster tycoon in assembly

  • @owenpriddy
    @owenpriddy 17 днів тому +3

    I would’ve been fine with this being the last episode of this series if you didn’t expressly promise more on multiple occasions in the comments section. You’ve been promising releases in weeks for months now. No pressure, just live off of videos like these and have been constantly searching for a part three for the last 2 months.

    • @InkboxSoftware
      @InkboxSoftware  16 днів тому +6

      Two more weeks (give or take)

    • @owenpriddy
      @owenpriddy 15 днів тому

      @@InkboxSoftware love these videos man. I appreciate that you’re trying hard and working on it. Good luck, I look forward to it.

  • @assert_justice3783
    @assert_justice3783 10 місяців тому +1

    Out of the countless Minecraft clones on UA-cam this is by far the most impressive

  • @OddyBuilds
    @OddyBuilds Рік тому +3

    Simply phenomenal work! Perhaps the coolest trick you did was block placement around the player - and speaking of, I emailed you a character sprite sheet for you to freely use if you want it! Hope it helps!

    • @InkboxSoftware
      @InkboxSoftware  Рік тому +3

      Yes, I got it, thanks for your contributions!

  • @Gamesaucer
    @Gamesaucer Рік тому +1

    It might be a good idea to add something like a way to display a "slice" of the world, to make it easier to go underground. Just having an outline won't be too helpful in that scenario, since you still can't see the blocks blocking your way, even if you know where _you_ are. I think the most straight-forward way of doing this would just be to have the ability to hide the top _n_ layers, which would allow you to scroll down to the vertical position you want to look at.
    Some complications with this method arise if you want to hide things from players like the position of ores, which could be done by rendering blocks that are covered on all sides using some placeholder "hidden" sprite instead of the normal one, until they are uncovered. Though I don't know this architecture at all, so there might be better ways to do it.

  • @Agostonhal
    @Agostonhal 8 місяців тому +4

    He said 2 weeks and 6 months later I'm still waiting

  • @swagmastermario8933
    @swagmastermario8933 Місяць тому +1

    8-Bit Blocks is really cool and I respect the dedication. Let's say, hypothetically, you weren't restricted to an upgraded NES system. Imagine how many amazing things could be achieved with even just a 16 bit computer. Anyway I'm sure we all hope to see a potential update to this in the future

  • @work_account_
    @work_account_ Рік тому +5

    This is turning out even better than I expected keep it up man

  • @pedrerrique
    @pedrerrique 10 місяців тому +1

    This is amazing, please continue this project!

  • @thebig_steel
    @thebig_steel Рік тому +12

    This is really impressive, you should be proud of what you've achieved even in alpha

  • @larrythemagicdragon58
    @larrythemagicdragon58 Рік тому +1

    He says "with the next big features to be added being proper mining, and terrain generation, which should probably only take me about two weeks I'd guess" So we'll be seeing the next update in about 8ish weeks!

  • @geange582
    @geange582 Рік тому +3

    petition to change name ‘8-bit blocks’ to ‘Craft-Mine’

  • @deepfriedlostchildren2627
    @deepfriedlostchildren2627 2 дні тому +2

    Should’ve named it 8locks

  • @MACAYCZ
    @MACAYCZ Рік тому +27

    Just a suggestion for the game name, wouldn't be cooler if the 8bit blocks were called 8it blocks? Because the B and 8 looks really similar.

    • @DrTheRich
      @DrTheRich Рік тому +6

      and bitblocks is easier to say

    • @KStarPR
      @KStarPR Рік тому +3

      @@DrTheRich Ate It Blocks

    • @bickle8911
      @bickle8911 Рік тому +2

      that’s a cool idea, bitblocks or 8itocks is a pretty good name

    • @DrTheRich
      @DrTheRich Рік тому +4

      @@bickle8911 or maybe byteblocks since 8bits is a byte

    • @deltap6967
      @deltap6967 Рік тому +2

      8bits miner or 8miner sounds cool but it's pretty similar to 4dminer

  • @rickyrico80
    @rickyrico80 6 місяців тому +1

    1 neat trick I've used back in the day ( C64 era) on isometric games is to treat everything as background, then everything that's below and to the left of the character within a box 2x2 the character size ( 0,0 is bottom left) render those tiles as sprites with priority after the main character. That's way less expensive even a potato could run it glitch free. Assuming there are enough sprites/multiplex slots available.

  • @eboatwright_
    @eboatwright_ Рік тому +3

    This is such a cool project! Can't wait to see what comes next

  • @boulderguywhy
    @boulderguywhy Рік тому +1

    This is looking really nice! one feature that i think might be appreciated is the ability to rotate the camera, and some way of viewing the interior of a cave. It's nice that you can know where your body is underground, but how can you navigate out if you can't see any of your surroundings?? And what's the point of completing builds if certain angles of them will never be visible anyways? otherwise, i think your game is awesome!

  • @word-weaver1001
    @word-weaver1001 2 місяці тому +4

    I can see it's been several months since an update. It's okay to take a break and come back to it, but don't give up...

    • @InkboxSoftware
      @InkboxSoftware  2 місяці тому +14

      Two more weeks

    • @TialsStuff3
      @TialsStuff3 2 місяці тому +3

      @@InkboxSoftware LET'S GOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO

    • @owenpriddy
      @owenpriddy 2 місяці тому +1

      @@InkboxSoftwareI LOVE YOU

    • @owenpriddy
      @owenpriddy Місяць тому +1

      @@InkboxSoftwareany updates?

    • @TheletterR.
      @TheletterR. Місяць тому

      @@InkboxSoftware man please i live of off these videos like drugs

  • @shadowphyre4746
    @shadowphyre4746 Рік тому +2

    Dude this is bonkers! I can't wait for more videos on this! I really hope your channel grows to milions (sure will, and I can say I was here early).

  • @bazookasniper5167
    @bazookasniper5167 Рік тому +5

    Why not Select+L/R for hotbar so its more like normal minecrafts controls? Also Start+Dpad seems like itd be better for block cursor

  • @EirikrTinkerTries
    @EirikrTinkerTries 7 місяців тому +1

    Multiplayer over networking is going to be chaotic and beautiful at the same time.

  • @teaspoon966
    @teaspoon966 Рік тому +3

    This is awesome, both the project and the videos!

  • @luiginator64
    @luiginator64 9 місяців тому +1

    Idea: when the player is obstructed, have the blocks covering them to vanish and when you walk out, re-appear

  • @DeltonAdamsLEGO
    @DeltonAdamsLEGO Рік тому +3

    The design reminds me a lot of Sim City 2000. Love the work!

  • @Illogical.
    @Illogical. Рік тому +1

    I'm also making a Minecraft-like game from scratch in assembly! My project has been on hold since a few days ago. I will likely need to pick a different assembly language and rewrite the world generation and camera control code. I expect my project to take a few years, but right now, I need a break from it.

  • @Bryce_the_Woomy_Boi
    @Bryce_the_Woomy_Boi Рік тому +3

    Stanley, my favorite Minecraft character

  • @karyjas1
    @karyjas1 Рік тому +2

    This might be very difficult, but a very significant improvement - dont render a certain area around the player of blocks that are all above the player +2 blocks. The player highlight helps, but you can still very much get lost. Even in the very house you built

  • @mahdi_touirssa_exe
    @mahdi_touirssa_exe Місяць тому +3

    Pls continue this project and add weapons and tools

  • @Scott-sx9qq
    @Scott-sx9qq Рік тому

    im sure you probably already noticed this but theres quite a few cases where the player will be moving as the UI overlay is drawn causing the player area to draw overtop of the UI. so you might want to change the order of operations there or make it wait until the player stops moving to draw the UI. Thanks so much for releasing alpha!!

  • @ZagSouls
    @ZagSouls Рік тому +5

    Series has been dope so far. Hope it blows up bigger than the first episode!

  • @gavin5410
    @gavin5410 Рік тому +1

    I feel like the bumpers should definitely be for controlling the hotbar, while the start+dpad combo seems a really elegant way to move the cursor around. If you use start+dpad up/down to move the cursor's height, that even frees up another button on the right hand side of the controller

  • @cloudedarctrooper
    @cloudedarctrooper 2 місяці тому +3

    Please tell me you're still working on this! This is amazing!!!

  • @TechTheFeck
    @TechTheFeck 9 місяців тому +1

    Imagine if there was an entire series on this, watching the game get made in every major generation of console to show how Minecraft could have evolved if made back then

    • @painpaixliberte
      @painpaixliberte 6 місяців тому

      Considering how time consuming this turned out to be, I think the only way that would work is if a group of people teamed up to make it happen. I still hope we get at least this version working at some point.

  • @wizarddev3506
    @wizarddev3506 Рік тому +3

    You should definitely make different textures for the armor in the inventory and in the game.

  • @painpaixliberte
    @painpaixliberte 6 місяців тому +1

    Considering how time consuming this turned out to be, I think the only way that would work is if a group of people teamed up to make it happen.
    I hope this ends up seeing the light of day at some point, would be amazing

  • @Pixelated_Chicken
    @Pixelated_Chicken 6 місяців тому +3

    2 weeks he says huh

  • @eboshidori7748
    @eboshidori7748 Рік тому +1

    i know it would probably take a while to redraw (computationally) but redrawing from different angles would be great combined with the suggestion to cull blocks above the player's head; you could even reuse the old code to have 8 directions for the camera. but i would suggest making the top of the block the same size visually as the side of the block for consistency

  • @Minoulein
    @Minoulein 9 місяців тому +3

    You could try to program minecraft into a QR code using HTML

  • @PlayJAK82
    @PlayJAK82 11 місяців тому +1

    The copper tools are what "Reminded" me to hit like. TY!!!

    • @PlayJAK82
      @PlayJAK82 11 місяців тому

      Seeing the fact that this is being made Downloadable made me Sub, and decide to go back to previous video and like that one as well... Great JOB!!!

  • @Kirby_Super
    @Kirby_Super Рік тому +2

    Something you may want consider is making the cursor and player control Pikmin-style, where the d-pad moves the cursor and if you try to move the cursor beyond your reach then the player moves

    • @quakxy_dukx
      @quakxy_dukx Рік тому +1

      Directly moving around with the d-pad is pretty useful though. Perhaps implementing both styles and have a button/combination switch between them if it’s even possible with such limited processing power

    • @nebulaayt
      @nebulaayt Рік тому

      This is actually a very good idea!

  • @josycavre3608
    @josycavre3608 Рік тому +1

    Whoa, this is really awesome, I like demakes and such of games and this is by far one of my favorites, I hope you keep working on it and add a lot of things to it. I have a suggestion, the outline on the player is fine but, is there a way to make it so if you go behind a block or underneath a block (roof) those blocks dissapear or if it's even possible become transparent, yk as a way to see what's going on, kinda like Project Zomboid does.

  • @Quest-Giver
    @Quest-Giver Рік тому +1

    I think the overlay system to show where your character behind a wall is very cool! I have an idea that you've probably already thought of as well but i'm going to comment anyways because this video is wonderful.
    have you considered adding a mode to only render any block lower than your current Z axis, a "no-roofs" style view, so you could actually go spelunking in a cave and have some sort of real view of what's actually in the cave? instead of groping around in the dark, navigating only by memory and trial/error. I hope you consider it, I look forward to seeing what you do next :)

  • @epj-nfnty7864
    @epj-nfnty7864 6 місяців тому +3

    Whens the next video???

  • @JamesTDG
    @JamesTDG Рік тому +1

    14:41 make it 64 so you can support item states

  • @mateusvmv
    @mateusvmv Рік тому +1

    Project Zomboid has a nice feature where walls get transparent once you get behind them, allowing you to see the interior of houses or look through windows. I don't know how they implemented it, or how hard it would be to translate it to minecraft glass blocks or something, since their game has all the information about what is an interior and what is a window, whereas in minecraft anything can be a window or a wall.

  • @DonnaPinciot
    @DonnaPinciot Рік тому +1

    Hey, I forgot about this! Cool to see the project's still around.

  • @RedfeatherYT
    @RedfeatherYT 8 місяців тому

    I honestly love the way this is going- this is absolutle legendary stuff happening right now, keep it up!

  • @Feedora
    @Feedora Рік тому +1

    imagine having this game in you childhood.

  • @Reaperraid2542
    @Reaperraid2542 4 місяці тому +1

    Part three please, I love this concept and hope it goes further!

  • @scaw1499
    @scaw1499 Рік тому +1

    That sponsor transition was good, I barely realised it happened 😂

  • @UdderlyEvelyn
    @UdderlyEvelyn 2 місяці тому +2

    Even writing something like this in XNA-esque engines as a base in modern C# is a challenge, especially to make it run quick. I know because I've done it, lol. I can't imagine figuring that out at the assembly level.

  • @norkshit
    @norkshit Рік тому +2

    glad to see more content on this epic project! good luck!

  • @nikshmytov6561
    @nikshmytov6561 Рік тому +1

    I'm very excited to see further progress. Keep it up!

  • @Totally_not-TheSameDude
    @Totally_not-TheSameDude 9 місяців тому

    Loving the how it's turning out. Thx so much for letting us download it also can't wait to play