-
Content Count
24 -
Joined
-
Last Visited
A long, long time ago...
Community Reputation
0 Clean SlateAbout Abby Normal
-
Rank
Sophomore
-
Is it just me, or does this thing look like a VW Vanagon?
-
Hi dmrsunz! Well, I know the commute time is 21 minutes from the commute time graph. And if you're thinking "Well, how does he know which path they took?", that's a good question. The answer is, it doesn't matter - because every path is equidistant from the destination. I was hoping that by seeing which path they took when there was no incentive for any one in particular. Some pathfinding algorithms wouldn't like the backtracking of the inside path, some would tend to shoot as far toward the destination as possible before being forced to change route, etc. I don't remember the outcome though, it's been a while. I really wanted to try something similiar to rezi's stuff (which is an excellent, excellent idea, btw), but life happened and I got sidetracked. Along with technical difficulties, as well. Glad to see some people are still finding these threads interesting!
-
---------------- On 8/25/2003 10:39:46 PM ALTX wrote: to hard to recreate? even with rush hour? ---------------- Just rotate your map 10 degrees clockwise and most of your problems clear up, dude.
-
-
---------------- On 6/20/2003 10:04:17 AM the7trumpets wrote: ---------------- On 6/20/2003 3:21:49 AM The Milkman wrote: I don't really understand your graphs, but if I understand correctly: Placing a commercial building touching a busy road will put the customers high? ---------------- Basically, your right. Sorry that I forgot to include a sort of conclusion on placement as well as ammount of traffic necissary: Conclusions on Placement of buildings for high and low traffic noise/customers rating: Any building touching a raodway with the afforementioned minimum ammount of traffic traveling through it will experience high customers and or traffic noise. Additionally, any building oriented with its side parallel with the roadway, and one tile away from the busy roadway will also experience the high rating. All other orientations will experience low ratings. It also appears that there is no "gradual" diminishing effect for customers and traffic noise as the building gets farther away. But, I will do more tests to confirm or deny this notion later. ---------------- Hi 7!! Apparently I am back! Interesting stuff. About time someone did some tests to prove that changing the roads to streets in commercial areas doesn't do a damn thing to help commercial desireability. Feh! A couple ideas: Maybe do a check at different times during the sim day/night cycle to make sure that doesn't affect the traffic noise attribute. I would hope not, but it's possible and if it does it would account for the discrepancies. It's also very odd that the job being parallel to the roadway would shoot down the customer/traffic noise rating. BTW: Have you confirmed that these two ratings are essentially identical? Are the customers just a commercial version of traffic noise? TarheelCP also had an interesting comment about the $, $$, and $$$ possibly having different tolerances for traffic noise. But does it actually change the traffic noise that they hear or is there tolerance just an internal game mechanics thing? i.e. Is a low traffic noise rating for $ equal to a high traffic noise rating for $$$? Em. I have to work now. Nice to be back!
-
Don't worry Dark, the data tree was just a nifty extra on that other one. I wouldn't actually know what I was looking at anyway. I just assumed if the algorithm was being executed in that matter, then it would be a simple thing to just output it to screen (as simple as programming ever is with stuff that seems simple). But you are absolutely right, there are several ways of doing that and I would not bother trying to display it. Indicating the method used would be nice though, so we can compare which methods are better than others in our situation. I love the configurability of your program, looks very promising! Yes, and that first screenshot + beta you posted I completely and totally missed. I can try to find code snippets if you want, although I'm not sure if it will be any more helpful than the stuff you have found. Karybdis: Given they are planning on putting in a feature that lets you see the path being taken to work, I sure hope it is fixed! It would be awfully embarrassing to have that feature in and see what the drivers are doing currnetly! Oh well, we can hope. Rendili: Looking good! You change that thing faster than I can keep up with it. Too bad I downloaded 8 megs of java already I'm very curious to try out the new heuristic feature. Em, I have to work now, crap.
-
I'd love for you to continue on the app you are working on. Especially if it isn't in java, as there is a bit too much lag for my tastes Plus, I think being able to tweak aspects of the pathfinding algorithm or plug in a different algorithm altogether are necessary for the testing aspect of it. If you have any early screenshots of it I'd be glad to give input on the interface or anything really. Also, there's no way to just disallow the diagonals in the calculations? I agree having them in there is a waste for SC4 type usage. Although you may want to keep it as an option.
-
---------------- On 5/20/2003 4:43:01 PM Proper_Bo wrote: Yes it works without download now but are you trying to tell me that this is the fastest route? Are you working for Maxis or what? ---------------- Actually, I would like to know how it came up with this solution as well. What algorithm are you using? Maybe the screwups will be more insightful than the successful shortest paths? Could possibly lead us to the real reason the pathfinding is broken.
-
Okay, I got that pathfinding link to work. You need the Java Runtime Environment which is about 8 megs. I do have a question though: Yellow: Starting point - Red: End point - Grey: Road - Green: Grass How many paths does this thing find?
-
What size map was this done on? I'd be inclined to think that the commute time shouldn't be involved since at 16 minutes it would definitely not cause any no-job zots, unless possibly a small percentage of the population couldn't get to work and most of them had a commute time under 16 (so it would average out). It probably has something to do with the way it recalculates everything from a save game, I would suspect the reason is for regional play. Although in doing this it does seem to wreak havoc with a city the first year or two after you load a saved city. Also, I'm not sure what you mean by relaying roads, can you describe that?
-
---------------- On 5/15/2003 3:24:05 AM Dr_ExK wrote: do you know that ... if you put a sim into a house with a no-job zot, he/she will 'hum hi ho over new job' in no time? That means, the path finding algo for a sim has no problem, but somehow something else is screwed ? is this observation valid ? ---------------- I think the special automata are pretty much completely seperate from the rest of the game. It seems like something they added instead of built in, at least to me. The MySims use a seperate pathing than the rest of the traffic system - I would have thought that it would at least be a more effective system since there would only be at most 5 MySims and I suppose a bunch of firetrucks and police, but apparently it's not. Also, I would guess that MySims can take other sims jobs, but that's just a guess.
-
I got a big grey box as well, I was wondering... I'll give a whirl after this java downloads!
-
Hey darkmatter, I manage to dig up a program that seems to be fairly similiar to what yours will be like (except it specializes in the A* algorithm). It might be interesting to take a look at if you want to steal any features for yours. Here is the description: ================================= F E A T U R E S ================================= - Draw, load and save maps. - View the A* tree and open/closed lists. - Run or Step the A*. - Breakpoints and 5 break conditions. Set a breakpoint by double-right clicking on a point on the map. If that point is queried, the A* will break allowing you to examine the tree as well as the open and closed lists. - Dynamically view the A* search space. - Create your own heuristic and map extensions to test your pathing algorithms before implementing them in a game. Here's the page where it can be downloaded from: A*Explorer <?A>
-
Desktop.. Everyone has one of these!
Abby Normal replied to The Milkman's topic in General Off-Topic
It is? Huh. Is there any way to tell from the screenshot? The only thing that seems amiss is the shortcut arrows on the icons...hmm. And you also have the drag dots on the start bar, but it appears to be locked since there is no "top" drag...thing. No drop shadow on the icon text but I think that can be turned off in XP. -
Desktop.. Everyone has one of these!
Abby Normal replied to The Milkman's topic in General Off-Topic
I think you may have killed the thread with that generic XP pic ;P
