Scrolling Game Development Kit Forum
SGDK Version 2 => General Discussion => Topic started by: Tanja on 2008-03-20, 12:34:33 PM
-
hi guys,
the last days i thought about if it would be possible to do a harvest moon clone. do you know this game? here are some screenshots:
http://www.consoleclassix.com/info_img/Harvest_Moon_SNES_ScreenShot2.jpg -- felling timber
http://free-game-downloads.mosw.com/ss/4340_0.jpg -- harvesting raddish
http://image.com.com/gamespot/images/2003/reviews/589702_20031210_screen002.jpg -- harvesting more with a cow watching
http://image.com.com/gamespot/images/2003/reviews/589702_20031210_screen023.jpg -- feeding chicken, a mini-game
http://image.com.com/gamespot/images/2003/reviews/589702_20031210_screen006.jpg -- going through the village in winter
http://image.com.com/gamespot/images/2003/reviews/589702_20031210_screen046.jpg -- make your cow feel good ^^
you have a few places, like your farm, the woods, the village, the mountain. you start with your farm as an abandoned place, the fields are full with rocks, twigs and weeds. you have to clean the fields, hoe them, buy seeds, sow, water it, watch it growing, and harvest.
i think there can much be done with tiles changing their frames. durnurd has shown me a good method. (a special counter = mapped tile frame)
i could imagine make the whole thing growing, placing randomly weeds at the acre...
but, i can't make a counter for every tile. hm.
and how would i then realize the four seasons? i already made something like this, but how could i combine this with the many stadiums of the field plants? maybe with the same method from durnurd.
the game's rhythm is from day to day. you have ca. 10 realtime minutes, in which one game day takes place. you start every day in your bed, and when going out of the house, there are some new weeds or rocks, or your crops may have grown. every 30 game days the season has changed, and so the land is covered with snow or is in bloom at springtime.
i would highly appreciate some methods to manipulate tiles not directly through "touchTiles". but maybe one can create a category for "plain field tiles" and make plan rules for that random weeds growing. or a category for "corn", and the rules can tell for each tile alone, whether it changes into a big crop because it had enough water.
this idea i had some months earlier: it would be so nice if one could change with a simple rule two tilesets. that would be so cool to make seasons, or change a normal level into a destroyed level for example.
i just thought about it, i don't want to end the work on Mistraal now. what do you think?
-
one more thought:
i believe a tile could be so much more than only a little graphic the player walks over or is stopped by. imagine "intelligent" tiles, which know what they are and what other tiles are in their near. certain tiles could influence the types of sprites that "live" on them, or could reproduce themselves and spread themselves, ousting weaker tiles.
yes okay, the tiles wouldn't be intelligent, the plan rules would do that. but i like the idea that the "ground", the basis of the whole game, is underestimated and needs to free its potential.
of course is this nothing a normal sidescroller would need. but couldn't this breed whole new ideas and games?
-
My thought was that if you wanted to have tiles that had more features you would use sprites instead of tiles. And since you can have hundreds of sprites active without much slowdown (if they're relatively simple sprites), it seems practical.
-
There are two approaches. One is to have all of the field as sprites like bluemonk suggested. The other is to have tiles, like you thought, but counters would not control the different values of all the tiles. There is a predictable progression of a particular tile based on its previous value, so each "day", update the value of all the tiles using a doubly-nested for loop in a custom code object to update all of the values. The counter could control the season.
-
thanks.
sprites for tiles: okay that would be possible. but i don't think it's fun to make a complex game with that. creating hundreds of sprites and placing them on big maps is no likely idea. as i remember, "snap to tile" can be used when placing a sprite, but after it is placed and you want to shift it or shift it accidentally, it doesn't snap anymore.
placing other sprites (non-tiles) on this sprite-surface is a real pain. with one click you always select all sprites beneath the cursor. i hated that always.
for your other idea, durnurd, could you give me an abstract example? i don't understand it totally.
-
Durnurd's idea would go something like this:
if (Counter.DayFrame.CurrentValue == 1) // time to grow all the tiles
{
// Retrieve a strongly-typed reference to the map so we can
// access the layers and tiles
Level_1_Map map = ((Level_1_Map)Project.GameWindow.CurrentMap);
// Loop through every tile on the main layer
for(int y=0; y<map.m_Main.ActualRows; y++)
{
for(int x=0; x<map.m_Main.ActualColumns; x++)
{
if ((map.m_Main[x, y] >= 12) && (map.m_Main[x, y] < 17))
// If the tile is a growing wheat tile,
// make it grow one step larger.
map.m_Main[x, y]++;
else if(map.m_Main[x, y] == 17)
{
// If this is a mature wheat tile, it seeds all the tiles around it
if ((x > 0) &&
(map.m_Main.GetTile(x-1, y).IsMember(TileCategoryName.Grass)))
// If the tile to the left is a grass tile, seed it
map.m_Main[x-1, y] = 12;
if ((y > 0) &&
(map.m_Main.GetTile(x, y+1).IsMember(TileCategoryName.Grass)))
// If the tile above is a grass tile, seed it
map.m_Main[x, y-1] = 12;
if ((x < map.m_Main.ActualColumns - 1) &&
(map.m_Main.GetTile(x+1, y).IsMember(TileCategoryName.Grass)))
// If the tile to the right is a grass tile, seed it
map.m_Main[x+1, y] = 12;
if ((y < map.m_Main.ActualRows - 1) &&
(map.m_Main.GetTile(x, y+1).IsMember(TileCategoryName.Grass)))
// If the tile below is a grass tile, seed it
map.m_Main[x, y+1] = 12;
}
}
}
}
If you wanted your function to be more general-purpose, you could pass the layer in and then use that object instead of hard-coding a reference to your main layer of the level 1 map. The layer could be retrieved from the parent object of the player sprite or something.
-
wow, thanks, i have to study that.
i would like to start immediatly working on this game, because i had the idea for it about ten years ago.... and now, finally, i see the chances to really DO it....
oh man... but i need to finish Mistraal first.
but i just started a new blog for this game. ten years ago, the only good name that came to my mind was "Home Grown"... but i never liked the dope assoziation. now i find "AggroCulture" quite funny. (farming sim meets sex drugs crime and so much more... yeeha!)
-
Hm. I wasn't familiar with Aggro (http://www.urbandictionary.com/define.php?term=aggro) until just now.
-
There are many ways to optimize the general algorithm above depending on your specific implementation. For example, you could put all of the "growing" tiles (but not the full-grown ones) of any type (wheat, grass, weed, corn, etc.) into one single tile category, and instead of checking if the value is greater than 12 and less than 17, just check that the tile itself is a member of that tile category. (Something like "Tileset[value].IsMember(GrowingCategory)") Then you can increase the value by one.
This is just one example. Depending on what you want done, there are other things that could be done.
-
aggroculture is meant as a wordplay of agriculture.
for what is that 12 < x < 17 good? is that for a some crops growing at the specific x and y between 12 and 17?
very important for the whole growing thing is, that the player has to water the plants. only watered plants can grow. i can't really imagine how this can be stored for every single tile.
-
aggroculture is meant as a wordplay of agriculture.
Yes, that part was clear. I didn't know that "Aggro" was a term by itself, though.
for what is that 12 < x < 17 good? is that for a some crops growing at the specific x and y between 12 and 17?
12 and 17 are just examples. In this example, it is assuming that 12 through 17 represent watered wheat tile indexes, where 12 is a watered seed and 17 is a full grown plant. As Durnurd suggested, you could also use a tile category to represent all watered wheat tiles instead of checking the tile index.
very important for the whole growing thing is, that the player has to water the plants. only watered plants can grow. i can't really imagine how this can be stored for every single tile.
The easiest thing would be to have "duplicate" tiles (or slightly different tiles) for all wheat. Maybe 12-17 represent watered wheat and 18-23 represent unwatered wheat tiles. If you want to get fancy, you could even make 12-17 slightly darker to make them look wet so it's clear that they have been watered. Or maybe you want to do this if the player has to water the tile each time before it grows:
11 = Dry seed
12 = wet seet
13 = dry sprout
14 = wet sprout
15 = dry young wheat
16 = wet young wheat
17 = dry half-grown wheat
18 = wet half-grown wheat
19 = dry mostly grown wheat
20 = wet mostly grown wheat
21 = full grown wheat
Then when the player waters any dry wheat tile (odd tile index) just increase the index by 1.
And when growing happens, only grow tiles that have an even tile index by adding 1. This will cause them to become dry again, but one step older.
-
okay, cool system. only count up even tiles... yeah very good.
i had the following idea:
if the player doesn't water the plants, they die after a few days. to realize the "counting of dry days", i thought of making ca. 5 equal looking tiles. the first four look dry and normal, and the last one looks slightly toasted. every day the plant was not watered, its tile index change + 1. so the image of the plant is the same, but the "internal counter" knows exactly how many days till it dies.
i will have to think about managing categories for that. of course using categories is much easier than using tile indexes.
-
so, what would be the best way to give the hero items to the hand? in other games this would be a sword, here it will be watering can and hoe.
my first idea ist to make the item picture much bigger than the hero, and attach it to the him at the center point. the picture will not change its position, only the depicted item is sometimes an the left or on the right side (of the hero).
i guess it is possible to coordinate the hero's movements (frames) with the animation frames and states of the item.
are there other and/or better options?
-
If you are talking about the player carrying things on top of his head like actually happens in Harvest moon, then using the predefined functions, you can just match places on the bottom-center of the carried sprite (the watering can, for example) with the top-center of the player, and offset the can down a few in the frameset so it overlaps. If you're actually talking about the player using the watering can, then those should probably be drawn as part of the player sprite itself in a separate state, considering that the player needs to move in a certain way using the watering can that he doesn't use elsewhere.
I'm basing all this on the actual Harvest Moon game, though. I don't know what you want to copy and what you don't.
-
copying the behaviour you described is what i want. at least it is a good starting point.
i could try drawing the items as separate states. but i haven't made so positive experiences with changing place of the collision rectangle. the sprite jumps in game horribly. do you know what i mean?
-
I understand the problem you're having with changing sprite states. The simplest way to solve the problem is to find a pixel in the graphic of the state you're switching from and the state you're switching to that should be at the same location in both states. In the graphic sheet editor, find the x and y differences between these pixels, and offset the graphic of the "to" frame in the frameset editor to be the correct amount to compensate. This is the best way to ensure that switching states will not cause a jump.
-
well, thanks.
this wasn't the exactly the problem i meant. normally i try to make all sprite graphics with the same canvas, so no jumping is possible. this may not make sense for all sprites, i guess.
okay, this leads me to the following question to bluemonk.
i do not understand, why shifting the collision rectangle and shifting the frame's position are the same thing. could you please explain the necessities?
i mean, if my sprite graphics have different sizes at different states, i understand why and how to offset the frames just like durnurd explained above.
but if my sprite is not at the upper left corner of its graphic, and i would need to shift the rectangle some pixels down und to the right, why have i to shift the whole frame?
i tried different frame sizes for my zeppelin some time ago. it jumped while it moved horribly to all sides, because i tried to find for every frame the best rectangle size and position, and shifted therefore the whole frames.
-
I think part of it is just the fact that the collision rectangle starts at the x,y coordinate of where the sprite is and the width/height of the collision rectangle is the width/height of the sprite. Shifting the frame position simply offsets it from those x,y coordinates.
I've seen some games that store each and every graphic separately in its own equivalent of a graphic sheet, and group several graphic sheets of the same sprite together in something in between a graphic sheet and a frameset. I suppose the problem there could be loading more graphics into memory, but it doesn't seem to be a problem with the games I've seen that do it (mostly RTS games).
-
i do not understand, why shifting the collision rectangle and shifting the frame's position are the same thing. could you please explain the necessities?
You mean why does the collision rectangle determine the location of the sprite when switching states? The answer is, I saw no reason to make it different. I had implemented a collision rectangle that determined where the "solid" edges of the sprite were, and when the question arose "When I change to a different state, how shall the new state be positioned?" the simple answer was "Use the collision rectangle, and allow the rule to specify which point in the collision rectangles should line up between the two states being switched." I see no reason that this would be inadequate. It makes sense, doesn't it? If you have an image, and some portion of that image is considered "solid", and you want to switch to another image representing the same object, and it also has some portion that is considered solid, it makes sense that the solid part would be the part that doesn't move, right? Just like the center of gravity in a real-world rotating object.
-
hm well, i understand this way of thinking. i for myself think different. i always thought the two lined up points were choosen frome the entire frame, not from the solid part.
and after thinking about your way, i still believe this is not optimal. making the change between two states without jump is much easier by using the same frame size, than trying to find the right value for shifting the entire frame after switching states. you have to make much more rules for that, and if you some time decide to change your graphics size you have to work over all values.
but, what i want to say is this: you don't think about the possibility that a sprite changes its size several times within ONE state. what now? imagine a guy who is kneeing and standing up the whole time (with some room at the frame around him). try to make the collision rectangles for THAT.
all i want to suggest is, that i would make much more sense to give the user two simple input fields more: offset x for coll. rectangle, and offset y for coll. rectangle. in that preview window for example.
-
I think I still don't fully understand your point of view, but I don't want to give up until I do.
and after thinking about your way, i still believe this is not optimal. making the change between two states without jump is much easier by using the same frame size, than trying to find the right value for shifting the entire frame after switching states.
But the frame size is even more unpredictable than the solid size. You can have all sorts of different frame sizes in the same state, and it would be extremely difficult to switch states without graphics jumping around uncontrollably if you had to worry about every frame size instead of just the state's size. At least with the state's solidity size, you know that the sprite will always be a specific size when it's in that state, so when you switch to another state, you know the current size of the original state without having to check every frame.
you have to make much more rules for that, and if you some time decide to change your graphics size you have to work over all values.
If you change your graphic size, it's better to only have to fit it in with the state where it's used instead of having to worry about how that new size fits into every place where the state might change from that frame. For example, assume I have a Left-facing frame that's used in my "Flying left" and "Super-speed Left" states for "Enemy Follow Path" sprite, and the same two states for a "Enemy Follow Player" sprite. I offset the frame a couple pixels because I know that wherever it's used, there are a couple pixels that don't really represent the "solid" part of this image. Then I change the size and I have to offset the frame a couple more pixels. I only have to do that once for the frame. If there were an offset for each state, I would have to go to each state where the frame was used and change the offset (I would have to change it 4 places instead of 1). I might also have to go to every rule that changes states and looks at all the frames to take the new frame size into account when switching states. By this test, I think the existing solution is much easier because you only have to change the offset once instead of 4 times, and you don't have to worry about all the rules that would manually handle the offset. (So I think I'm not understanding you.)
but, what i want to say is this: you don't think about the possibility that a sprite changes its size several times within ONE state.
That's not possible -- one state always has the same size. One of the purposes of a state is for grouping frames with the same solidity size. For example, walking and crawling would be different states. All the walking frames should be the same size as each other, and all the crawling frames should be the same size as each other. Crawling frames would be shorter than walking frames, but you shouldn't be changing the size of the sprite just as part of the animation, otherwise simply animating the sprite could cause it to need to move in reaction to solidity.
imagine a guy who is kneeing and standing up the whole time (with some room at the frame around him). try to make the collision rectangles for THAT.
I don't understand. Kneeling should be a different state than standing. And if the solidity rectangle for those two states are set up correctly, it's easy to switch between them, and the frames will be easily positioned properly by aligning the bottoms of the solidity rectangles when switching states.
all i want to suggest is, that i would make much more sense to give the user two simple input fields more: offset x for coll. rectangle, and offset y for coll. rectangle. in that preview window for example.
I don't see how more input fields would simplify things. More values would make it more complicated, not simpler. Can you provide another example maybe?
-
I have an idea for some sort of improvement: You can pop up a window that allows you to preview a switch between states using all the different matching points (top-left, top-middle, etc.), and you can then zoom in really close (if you want to) and offset one of the state's frames while flipping back and forth until it looks good to you, and it will automatically update the all the frames that state uses in the frameset. If not actually changing it, then previewing what it will look like before the game actually runs would be nice.
-
good idea, durnurd.
i must confess i talked a lot without proving my sayings. the whole time i thought one could could set different sized collision rectangles for every frame of a state.
i think we talked about different things. sorry.
i made this picture. it shows what i wanted to talk about, and what i thought would be possible. this is my zeppelin, and you can clearly see the collision with solid tiles isn't working so fine. what size should i make it? okay, it is no question of life and death. it matters not much to my game, but it's a example.
i would like to change the size of the collision rectangle for each frame.
what about that? you have an algorhtym which determines what pixel is considered solid (for the mask). what about an algorhytm that looks after the four corner points of a sprite and sets the rectangle automatically?
-
Since a state can only be one size, I'm confused by your picture. Do you want 4 separate states? It seems odd that you would fly a zeppelin around a map while it's facing the player. I think that is just part of an animation of the zeppelin turning around. If that's the case, I would implement it all with one size (in one state) because the player wouldn't really be moving while the zeppelin is turning and it's much simpler to just keep the same size for all the frames/states so it doesn't jump around while changing. I don't see why you would need the solidity size to change. It should just stay the same as the graphics size (assuming all the graphics are in one graphic sheet so some frames have empty space around them).
-
i don't want to have an endless discussion. maybe i've chosen bad examples, but this is what they are: just examples.
of course you are right in your thoughts about the zeppelin. but i would have found this option useful, even when it doesn't turn the gameplay around.
My philosophy is don't prevent the user from doing things that work... because I never know when some odd setting might be useful. Someone's game could maybe take advantage of a negative scroll rate even if I can't imagine how it would be used. So I don't think I should make up arbitrary rules just because I don't think some setting is useful. I should leave it open for the user to decide what they want.
we could end the discussion now and wait for the future. maybe someone will have a stunning game idea and will only need this feature to realize it. maybe this will be never the case. we'll see.
-
I think the difference between his quote and what you're trying to get across is that he's simply arguing that there's no reason to not accept values outside the "expected" range if it doesn't cause the program to crash. What you're asking for is a change to the design to create new functionality.