Author Topic: TinyCraft [Axe]  (Read 53957 times)

0 Members and 1 Guest are viewing this topic.

Offline saintrunner

  • Custom Spriter: You ask it! I'll Make it!
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1787
  • Rating: +115/-11
  • Flogging Molly
    • View Profile
    • Jonny K Music
Re: TinyCraft [Axe]
« Reply #315 on: January 29, 2012, 09:49:26 pm »
what character sprite are you using? I know I gave some a long while ago, and then they got changed but if I recall they looked a lot different then!? just wondering, are these still based off my originals? Anyways, this is looking really good and I am so proud to be apart of a community of such talented coders (and musicians ;) )!
My Sprites Thread   :Updated often :) for your viewing pleasure

GAMES:

Offline Stefan Bauwens

  • Creator of Myst 89 - סטיבן
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1799
  • Rating: +162/-24
  • 68k programmer
    • View Profile
    • Portfolio
Re: TinyCraft [Axe]
« Reply #316 on: January 30, 2012, 02:24:32 pm »
This is indeed coming along pretty nicely. I, on the otherhand, haven't even started on the 89 version and I'm starting to doubt if I will soon. I might start ever with it, but I'm having momentarily an other idea. :P
But that's just in idea-stages. :)


Very proud Ticalc.org POTY winner (2011 68k) with Myst 89!
Very proud TI-Planet.org DBZ winner(2013)

Interview with me

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55941
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: TinyCraft [Axe]
« Reply #317 on: January 30, 2012, 02:54:23 pm »
A 89 version would indeed be nice, although I wonder if in BASIC it would be fast enough? Does BASIC allow decent scrolling?

Also Zippydee it looks nice, although it would be nice if there was some sort of texture inside the mountain outlines, kinda like in The Reign of Legends 3 world maps:
« Last Edit: January 30, 2012, 02:54:53 pm by DJ_O »

Offline ZippyDee

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 729
  • Rating: +83/-8
  • Why not zoidberg?
    • View Profile
Re: TinyCraft [Axe]
« Reply #318 on: January 30, 2012, 02:55:52 pm »
Well if you look at the original MiniCraft, the "mountains" really just look like elevated terrain, not actual mountains. That's all I was really capturing there.
There's something about Tuesday...


Pushpins 'n' stuff...


Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55941
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: TinyCraft [Axe]
« Reply #319 on: January 30, 2012, 02:56:31 pm »
Ah ok. I just thought it might look a bit too bland if there was no texture, though D: (at least in 4 level grayscale)
« Last Edit: January 30, 2012, 02:56:42 pm by DJ_O »

Offline ZippyDee

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 729
  • Rating: +83/-8
  • Why not zoidberg?
    • View Profile
Re: TinyCraft [Axe]
« Reply #320 on: January 30, 2012, 03:27:21 pm »
Something like this?

Note that the two blue pixels would be black on the outline, but would be changed to dark gray when the outline is removed, and the green pixel will stay dark gray when the outline is removed. I just colored them to show where the pattern would be on the default tile.
There's something about Tuesday...


Pushpins 'n' stuff...


Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55941
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: TinyCraft [Axe]
« Reply #321 on: January 30, 2012, 05:31:31 pm »
Yeah maybe,  although maybe the bottom outlin e should be made a bit thicker, otherwise it kinda looks like the light part is grass and the darker part trees.

Offline ZippyDee

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 729
  • Rating: +83/-8
  • Why not zoidberg?
    • View Profile
Re: TinyCraft [Axe]
« Reply #322 on: January 31, 2012, 07:11:31 pm »
But then you'd have to be walking on trees in order to get to it...So it wouldn't look like that.
There's something about Tuesday...


Pushpins 'n' stuff...


Offline squidgetx

  • Food.
  • CoT Emeritus
  • LV10 31337 u53r (Next: 2000)
  • *
  • Posts: 1881
  • Rating: +503/-17
  • rawr.
    • View Profile
Re: TinyCraft [Axe]
« Reply #323 on: January 31, 2012, 07:57:21 pm »
I know it'd slow down the tilemapping quite a bit, but maybe there's a way to make the mountains look at lot better by giving them contiguous outlined edges...

The idea would be to check the 8 surrounding tiles to test if they are mountains as well. For each surrounding tile, there would be a sprite to XOR onto a default mountain tile sprite, removing that wall/corner outline from the sprite. How plausible is this?

Here's an example:

(The bottom 8 sprites are supposed to be inverted like that so the XOR removes them)

