Scrolling boundaries on maps ...

Got something on your mind about the project? This is the correct place for that.


Forum rules

This forum is for feature requests, content changes additions, anything not a Bug in the software.
Please report all bugs on the Support Forums

Post Reply
zick
Novice
Novice
Posts: 194
Joined: 21 Feb 2007, 03:30
Location: City Of Champions Again

Scrolling boundaries on maps ...

Post by zick »

Can "scroll bounds" be something that is added to the map format? For those who don't know what scrolling bounds are, here's an explanation: A scroll bound would be a marker that forces the client to stop scrolling even if the player moves closer to the edge of a map. This would be especially useful on a map that contains multiple map "areas" that you can warp to while not technically switching what map file you're using. These map scroll bounds would only allow the client to scroll to the edge of the bounds while a player is within a bound, allowing each map "area" to have its own set of scroll bounds. This will allow map makers to compact their maps, if there are multiple map areas, as opposed to padding areas with extra trees or thick walls or "black regions" just to keep a player from seeing that there is some other location on that map. Yes, I know you can just open the map in tiled and see what's there, but there's no way to stop that other than encrypting map data. Also scroll bounds shouldn't actually be like the variety of types of bounds that prevent player movement (scroll bounds affect scroll movement not player movement). I'd actually like to use scroll bounds to create an area outside of the viewable/scrollable area of a map where monsters spawn and then move into the viewable area ... thus eliminating the spawn "out-of-thin-air" effect*.

*One of the things that really urks me about TMW ... probably the main one.

Discuss ...
User avatar
Bjørn
Manasource
Manasource
Posts: 1438
Joined: 09 Dec 2004, 18:50
Location: North Rhine-Westphalia, Germany
Contact:

Re: Scrolling boundaries on maps ...

Post by Bjørn »

A very good idea I think! Fortunately the development version of Tiled already has support for objects of arbitrary size thanks to ElvenProgrammer, so it doesn't need any changes to add support for scroll bounds. The trickier part will be to implement this in the engine, though I don't see any major issues there.
zick
Novice
Novice
Posts: 194
Joined: 21 Feb 2007, 03:30
Location: City Of Champions Again

Re: Scrolling boundaries on maps ...

Post by zick »

The big man thought I had a good idea ... yeah!
I'm so gonna let this go to my head!
User avatar
Crush
TMW Adviser
TMW Adviser
Posts: 8046
Joined: 25 Aug 2005, 16:08
Location: Germany

Re: Scrolling boundaries on maps ...

Post by Crush »

I don't like this idea very much. We got the 20 tile map borders for a reason - to avoid the break of immersion when the screen suddenly stops scrolling and thus tells you "invisible barrier ahead".

The plan of using it as a hack to spawn monsters "outside of the map" and then make them wander in is not a good idea either. What when the monster decides to stay inside the unviewable spawn area and starts to attack the players character? The player would have to fight an enemy it can't see without any apparent in-game reason.
  • former Manasource Programmer
  • former TMW Pixel artist
  • NOT a game master

Please do not send me any inquiries regarding player accounts on TMW.


You might have heard a certain rumor about me. This rumor is completely false. You might also have heard the other rumor about me. This rumor is 100% accurate.
zick
Novice
Novice
Posts: 194
Joined: 21 Feb 2007, 03:30
Location: City Of Champions Again

Re: Scrolling boundaries on maps ...

Post by zick »

Crush wrote:What when the monster decides to stay inside the unviewable spawn area and starts to attack the players character? The player would have to fight an enemy it can't see without any apparent in-game reason.
I guess monsters AI would make want to leave this "unseen" area to hunt, to loot, or whatever the monster does. I'm sure there may be a couple of monsters that might spawn in this area and wait there for awhile, but maybe if the server code is changed so that 2 monsters cannot occupy the same tile, then monsters will be forced out ... I'm not sure how an enemy can attack something thats far away like a player, especially with no magic implemented yet. I'll draw a little ascii-art map so you can understand what I'm talking about in case there's any confusion ...

Code: Select all

