aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/LandManagement (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Fix for exception in landmanager crash.Adam Frisby2008-03-061-2/+15
|
* * Disabled ancient TerrainEngine.Adam Frisby2008-03-061-4/+4
| | | | | | | * Enabled new TerrainModule. (The king is dead, long live the king!) * Use the console command: "script terrain save file.r32" / "script terrain load file.r32" to load/save terrain. Now uses the extension to determine file format. * MANY of the old terrain features do not have a replacement function in the new module yet, this needs to be corrected, but has not been done so far. This being said, the new module is faster and more efficient and should be a good replacement.
* * Added a way for the friends module to definitively know if an avatar's ↵Teravus Ovares2008-02-281-0/+2
| | | | root agent is on the instance and if so, which region the avatar's root agent is in.
* * Found the land bug, yayTeravus Ovares2008-02-201-1/+1
|
* Minor cleanup.Jeff Ames2008-02-201-1/+1
|
* * Fixed a land manager exception or two with Math.Max(255,Math.Min(0,val))Teravus Ovares2008-02-182-9/+65
| | | | | * Trapped a few more into little self contained boxes with padlocks on them.
* a new attempt at converting to the right typesSean Dague2008-02-181-1/+1
|
* Attempt to fix casting issue introduced by RegionSize constant. I think thisSean Dague2008-02-181-1/+1
| | | | | | should actually all be uints, but this will hopefully let people log in again.
* * Made new Framework.Constants class, added RegionSize member.Adam Frisby2008-02-142-4/+4
| | | | | | * Converted all instances of "256" spotted to use RegionSize instead. Some approximations used for border crossings (ie 255.9f) are still using that value, but should be updated to use something based on RegionSize. * Moving Terrain to a RegionModule, implemented ITerrainChannel and TerrainModule - nonfunctional, but will be soon.
* *Neb try this update. It might fix it.. it might also cause no parcel to ↵Teravus Ovares2008-02-091-5/+11
| | | | be sent.
* * This update contains a bucket-full of network optimizations.Teravus Ovares2008-02-071-2/+11
| | | | | | | | | * ParcelProperties are sent only when needed instead of on any movement * Terse Updates and other temporary data packets are marked unreliable * After a certain amount of users, the sim actually sends updates on things less * Experimental * Tested to 68 avatar with pCampBot (And it's surprising what actually causes the most lag.. the text chat!)
* Converted logging to use log4net.Jeff Ames2008-02-051-6/+5
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* Most is back in its original state :) Hope I didn't break anything... *looks ↵Tedd Hansen2008-01-191-7/+8
| | | | innocent*
* removed additional debugging, added temp mega-debugging to StoreLandObjectTedd Hansen2008-01-192-22/+0
|
* More debuggingTedd Hansen2008-01-191-2/+8
|
* Added exception handler to LandManager IncomingLandObjectFromStorageTedd Hansen2008-01-191-2/+13
|
* Getting closer to that crash .. :)Tedd Hansen2008-01-191-1/+6
|
* More debuggingTedd Hansen2008-01-192-0/+12
|
* * Fixed an overflow in the land managerTeravus Ovares2008-01-131-2/+12
| | | | | | | * Did some goofy math undoing in the Sim Stats Reporter * More reduction to the amount of calls per second to UnManaged ODE code * Added a significant amount of comments to ODE
* I have fixed the ZeroDecodeCommand bug, and restored my packet recycling ↵Johan Berntsson2008-01-032-6/+6
| | | | code. Let me know by IRC if there are other problems
* * This update rolls back the packetpool and LibSL changes. Please retest ↵Teravus Ovares2007-12-302-6/+6
| | | | | | | and then patch these changes back in. Currently it's not quite ready for 0.5. The down side to this action, is that we loose some performance to the garbage collector for now. Given that the target date for 0.5 is *Two days* from now, I'm taking the initiative to work towards a real stable version. * This update also fixes scripting and some weird physics reactions
* Patch from Johan: LibSL updated to the latest revision (1568) and all ↵Adam Johnson2007-12-282-9/+15
| | | | | | | packets are now recycled to improve performance and memory usage.
* * Optimized usingslbsa712007-12-272-79/+77
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* *Fixed logic issue in LandManager that caused an 'invalid parcel' error to ↵mingchen2007-12-211-4/+13
| | | | spew in the debug when land was selected
* *RemoteAdminPlugin can now be password protected. Add the password in the ↵mingchen2007-12-211-2/+2
| | | | | | | INI under [RemoteAdmin] with the name access_password *Removed a few more unneeded exceptions in land that has been fixed
* * Update to send the parcel gathering error to a .Debug message.. so that a ↵Teravus Ovares2007-12-211-29/+35
| | | | developer can see it in the environment, but it doesn't cause any adverse effects.
* *Removed some exceptions that were thrown in Land that is no longer needed.mingchen2007-12-212-77/+111
|
* *Ban lines now work if they are enabled grid wide.mingchen2007-12-201-7/+57
| | | | | *Restricted lines just give you a friendly warning for now
* * Fixed a null NewPack error in ClientView.InPacket (object pool returning ↵Teravus Ovares2007-12-201-0/+5
| | | | null objects?)
* *Added event called after any movement is handled (OnClientMovement) - will ↵mingchen2007-12-201-1/+6
| | | | be used for parcel banning goodness
* *Made a much more network friendly method of ban and pass line sendingmingchen2007-12-202-41/+94
| | | | | *Added an event that is triggered when an agent enters a new parcel
* *Added Ban Lines around parcels for banned avatars, but there is no actual ↵mingchen2007-12-192-0/+30
| | | | | | | blocking done yet. *Made the OnSignificantClientMovement distance from .02 to .45 to make it easier on the server.
* *Removed Unneeded Debug I added in my last revisonmingchen2007-12-181-0/+1
| | | | | *Fixed typo causing access lists not to be stored correctly in sqlite
* *Parcels and their access lists now store over multiple sessions when the ↵mingchen2007-12-181-5/+8
| | | | datastore is sqlite
* *Land has now been linked to the StorageManager. Next step is to fill in the ↵mingchen2007-12-172-39/+95
| | | | functions for the different datastore interfaces for Land Objects.
* *Access/Ban list now copies correctly to a new parcel after a subdivision ↵mingchen2007-12-161-0/+10
| | | | occurs.
* *Adding and Removing Avatars from the Access/Ban List for a parcel now ↵mingchen2007-12-162-1/+124
| | | | works, but the actual ban lines, etc are not done.
* saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames2007-12-101-2/+2
| | | | notice of doom
* fixed a few compiler warnings under mono (committed from a train, with ↵Jeff Ames2007-12-051-4/+3
| | | | adjohn and afrisby, enroute to a wine cave with the worst wine in the world)
* * Removed references to "new LLUUID()", replaced with LLUUID.Zero.Adam Frisby2007-11-241-1/+1
|
* * Added some bounds checks to the sendLandUpdate packet to deal with agents ↵Adam Frisby2007-11-241-4/+4
| | | | | | | coming in from foreign regions. * Updated bounds-check of getLandObject to check for >= 256 rather than > 256.
* * Refactored IClientAPI.OutPacket to require a second mandatory parameter. ↵Teravus Ovares2007-11-182-6/+8
| | | | This parameter has an enum:int ThrottleOutPacketType and contains types; Resend, Land, Wind, Cloud, Task, Texture, and Asset.
* fixed bug with user not getting land properties on loginJeff Ames2007-10-312-6/+18
|
* * Optimized usingslbsa712007-10-302-3/+1
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW2007-10-292-2/+2
| | | | | | | Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace. Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
* * Made EstateSetting static since there's only one instance, and we only ↵lbsa712007-10-221-4/+4
| | | | | | | need to create it once * Now cacheing RegionInfos indefinitively; we should add a tiomeout to this cache
* * Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa712007-10-151-1/+29
|
* * Purged 'Regions' code pending Agent layer grok.lbsa712007-09-231-2/+2
| | | | | | * Changed so prims aren't loaded until AFTER parcels. * The region startup flow is still an ungodly rats nest.
* * Continuing refactoring of presencelbsa712007-09-211-1/+1
| | | | | | | | * Deleted stub ScenePresence.Body.cs * Added stub Region classes The idea is to, at first, have every ScenePresence have one RegionPresence, moving code over to it until we can detach the two classes and not have a ScenePresence for every RegionPresence.
* * even more renaming and refactoring; the cleaning woman is on call.lbsa712007-09-201-1/+1
|