The top sprite is the default mountain sprite. Before drawing the tile, that would be copied to a temporary memory area. The other tiles would be XOR'd onto the temporary sprite to remove that outline based on surrounding mountain (in order: top-left, top, top-right, left, right, bottom-left, bottom, bottom, bottom-right). The result would look something more like the example I threw together below the sprites.

Obviously it would make it slower, but the question is how much slower?

Hm, you could achieve that by putting it into the map-generation portion of the program, right? Have tiles for every possible mountain edge/corner and place them accordingly with your routine. (Then I guess if the terrain changed you would have to re-run the routine..but that could be coded separately as it is a special case event, right? :P)

Anyway I'd love to help you guys but I have a few coding habits that would not work well in a group environment. But give me a shout if you guys ever need some help with anything :)
« Last Edit: January 31, 2012, 08:00:14 pm by squidgetx »

Offline leafy

  • CoT Emeritus
  • LV10 31337 u53r (Next: 2000)
  • *
  • Posts: 1554
  • Rating: +475/-97
  • Seizon senryakuuuu!
    • View Profile
    • keff.me
Re: TinyCraft [Axe]
« Reply #324 on: January 31, 2012, 08:14:07 pm »
What I was thinking is that we could do a second pass during map generation to differentiate all the tiles, then differentiate each set of 9 tiles (each tile and the 8 surrounding) when a tile is altered in-game to avoid all those nasty on-the-fly calculations
In-progress: Graviter (...)

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55941
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: TinyCraft [Axe]
« Reply #325 on: January 31, 2012, 08:23:53 pm »
This reminds me a bit of ROL3 tilemapping in some dungeons actually. Shmibs did something like that before in Axe. However I was worried about the amount of tiles required if it checks all sides and the amount of calculations required to generate each tilemaps. X.x

Offline ZippyDee

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 729
  • Rating: +83/-8
  • Why not zoidberg?
    • View Profile
Re: TinyCraft [Axe]
« Reply #326 on: February 01, 2012, 01:16:18 am »
Well I was just thinking that if we could keep the number of tiles for each map type (air, top, underground) to at most 16 different tiles, we could cut the sizes of the maps in half for storage.
There's something about Tuesday...


Pushpins 'n' stuff...


Offline Builderboy

  • Physics Guru
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5673
  • Rating: +613/-9
  • Would you kindly?
    • View Profile
Re: TinyCraft [Axe]
« Reply #327 on: February 01, 2012, 01:19:02 am »
You could store the map using the basic grass/stone/sand terrain, and then when you loaded the level you could do the conversion required to update all the different sprites.  That or you just change the tilemapper to look at nearby tiles when displaying a sprite

Offline willrandship

  • Omnimagus of the Multi-Base.
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2953
  • Rating: +98/-13
  • Insert sugar to begin programming subroutine.
    • View Profile
Re: TinyCraft [Axe]
« Reply #328 on: February 01, 2012, 01:20:41 am »
That should be plenty if you're keeping it faithful to minicraft:

Grass
Dirt
Mountain
Desert
Hole
Water
Stairs

I think that's all minicraft uses. Then, for easier program handling, you'll probably want:

Furnace
Workbench
Lantern
Chest

That brings it to 11. Not bad.

Edit: Also, as builderboy said, storing can be simpler than rendering, with semi-on the fly calculations.
« Last Edit: February 01, 2012, 01:22:38 am by willrandship »

Offline ZippyDee

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 729
  • Rating: +83/-8
  • Why not zoidberg?
    • View Profile
Re: TinyCraft [Axe]
« Reply #329 on: February 01, 2012, 01:24:32 am »
You could store the map using the basic grass/stone/sand terrain, and then when you loaded the level you could do the conversion required to update all the different sprites.

Yeah, I was just thinking about that, too. As long as we keep the number of "root" tiles to less than 17, we can still have as many sprite variations as we want for when it's loaded.

That or you just change the tilemapper to look at nearby tiles when displaying a sprite
That was kind of my first suggestion there...And it would only have to look at nearby tiles if it were drawing a mountain tile anyway.



EDIT: willrandship, there's more than that.

Wheat
Water
Tree
Stone
Stairs
Sapling
Sand
Rock
Ore
Lava
InfiniteFall
Hole
HardRock
Grass
Flower
Farm
Dirt
Cloud
CloudCactus
Cactus
« Last Edit: February 01, 2012, 01:28:28 am by ZippyDee »
There's something about Tuesday...


Pushpins 'n' stuff...