|
|||||||
This is a discussion on "Matrix X Y Z Mud Designs" in the Top Mud Sites Advertising for Players forum : I was just wondering why nearly all mud designs that I know about use the following logic: Area6332 east goes to Area78873 for example Isn't it easier just to make it so that 0 0 0 is central and that 0+1 0 0 is east one spot or that 0 0 0-1 is up one from centre of the realm and to build from there? If you want to see a MUD design that is based on this functionality come visit City of Ages at coa.servegame.com p23 or p4000... |
|
You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our MUD community today! If you have any problems with the registration process or your account login, please contact us. If you are a registered member of the old TMS forums, please click here
|
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 |
|
New Member
Join Date: Oct 2005
Posts: 2
![]() |
I was just wondering why nearly all mud designs that I know about use the following logic:
Area6332 east goes to Area78873 for example Isn't it easier just to make it so that 0 0 0 is central and that 0+1 0 0 is east one spot or that 0 0 0-1 is up one from centre of the realm and to build from there? If you want to see a MUD design that is based on this functionality come visit City of Ages at coa.servegame.com p23 or p4000 |
|
|
|
|
|
#2 | |
|
Legend
Join Date: Apr 2002
Name: Richard
Location: München
Home MUD: God Wars II
Posts: 1,534
![]() ![]() |
Quote:
However the design itself also allows the builder to create rooms of a more abstract design if they wish - such as large or strangely-shaped rooms (eg, go north, east, south, south, west, and you end up in the same room you started in) or 'impossible' mazes (such as a magic forest where walking in the same direction will result in you ending up back where you started). This can be particularly useful when designing locations which have very differently sized rooms (such as being able to enter the house on a street, then walk into the different rooms in the house), as using a truly grid-based approach would require a lot of additional rooms - indeed this was one of the major problems I ran into when designing a grid-based mud several years ago, and was part of the reason I scrapped the idea of rooms entirely and moved on to a true coordinate-based system. Of course for certain gameplay options it may be worth sacrificing the flexibility of the traditional exit-based room design in order to have a coordinate-based grid. I'm not sure that I'd consider 'ease of implementation' to be such a reason, but you'll often see the grid approach used for wilderness systems, particularly ones in which the terrain can be modified by players or by in-game events. To use an analogy: It is easier to build vehicles that only move forwards, but there are many benefits to having the ability to reverse, and so most vehicles are designed with that option in mind. The same is true of muds, which is most likely why most of them have been designed in such a way that they can support either approach. I hope this goes some way towards answering your question. |
|
|
|
|
|
|
#3 |
|
New Member
Join Date: Oct 2005
Posts: 2
![]() |
I just use teleport portals for that then you can trick their mapping a bit for some howls.
telnet://coa.servegame.com p23 p4000 |
|
|
|
|
|
#4 | |
|
Member
|
Quote:
Unless I am misreading this, isn't a grid-based system the same as a coordinate-based system? Basically, where each "square" (in the grid) or point in space (coordinate) in the system is a location that objects can be "at" or "in"? If you use a coordinate system for the WHOLE world, how do you handle spaces where objects "can't" be ... like walls and empty spaces? Do you use a sparce array and check if anything "exists" there before something can be there? Do you use one "grid" or array for the whole world? Or do you use different ones to create different zones? I was thinking this might make it easier to control loading and memory. If you use one array (or whatever), how did you decide what would be the center of the grid? Did you create a map first to do that? Thanks for the ideas. I've been trying to answer these (and a few other questions) myself as I design my own movement/location system for my game. |
|
|
|
|
|
|
#5 | |||
|
Legend
Join Date: Apr 2002
Name: Richard
Location: München
Home MUD: God Wars II
Posts: 1,534
![]() ![]() |
Quote:
Quote:
Quote:
However, as I pointed out previously, it didn't work out that well in practice. Movement became a pain, as you'd have to type 'north' 4 or 5 times just to get past one building, and with players adding their own houses daily it become increasingly frustrating to navigate through the starting city. Combine that with the combat/movement limitations of room boundries, and it ended up with an almost claustrophobic feel. This was a big part of my motivation for scrapping rooms entirely, and moving to a true coordinate-based system. |
|||
|
|
|