" + | - " are edge tiles defining the shape of the map
" # " are scroll bounds
" * " are spawn points
" @ " are warp tile to another map area (only affects players not mobs)
" ^ " player's sprite
" / " signifies the viewport around character

   +-----+
   |  *  |
###|#####|#############
#+-+@@@@@+-----------+#
#|                   |#
#|   ////////////    |#
#|   /          /    |#
#|   /     ^    /    |#
#|   /          /    |#
#|   ////////////    |#
#|                   |#
#|                   |#
#|                   |#
#+-------------------+#
#######################
My idea of using this offscreen area to spawn monsters will make it appear that monsters are migrating into the area for food or maybe its part of their instincts, like real animals do.
User avatar
Crush
TMW Adviser
TMW Adviser
Posts: 8046
Joined: 25 Aug 2005, 16:08
Location: Germany

Re: Scrolling boundaries on maps ...

Post by Crush »

zick wrote:I'm not sure how an enemy can attack something thats far away like a player, especially with no magic implemented yet.
You thought patterns are still focused on eAthena and not TMWServ.
My idea of using this offscreen area to spawn monsters will make it appear that monsters are migrating into the area for food or maybe its part of their instincts, like real animals do.
Having very small spawn areas (like at map intersections) is not a good idea gameplay-wise because it makes it very easy to camp this point and spam it with AoE spells. Your intention to find a justification for monsters appearing on the map and visualize it somehow is good, but this is just a wrong method gameplay-wise.
  • former Manasource Programmer
  • former TMW Pixel artist
  • NOT a game master

Please do not send me any inquiries regarding player accounts on TMW.


You might have heard a certain rumor about me. This rumor is completely false. You might also have heard the other rumor about me. This rumor is 100% accurate.
User avatar
Rotonen
TMW Adviser
TMW Adviser
Posts: 3154
Joined: 08 Sep 2004, 19:48
Location: Bern, Switzerland

Re: Scrolling boundaries on maps ...

Post by Rotonen »

Although in a cleverly designed maze these barriers would prevent you from seeing through walls (I know there are better ways to implement field of vision / fog of war. Also it is far too trivial just to remove the feature from the client.)
This message used to be meaningful.
zick
Novice
Novice
Posts: 194
Joined: 21 Feb 2007, 03:30
Location: City Of Champions Again

Re: Scrolling boundaries on maps ...

Post by zick »

Maybe the server can recognize when someone is camping and use another spawn point ... just an idea.
User avatar
Rotonen
TMW Adviser
TMW Adviser
Posts: 3154
Joined: 08 Sep 2004, 19:48
Location: Bern, Switzerland

Re: Scrolling boundaries on maps ...

Post by Rotonen »

We have plans for a little more complicated system for simulating ecological nichés. Danger would be a reason for migration, yes.
This message used to be meaningful.
zick
Novice
Novice
Posts: 194
Joined: 21 Feb 2007, 03:30
Location: City Of Champions Again

Re: Scrolling boundaries on maps ...

Post by zick »

@Rotonen:
I had another idea that I was probably going to put in another thread but I'll put a brief taste here and see what you think.
I'd like to see the ability to define territories in the mapdata that belong to a specific species of monster. Ex: a tall grass area around a stream or pond, a circular clearing on a path through the woods, etc. These territories are then occupied by groups of monsters that defend the territory or attempt to flee the territory when it is encroached by a player. This would simulate another behavior that you see in nature.
User avatar
Shaggy
Novice
Novice
Posts: 132
Joined: 22 Apr 2008, 12:56
Location: Liverpool, England

Re: Scrolling boundaries on maps ...

Post by Shaggy »

zick wrote:@Rotonen:
I had another idea that I was probably going to put in another thread but I'll put a brief taste here and see what you think.
I'd like to see the ability to define territories in the mapdata that belong to a specific species of monster. Ex: a tall grass area around a stream or pond, a circular clearing on a path through the woods, etc. These territories are then occupied by groups of monsters that defend the territory or attempt to flee the territory when it is encroached by a player. This would simulate another behavior that you see in nature.
I think that is a good idea.
Enjoyed The Mana World? Then check out Aethyra (http://www.aethyra.com).
Post Reply