aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* Committing the basic universal server Technology (B.U.S.T.)Melanie Thielker2009-07-074-1/+93
|
* Thank you, mcortez, for a patch to prebuild to allow includes with wildcards.Melanie Thielker2009-07-062-11/+86
| | | | | | Fixes Mantis #3860
* Change fields and methods in LSL API from private to protected, make someMelanie Thielker2009-07-061-99/+104
| | | | | | methods virtual
* comment out some excessively verbose eventqueue debugging messagesDahlia Trimble2009-07-051-2/+2
|
* Fix previous commitMelanie Thielker2009-07-041-0/+1
|
* Add the new field agent_access_max. Without it being set to "A", viewers fromMelanie Thielker2009-07-041-0/+9
| | | | | | 1.23 prevent the removal of underwear.
* - adding a Persistent flag to RegionInfoDr Scofield2009-07-032-1/+15
| | | | | - adding EstateSettings.Save() to RemoteAdmin ACL code (invoked only when region is persistent)
* Thank you kindly, AnakinLohner, for a patch that addresses:Charles Krinke2009-07-021-0/+18
| | | | | | | | The patch included updates the root and child prims' AttchedAvatar with the right UUID. It also cleans the AttachedAvatar properties for the root and child prims on Drop and Detach
* make methods surounding backup virtual so they could be override for server ↵Sean Dague2009-07-021-3/+3
| | | | side created objects
* Restore some lost functionality tot he combat module. Code that used toMelanie Thielker2009-07-021-1/+16
| | | | | | | reside in the economy module was lost in the shuffle when that was moved to forge. Now it's where it belongs.
* Formatting cleanup.Jeff Ames2009-07-0110-326/+326
|
* Add copyright headers.Jeff Ames2009-07-015-5/+133
|
* Restore the functionality that was removed in r9928. This lets the loadMelanie Thielker2009-07-0110-52/+89
| | | | | | | | | balancer plugin work again. Create a new method, GetClientEP, to retrieve only the EndPoint for script usage. Marked the purpose of the method in IClientAPI.cs with a warning. Also restored the corresponding SetClientInfo functionality.
* Update svn properties.Jeff Ames2009-07-015-330/+330
|
* add some more intuitive overloads for PrimitiveBaseShape SetPathRange and ↵Dahlia Trimble2009-07-011-0/+12
| | | | SetProfileRange
* Updated services to allow external applications like web interfaces toMelanie Thielker2009-06-305-24/+228
| | | | | | | authenticate against the services. This paves the way for such apps to directly talk to services.
* From: Chris Yeoh <yeohc@au1.ibm.com>Sean Dague2009-06-301-1/+1
| | | | | | | Ooops, sorry there was a bug in the patch and causes an exception on some system (I think it only happens on windows since it didn't occur during my testin). I've attached a one liner which fixes the problem.
* Thank you kindly, Snowdrop, for a patch that solves:Charles Krinke2009-06-298-2/+320
| | | | | | | | The current API for MRM is quite sparse, this patch supplies basic support for accessing the task inventory of object.
* Thanks StrawberryFride, for a patch that fixes MSSQL migration:Arthur Valadares2009-06-291-3/+3
| | | | | Minor tweak to a region migration SQL script for the OAR DateTime field - SQL Server syntax slightly different from MySQL (and there is no unsigned in MSSQL, sadly)
* * C# compiler is not smart enough to understand ClientLoop is under very ↵Arthur Valadares2009-06-291-26/+25
| | | | | | | heavy usage and inline DebugPacket, so DebugPacket is run as a method, causing Packet to be constantly pushed and popped uselessly, if you are not debugging packets. This showed some really big difference in a mock test, let's see how it behaves here.
* Thank you kindly, Snowdrop/Snowcrash for a patch that:Charles Krinke2009-06-293-2/+81
| | | | | This patch makes the worn attachments accessible to MRM scripting
* * Changing List to Dictionary in PacketQueue.Dequeue for great justice (and ↵Arthur Valadares2009-06-291-8/+18
| | | | performance)
* Update svn properties, add copyright header, formatting cleanup.Jeff Ames2009-06-292-3/+30
|
* From: Chris Yeoh <yeohc@au1.ibm.com>Sean Dague2009-06-2910-47/+59
| | | | | | | | Attached is a patch that changes the oar file saving of creation date/time to an integer instead of a string. I did this after justincc emailed me saying there is a problem with internationalisation doing it the old way and I said I'd fix it. Its been tested with MySQL and I've made the changes for MSSQL but that hasn't been well tested.
* Thank you kindly, Godfrey, for a patch that:Charles Krinke2009-06-291-1/+2
| | | | | | | | | | The new IRCd module causes an error when multiple instances of OpenSim are run on the same machine; since the port number (6666) is hardcoded, the second and subsequent instances crash upon startup because the port is already in use. Attached is a patch which adds a Port specifier to the [IRCd] section of the config file, which defaults to 6666 if not present.
* Thank you kindly, Grumly57 for a patch that solves:Charles Krinke2009-06-281-0/+1
| | | | | | | | When a sit position is modified by llSitTarget and the sim is restarted, the object sit position is lost until llSitTarget is applied again.
* Removed the List<NewForce> m_forceList from ScenePresence, as there wasn't ↵MW2009-06-281-20/+18
| | | | any need for a list, as only the last entry in it was acted on. So it now has a single NewForce m_nextVelocity , which is updated (rather than a NewForce object being created every AgentUpdate). So as well as cutting out all the adds and clearing of the list, it also removes the creation of upto 100+ new objects per second per avatar.
* Make cleartext authentication case sensitive. Thanks jhurliman for spotting ↵Dahlia Trimble2009-06-275-7/+7
| | | | this.
* Update svn properties.Jeff Ames2009-06-272-244/+244
|
* Fixed null bug, which was making unit tests failMW2009-06-261-3/+7
|
* Extracted the code that handles the sending of prim updates to the client, ↵MW2009-06-264-159/+269
| | | | | | | from ScenePresence into ISceneViewer/SceneViewer. Currently ScenePresence "has" a ISceneViewer, although if we had a proper Node based scenegraph then it would most likely be attached directly to the nodes. By extracting this code, it should make it easier to experiment with different ways of managing the update process. [Next step to make this module based, could be to create a SceneViewerFactoryModule]
* Enable the RemoteAdmin module to save regions as ini files rather than XMLMelanie Thielker2009-06-262-18/+89
|
* Make delete-region delete the section from an ini file. Will delete the wholeMelanie Thielker2009-06-262-2/+34
| | | | | | file if it has no sections left.
* Make create region save the new region to ini file format if the nameMelanie Thielker2009-06-252-12/+38
| | | | | | | specifies an ini file. If the ini file exists, the region will be added.
* From this version onwards, all new region files created automatically willMelanie Thielker2009-06-252-13/+117
| | | | | | | | | | be created as new style INI files. This doesn't yet affect create region, but it does affect first starts of OpenSim.exe Because master avatars are slated to be replaced by estate owners, this now allows regions to be created without any master avatar data.
* Add a comment and an example region config fileMelanie Thielker2009-06-252-1/+48
|
* Allow the reading of ini files instead of xml files when reading regionMelanie Thielker2009-06-252-50/+139
| | | | | | definitions from the file system
* Added a note to the ScenePresence.UpdateMovement() method, to remind ↵MW2009-06-251-1/+1
| | | | everyone that the so called "forces" are actually velocities.
* Applied patch from mantis #3820 which changed the clearing of the ↵MW2009-06-251-20/+16
| | | | | | | ScenePresence.m_forcesList, so it used the List.Clear method rather than doing a loop through the list and manually removing each item. Thanks dslake. I also fixed the issue where the code also loops through the m_forcesList and copies each force to the ScenePresence's movementVector. Which resulted in only the last force in the list actually be acted on. As each copy overrode the last one. So now it only copies the last force in the list.
* moving the m_PendingAcksMap.Remove() out of the foreach and clearingDr Scofield2009-06-251-1/+1
| | | | | | it instead after the foreach as we are going through the whole m_PendingAcks list anyhow
* have to clear m_PendingAcks not m_PendingAcksMapDr Scofield2009-06-251-1/+1
|
* hmph: missing '{'/'}', thx to nebadon for reporting it and rob smartDr Scofield2009-06-251-3/+10
| | | | | for spotting it!
* fixing windows specific compile error.Dr Scofield2009-06-251-32/+32
|
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-06-251-1/+1
| | | | | | | | | | | | | | | After noticing on several occasions that the thread counts we see when running OpenSIm were bordering on the astronomical I decided to seriously investigate. After much poking I discovered that the problem is actually very simple. The XEngine secition of the example ini says that the timeout for an iden thread is in seconds, and an example value of 60 is specified. In fact, this is actually resulting in a 60mS idle timeout, which is not normally enough for a smart thread to survive. I have added a multiplier to the XEngine constructor so that the number now matches the published behavior.
* cosmetic changeDr Scofield2009-06-251-2/+1
|
* streamlining m_NeedAck logicDr Scofield2009-06-251-31/+29
|
* streamling m_PendingAcks logic to get rid of gratuitous List<...>Dr Scofield2009-06-251-20/+20
| | | | | instantiations and object copies.
* commenting out expensive bits (who in the world even uses SetClientInfo()?)Dr Scofield2009-06-251-29/+29
|
* changing DropSend()'s foreach loop so that it does not copy theDr Scofield2009-06-251-5/+11
| | | | | LLQueItem m_NeedAck queue each time.
* commenting out rather expensive bits of GetClientInfo() --- the onlyDr Scofield2009-06-251-13/+20
| | | | | | | | bit of GetClientInfo that is actually used seems to be userEP as part of the OSSL osGetAgentIP() script function. Now commented are the parts where we serialize and copy out the *entire* packet queue of the client (locking the packet handler in the process).