aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-10-03Add the missing bits for the new region-search:Homer Horwitz1-0/+15
- Added lookup in the data-layer - MySQL works - SQLite doesn't have a grid-db, so it won't work there - I added MSSQL-code to the best of my knowledge; but I don't know MSSQL :-) - Added the plumbing up to OGS1GridServices. This speaks with the grid-server via XMLRPC. - Modified MapSearchModule to use the new data. It's backward compatible; if used with an old grid-server, it just returns one found region instead of a list. - Refactored a bit. Note: This updates data, grid-server and region code. No new files.
2008-10-03* Committing a few keep-alive changes. Cleaned up some log messagesTeravus Ovares1-6/+21
2008-10-03* Fixes a http protocol violation in HttpServer in Linux. ↵Teravus Ovares1-1/+6
StringWriter.Append() vs StringWriter.Append("\r\n"); StringWriter.Append() produces "\n" in *nix* * This doesn't solve anything. Just gets the protocol right.
2008-10-03* refactor: make shutdown a template method in the same manner as startup, ↵Justin Clarke Casey1-2/+9
for consistency's sake
2008-10-03* minor: restore the standard startup logo text now I understand why things ↵Justin Clarke Casey1-1/+1
were appearing in the wrong order
2008-10-03* oops, fix region startup to be in the correct sequence (though it appeared ↵Justin Clarke Casey1-1/+1
to work anyway)
2008-10-03* For shits and giggles, print out the time taken for a server to start up ↵Justin Clarke Casey1-0/+4
(which doesn't include stuff such as script starting time on the region server). * Yes, you could work this out from timestamps in the logs, but that's far too much work
2008-10-03* refactor: make startup a template methodJustin Clarke Casey1-2/+9
2008-10-03This changeset changes the way chat from client is routed: Dr Scofield2-1/+6
old way: each region module interested in chat from client had to - subscribe to scene.EventManager.OnNewClient - then in its OnNewClient delegate it would subscribe to client.OnChatFromViewer to capture chat messages coming new way: ChatModule is the only region module that uses the "old way" approach but is now forwarding all client chat via scene.EventManager.OnChatFromClient - each region module interested in chat from client now only subscribes to scene.EventManager.OnChatFromClient this not only simplifies code, but also allows us to substitute ChatModule with derived classes (ConciergeModule is going to be one example). Also, this changeset changes ChatFromViewer to ChatFromClient as it doesn't necessarily have to be a viewer that is a chat source. i've taken great care to only comment out those OnNewClient delegates that were only used for getting at the client chat --- hope it's not breaking anything.
2008-10-03* minor: remove warnings (the code cleaners strike again)Justin Clarke Casey1-4/+4
2008-10-03Mantis #1360Melanie Thielker1-2/+3
Thank you, idb, for a patch to implement the packet and plumbing for the material settings.
2008-10-03* EventQueueGet is now working.Teravus Ovares1-10/+174
* Switched it on by default * Updated OpenSim.ini.example to reflect this * Caught a UDP Server issue that occurs when the network pipe is saturated * Still experimental :D
2008-10-03Check for empty string as well, just as illegal.Melanie Thielker1-1/+1
2008-10-03Prevent an exception when the directory given for XML save is read onlyMelanie Thielker1-0/+3
and region config is loaded from the web
2008-10-02- Fixed a small off by one error in sending MapBlocksHomer Horwitz1-1/+0
- Removed MapBlockData.Flags; it isn't used anywhere (maybe MapBlockData.RegionFlags replaced it?)
2008-10-02- Fix invalid cast in OSHttpRequestHomer Horwitz1-3/+3
- Web-map should work again :)
2008-10-01- Added SendScriptTeleportRequest to IClientView and classes implementing it.Homer Horwitz1-0/+1
- Implemented llMapDestination.
2008-10-01one class per file please.Sean Dague2-100/+138
This puts the TaskInventoryDictionary in it's own file.
2008-10-01Add a user server XMLRPC method to set the MOTD and the minimum GodLevelMelanie Thielker2-0/+25
required to log in. set_login_params accepts avatar_uuid and password of a user with god level 200 or more, and allows setting either or both the login_motd or login_level
2008-10-01* Adds error handlers for errors parsing the querystring passed on the ↵Teravus Ovares1-3/+18
OSHttpRequest constructor. * maybe.. it was a key that was null. Obviously you can't still a null key in a string key'ed collection.
2008-10-01* Fixed a mangled Seed caps handler definition on login to region in ↵Teravus Ovares1-3/+3
standalone where port wasn't the http port. * Removed spurious warning message * More debug in EventQueueGet Module to figure out why we're loosing the handlers.
2008-09-30* Replacing Net.HttpListener with HttpServer. Teravus Ovares4-87/+292
* This is a HUGE update.. and should be considered fraut with peril. * SSL Mode isn't available *yet* but I'll work on that next. * DrScofld is still working on a radical new thread pump scheme for this which will be implemented soon. * This could break the Build! This could break your Grid!
2008-09-30* Fixed minor issue while building: If you do a raytraced object placement ↵Adam Frisby1-2/+1
and a target isn't found, the object is rezzed at 0,0,0 - instead now it will place according to the position sent by the client. * We may instead want to abort and send a "Cannot Rez Here" message?
2008-09-30Allow create-region to load files from arbitrary locationsMelanie Thielker1-0/+5
2008-09-30* Get the code up to speed with my -#dev e-mail example. (uncomment out ↵Teravus Ovares2-4/+34
lines 227 - 235 to test.
2008-09-29* minor: remove warningsJustin Clarke Casey1-6/+7
2008-09-29* Apply http://opensimulator.org/mantis/view.php?id=2294Justin Clarke Casey1-0/+15
* This is an initial basic experimental code for inventory import and export from the region server * Probably not yet ready for general use * Thanks Kayne!
2008-09-28Mantis#296. Thank you kindly, Idb for a patch that resolves:Charles Krinke1-0/+2
Estate/ Manager Owner Uses the Region/Estate Menu Region TAB, and uses "Teleport Home All Users..." (Action Button), the action will complete but no one will be teleported and all users still function in the region ok.
2008-09-28Add some methods to allow modules so set client view optionsMelanie Thielker1-0/+2
2008-09-28Mantis#2288. Thank you kindly, SMeans, for a patch that:Charles Krinke1-2/+2
Corrects the typo of namespace Opensim.Framework to OpenSim.Framework in Cache.cs.
2008-09-27* Event queue is now polling.. Teravus Ovares1-2/+4
* returns FAKEEVENT instead of the connection returning a 502. It doesn't like our 502's for some reason.. so, in leau of this.. send it a fake event. * Once again, this is still 'really early' code, so please don't blame us if you have no more threads left.
2008-09-27- adding Dequeue with a timeout to the BlockingQueueHomer Horwitz1-0/+17
2008-09-27* This is the very very early beginnings of an EventQueue:get module.Teravus Ovares3-5/+155
* This won't function yet as far as the client can tell.. because it doesn't respond to the first query with a 200 message. * We have to figure out how to encode those binary values in the example code in the module... * Committing this so we have a start point. Will continue to work on this more today.
2008-09-26* Patch from JHurlimanTeravus Ovares6-35/+34
* Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
2008-09-26* Wind updates. Still random.. but in 4 directions instead of two!Teravus Ovares1-1/+1
* It seems kind of silly to be building a 256x256 array just to use two 16 float blocks.. but for now the layerdata routine requires it so we'll go along with that. * We only fill a 32x16 area of the 256x256 float array with data. * We use patches 0,0 and 0,1 for the first and second patch to determine the direction and magnitude of the wind.
2008-09-25Add an extension to allow registering multiple interfaces of a type withMelanie Thielker1-0/+1
Scene. Make the script engines check that the engine name in the //Engine:language comment is a valid engine and treat it as a normal comment if it's not. //DotNetEngine: needs to be written as //ScriptEngine.DotNetEngine: now, since that is it's real internal name. //XEngine: still works
2008-09-25Mantis#2017. Thank you kindly, Tyre, for a patch that solves:Charles Krinke2-11/+4
Check the client dialog box (from top menu) WORLD / REGION ESTATE / REGION tab. The client dialog box seems to have a hard limit of about 32 characters per line available for displaying the region version number. Our regions are sending a string which is greater than the limit, causing the client to wrap the text and look ugly.
2008-09-25* Adds some WindTeravus Ovares1-0/+3
* A little wind wouldn't hurt anyone, right? This is the 'slightly breezy' setting.. hopefully you won't notice 'much' of a difference. * It turns out the terrain patch routine is similar enough to the wind version that it can be used to hack together a breeze generator with a few mods. * Not much configuration.. yet. You only get breeze updates in the general vicinity of your camera now to keep bandwidth usage down.. and we're not talking about 'much' movement at the moment. * initial version... could use improvement I'm sure.
2008-09-25temporarily disabling HttpServer related stuff (take #2: Exclude takesDr Scofield2-48/+48
regex not shell glob)
2008-09-25* In Standalone, add a persistant account for the OGP user.Teravus Ovares3-4/+30
* Gridmode, this has no effect at all.
2008-09-25* Remove a message handler Teravus Ovares1-0/+2
* Add a more specific error handler for when we're unable to pull the OGP state * rez_avatar/derez ?
2008-09-24Add persistence of active gestures. This needs an UGAIM update to work.Homer Horwitz4-2/+41
Active gestures are sent as part of the login-response. Added fetchActiveGestures to SQLite and MySQL; added an empty one for MSSQL and NHibernate. Using the empty ones won't cause errors, but doesn't provide persistence either, of course.
2008-09-23* OGP GET, look for Accept header application/llsd+xml with an optional ?q=Teravus Ovares1-1/+1
2008-09-23* Fix a null reference exception that I introducedTeravus Ovares1-1/+1
2008-09-23* Get Requests for OGP don't have a Content-type: application/llsd+xml, they ↵Teravus Ovares1-0/+12
have an Accept: application/llsd+xml.
2008-09-23* Update in OGP draft 3 protocol spec with regards to seed region requests ↵Teravus Ovares1-2/+7
running over GET instead of POST and the rez_avatar/request cap being wrapped in the capabilities map.
2008-09-21* minor: Remove some of the redundant asset id storage for nowJustin Clarke Casey1-11/+12
2008-09-21* Start recording asset request times after a cache miss. This is very ↵Justin Clarke Casey2-6/+33
primtive at the moment - only the last time is kept for some classes of request * This can be seen as "Latest asset request time after cache miss" in show stats on the region console
2008-09-21* Eliminate the need to copy asset request lists in the asset cache when an ↵Justin Clarke Casey1-82/+22
asset is received or missing * Also eliminates a race condition
2008-09-21* minor: tidy up of AssetCache, remove currently pointless storing of thread ↵Justin Clarke Casey1-12/+9
reference