aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-3/+5
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-6/+66
2012-11-12Another 10 modules' directives moved from .addin.xmlDiva Canto1-0/+2
2011-06-103rd way of reseting the HG Map. This time, don't use the grid service; ↵Diva Canto1-53/+68
instead keep track of which map blocks each client has seen in the region, and reset exactly those when the client closes.
2011-06-10New method for resetting the map on HG: do it only once upon changing grids, ↵Diva Canto1-33/+33
and reset only exactly the map blocks that had regions in them. WARNING: this fetches all the regions from the Grid service, so there is a chance that this is a really bad idea in large grids. Pushing it for testing.
2011-06-08Fixed a compilation problem. Also added a lengthy comment on the Map hack, ↵Diva Canto1-2/+1
so that it never goes unnoticed again.
2011-05-30HGWorldMap: don't send map blocks of hyperlinks that are farther than 4096 ↵Diva Canto1-4/+24
cells from the current region.
2011-05-10Somewhat reverting the last commit. The viewer ignores 255's on tiles that ↵Diva Canto1-3/+3
were previously on, so we need to send 254 (offline) explicitly. Also removing the +/-4 for HGMap, because it makes the map flicker.
2011-05-09Changed the Access flag on HGMap to 255 (does not exist) and clarified the ↵Diva Canto1-1/+1
other value 254 too. Meanings taken from libomv.
2011-05-09Fixes gray tiles around +/-4 when user clicks on an empty tile. Affects ↵Diva Canto1-1/+1
regions above 4096 primarily.
2009-09-26Fixed MapBlocks bug, wrong order of arguments. First version that seems ↵Diva Canto1-2/+2
completely functional. Also fixed the notification of the message server in standalone -- that server doesn't usually exist.
2009-09-26First pass at the heart surgery for grid services. Compiles and runs ↵Diva Canto1-1/+12
minimally. A few bugs to catch now.
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-04-29* minor: remove some mono compiler warningsJustin Clarke Casey1-2/+1
2009-04-26HGWorldMap got a bit out of sync during the introduction of the new module ↵diva1-96/+7
system. Should work now. Fixes mantis #3533.
2009-04-24- Moved WorldMapModule and HGWorldMapModule to the new region-module systemHomer Horwitz1-11/+32
- Cleaned up some whitespace
2009-04-05* Fixed copyright headers on HyperGrid source files. (Now match the rest of ↵Adam Frisby1-25/+24
OpenSim, license text is unchanged) * Added Bitmap[,] to IParcel for MRM
2009-03-10Update svn properties, minor formatting cleanup.Jeff Ames1-5/+2
2009-02-22Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke1-1/+1
* Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
2009-02-14Restores the HGWorldMap functionality that has been reduced since a recent ↵diva1-1/+9
refactoring of the WorldMapModule.
2009-02-12large scale fix for svn props after "the great refactor"Sean Dague1-10/+10
2009-02-12* optimized usings.lbsa711-30/+10
2009-02-10this is step 2 of 2 of the OpenSim.Region.Environment refactor.Dr Scofield1-2/+2
NOTHING has been deleted or moved off to forge at this point. what has happened is that OpenSim.Region.Environment.Modules has been split in two: - OpenSim.Region.CoreModules: all those modules that are either directly or indirectly referenced from other OpenSim packages, or that provide functionality that the OpenSim developer community considers core functionality: CoreModules/Agent/AssetTransaction CoreModules/Agent/Capabilities CoreModules/Agent/TextureDownload CoreModules/Agent/TextureSender CoreModules/Agent/TextureSender/Tests CoreModules/Agent/Xfer CoreModules/Avatar/AvatarFactory CoreModules/Avatar/Chat/ChatModule CoreModules/Avatar/Combat CoreModules/Avatar/Currency/SampleMoney CoreModules/Avatar/Dialog CoreModules/Avatar/Friends CoreModules/Avatar/Gestures CoreModules/Avatar/Groups CoreModules/Avatar/InstantMessage CoreModules/Avatar/Inventory CoreModules/Avatar/Inventory/Archiver CoreModules/Avatar/Inventory/Transfer CoreModules/Avatar/Lure CoreModules/Avatar/ObjectCaps CoreModules/Avatar/Profiles CoreModules/Communications/Local CoreModules/Communications/REST CoreModules/Framework/EventQueue CoreModules/Framework/InterfaceCommander CoreModules/Hypergrid CoreModules/InterGrid CoreModules/Scripting/DynamicTexture CoreModules/Scripting/EMailModules CoreModules/Scripting/HttpRequest CoreModules/Scripting/LoadImageURL CoreModules/Scripting/VectorRender CoreModules/Scripting/WorldComm CoreModules/Scripting/XMLRPC CoreModules/World/Archiver CoreModules/World/Archiver/Tests CoreModules/World/Estate CoreModules/World/Land CoreModules/World/Permissions CoreModules/World/Serialiser CoreModules/World/Sound CoreModules/World/Sun CoreModules/World/Terrain CoreModules/World/Terrain/DefaultEffects CoreModules/World/Terrain/DefaultEffects/bin CoreModules/World/Terrain/DefaultEffects/bin/Debug CoreModules/World/Terrain/Effects CoreModules/World/Terrain/FileLoaders CoreModules/World/Terrain/FloodBrushes CoreModules/World/Terrain/PaintBrushes CoreModules/World/Terrain/Tests CoreModules/World/Vegetation CoreModules/World/Wind CoreModules/World/WorldMap - OpenSim.Region.OptionalModules: all those modules that are not core modules: OptionalModules/Avatar/Chat/IRC-stuff OptionalModules/Avatar/Concierge OptionalModules/Avatar/Voice/AsterixVoice OptionalModules/Avatar/Voice/SIPVoice OptionalModules/ContentManagementSystem OptionalModules/Grid/Interregion OptionalModules/Python OptionalModules/SvnSerialiser OptionalModules/World/NPC OptionalModules/World/TreePopulator
2009-02-06This changeset is the step 1 of 2 in refactoringDr Scofield1-3/+3
OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
2008-11-25Update svn properties.Jeff Ames1-178/+178
2008-11-25* Apply http://opensimulator.org/mantis/view.php?id=2640Justin Clarke Casey1-0/+178
* This is Diva's hypergrid patch, as perviously discussed on the opensim-dev mailing list * Applied some minor prebuild.xml jiggling to resolve a dependency issue * Thanks Diva!