aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Made ClientViewBase abstractlbsa712007-09-181-2/+0
| | | | | * Deleted unused m_consoleRegion
* * Moved some commands from Scene into SceneManager so they could be used ↵lbsa712007-09-171-140/+133
| | | | | | | with 'root' * Removed some duplicated commands
* *doh*lbsa712007-09-171-1/+1
|
* * CHANGED SOME CONSOLE COMMAND BEHAVIOURSlbsa712007-09-171-130/+84
| | | | | | | | | | | | | | | | * Normalized 'change-region' so (almost) all commands are context sensitive (use 'root' or '..' to set 'all scenes' context) * 'terrain-sim' is thusly obsolete, use 'change-region', followed by 'terrain' * Introduced SceneManager to administrate operations on group of scenes and moved relevant funcs there. * In it, there's a ForEach(Action<Scene>) that either passes all scenes, or only current scene depending on context. * Changed default prim backup (save-xml/load-xml) xml to "prim-backup.xml" * Changed Disable/EnablePermissions to BypassPermissions = true/false; Also: * Removed unused and non-existent project ref
* Added CLI "debug packet 0..255" to enable the in/out packet dumps with ↵Dalien Talbot2007-09-131-0/+58
| | | | various verbosity
* * minor refactoringslbsa712007-09-111-14/+7
|
* mass update of urls in source code to new websiteSean Dague2007-09-103-3/+3
|
* A couple of fixes to make sure db4o gets set as the default asset database. ↵MW2007-09-101-2/+2
| | | | Also added a couple of console output lines to try to make it easier to tell which asset storage system is in use.
* Added "asset_database =" option to opensim.ini, so the asset database can be ↵MW2007-09-101-2/+13
| | | | selected. Currently set default back to db4o until more people test using sqlite.
* hooked up sdague new sqlite asset database provider to the old asset system. ↵MW2007-09-101-1/+2
| | | | | | | | So we can still use sqlite for assets while we wait for the rest of the new asset system to be wrote. Needs more testing, so if it causes problems will have to swap back to db4o.
* Converted the LSL scripting engine into a IRegionModule, so now all ↵MW2007-09-081-9/+9
| | | | | | | | | "modules" share a common base interface and are loaded from the single loader. (It seems to work fine, but I have left the old scriptengine loader, incase we have to change back). Removed the reference to OpenJpeg in the DynamicTextureModule, to see if that was causing the build problem someone is having. Added a Temporary fix for the "existing connection was forcibly closed by the remote host" exception on windows when a user logs out of a multiregion instance. Some early work to prepare for improving the way clients are updated (about prims etc).
* Fixed it so "shutdown" command works when a region is set as the active ↵MW2007-09-041-1/+1
| | | | console region.
* Removed the exit-region command, now use "change-region root" or ↵MW2007-09-041-19/+22
| | | | "change-region .." to change back to root level. [Would be nice if the command prompt changed to show what the current region was, but think that will need changes to the console code so for now it will have to stay as it is].
* Added "show modules" command that if at root level will display a list of ↵MW2007-09-041-0/+7
| | | | | | | loaded "shared modules" (modules instances that are shared by multiple regions) or if a region is set then will display the list of local modules loaded in that region. Can now use "show users" when a region is set, to have a list of users in just that region displayed.
* Using change-region without a region name will now display the currently ↵MW2007-09-041-3/+14
| | | | active region's name.
* Fixed it so change-region works with region names that have spaces in them. MW2007-09-041-8/+33
| | | | | Fixed it so that change-region gives some feedback to show if its worked (found the region) or not.
* Some work on Module loading/management.MW2007-09-041-114/+152
| | | | | | | | Some more modules templates classes (hoping that someone will pick some of these and work on implementing them). Early version of the "Dynamic Texture Module", although currently there are no render modules included (so not really functional without them). Added osSetDynamicTextureURL script function, for attaching a dynamic texture to a prim. Some work on the console command handling. Added "change-region <regionname>" and "exit-region" so that after the use of change-region, the commands entered will apply to that region only. Then use exit-region to return to the top level (so commands then function as they did before and either apply to all regions or to the first region) (Note: this hasn't been tested very much)
* Config option for loading ScriptEngine (wjordan)Tedd Hansen2007-08-301-3/+12
| | | | | Removed project file for ExcensionsScriptModule
* Added some place holder classes for various modules.MW2007-08-301-0/+2
| | | | | Some work on the asset cache, can people please test this. including on one of the public systems so we can see if it causes problems with multiple users.
* Corrected the namespace in OpenSim.Region.Physics.Manager, so now namespace ↵MW2007-08-281-1/+1
| | | | should equal project and directory.
* As part of our "we aim to please" commitment, have added the ability to ↵MW2007-08-281-2/+2
| | | | create a user in one command line: "create user firstname secondname passwrd regionX regionY". This allows the use of the "command-script" feature. So to add a bunch of new accounts, just create a text file, and add a line as above for each account. Then in the opensim console, type: "command-script filename".
* Start of trying to make Region/Scene more modular. MW2007-08-281-10/+17
| | | | | | | | | Added preliminary IRegionModule interface. Also have a work in progress way of Modules registering optional API methods (kind of like Apache optional functions). But there must be a cleaner/nicer way in c# of doing these than the current way. Added three work in progress modules: ChatModule (simple handles in world chat, but by moving this to a module, we could support other types of chat modules, ie like a irc - opensim bridge module. ) , AvatarProfilesModule and XferModule. Moved most of the code from Scene.ModifyTerrain() into the BasicTerrain library, as the start of trying to make that more modular. Stopped Child agents showing up as part of the "show users" command.
* Fixed the bug that sent a region port as the CAPS url, instead of sending ↵MW2007-08-271-0/+3
| | | | the httpListener port.
* Deleted a few old files that are no longer used.MW2007-08-271-1/+5
| | | | | | Deleted the GridInterfaces projects, and for now moved the old local asset server into Framework.Communications, as we prepare to rewrite the asset cache and asset server. Deleted Framework.manager as I am sure this is no longer in use.
* Applied dalien's "show users" patchMW2007-08-251-1/+1
|
* Hopefully fixed the issue of inventory not working for the master account. ↵MW2007-08-241-22/+26
| | | | (Note you will need to delete userprofile.yap for this to take effect.)
* Small bit of refactoring to the startup command script code (moved it into a ↵MW2007-08-241-15/+27
| | | | separate method), so that I could add a new CLI command of "command-script <fileName>", so that as well as the startup command script still being processed on startup. A user can create other command scripts and use the single command ("command-script <filename>") to run them at any time. Could be useful for trying out various configurations etc.
* (Untested) Scripts are individually loaded into objects (on rez), and event ↵Tedd Hansen2007-08-221-2/+0
| | | | fired likewise. Bugfixes coming in next commit.
* Shift and Drag copying should now work correctly. [This was one of those ↵MW2007-08-211-0/+2
| | | | | | | | stupid little one line bugs that was so much fun to track down that I decided to spend a few hours on it) Linking groups should now work better than it did, but still a bit of work to do on getting the rotations of all the parts after linking right. Added part of dalien's #301 patch (xml loading/saving related parts with some small changes)
* Can now turn on/off server side permission checking (on prim editing etc) ↵MW2007-08-211-1/+9
| | | | | | | from the opensim.ini file. Just add a line to the Startup section like : serverside_object_permissions = true Changes /editing that are made to clothing/ body parts in your inventory should now be saved between logins/ restarts.
* Sqlite datastore should now save the textures and extraparams data (used by ↵MW2007-08-192-3/+23
| | | | | | | | | | | | | sculpties) correctly. [Really need to add a ExtraParams field to the sqlite database though, but for now I have combined their data so that we don't lose backward compatibility, know a couple of people have been using the datastore already]. Now have a rough day/night cycle (the movement of the sun needs to be made smoother but for now it is better than we had I think). Added dalien's patch (issue 294) for saving and loading prims to a xml file (think he will be modifying these to be import/export functions and maybe writing a xml datastore for backups). Some preliminary work on task inventory (ie object's/prim's inventory). Added place holder data for AvatarProperties (ie a avatar's profile). Should we store this sort of data on the user server or have another server for it (a normal webserver should work). Added a few more method to IClientAPI. Sure there is something I'm forgeting.
* * Added new terrain-sim <simname> <terrain commands...> function to run ↵Adam Frisby2007-08-171-0/+16
| | | | | | | terrain commands on a specific sim. * Made arguments for terrain save grdmap optional. Uses defaultstripe if no argument specified.
* Pimped up Default.lsl. Now featuring a touch counter.Tedd Hansen2007-08-171-1/+1
| | | | | Changed "ObjectID" in ScriptEngine to IScriptHost reference. Events will now be queued based on IScriptHost reference instead of string ID of object. Removed "root" object reference in script.
* *Moved network_servers_info.xml into OpenSim.ini under [Network]mingchen2007-08-171-5/+7
|
* Deleted old inventoryCache.csMW2007-08-161-1/+0
|
* Can now set the plugins for standalone mode's Inventory database (default ↵MW2007-08-161-4/+9
| | | | sqlite) and for its user database (default DB4o). Currently changing the user plugin to MySql should work (if you have MySql setup (should be same as for grid mode). There is also a MySql provider for the inventory but not 100% certain if that is finished and functional (will need to check with Adam on that).
* *Added the ability to run commands after all regions have started upmingchen2007-08-151-0/+31
| | | | | *By default, it is set to startup_commands.txt. Simply add a list of commands separated by a new line to be run or change the file by changing the path of a startup commands file in OpenSim.ini
* * Permissions! - You can now only perform certain functions (such as editing ↵Adam Frisby2007-08-151-0/+11
| | | | | | | | | | | | | other peoples objects) if you have permission to do so. * Moved OnPermissionError to EventManager - now triggers a standard blue alert. * Terraforming now requires permission via the permissions manager. [Defaults to admin-only] * Permissions manager is now substantiated in Scene * Buttload of new permissions added. * Estate manager operations now require various levels of permission to operate * OGS1 now produces 'summary reports' for a commsManager of each scene it maintains connections for. Reduces grid network traffic for ping checks. * Added new "permissions true" / "permissions false" console command to enable or disable permissions.
* Correct caps of Default.lsl for Linux. Thanks again krinkec. :)Tedd Hansen2007-08-141-1/+1
|
* ScriptEngine: Some error handling, logs to loggerTedd Hansen2007-08-141-6/+6
|
* Start of Inventory service, currently only (partially) functional in ↵MW2007-08-141-5/+1
| | | | | | | | standalone mode and using sqlite). In standalone mode, if you have account authenticate turned on (setting in opensim.ini) then when you create a new account, a set of inventory is created for that account and stored in database (currently only a set of empty folders). Then during login the database is search for that set and sent to the client in the login response. More functions will be added soon, like creating new folders (and a bit later items) from the client inventory window.
* Disabled ScriptEngine until I add error handling tomorrowTedd Hansen2007-08-131-4/+4
|
* Common script for all objects (Default.lsl). ScriptEngine touch_start event ↵Tedd Hansen2007-08-131-1/+5
| | | | now works, but llSay only outputs to server console.
* (DotNet) ScriptEngine is now loaded and added to Scene during startup.Tedd Hansen2007-08-131-0/+9
|
* Setting culture for startup thread to invariant. Config now read correctly ↵Tedd Hansen2007-08-131-0/+6
| | | | on alternate regional settings.
* The Welcome message /message of the day shown in the client during login, ↵MW2007-08-131-1/+4
| | | | can now be set from the .INI file for standalone mode (change the standalone_welcome = "Welcome to OpenSim" line).
* Added a new column (SceneGroupID) to sqlite3 table (sqlite3-prims.sql) so ↵MW2007-08-111-11/+7
| | | | that we can tell what prims belong to the same SceneObjectGroup. If sdague has a different method in mind when he gets back then he can change it then.
* Made account Authentication optional in "sandbox/standalone" mode. Just ↵MW2007-08-111-2/+20
| | | | change "standalone_authenticate = false" to be true in OpenSim.ini. Then as per grid mode, you can use the "create user" command to create new accounts.
* I'm sorry but it has now became a case of either it goes or I go, so I'm ↵MW2007-08-101-1/+1
| | | | | | | removing the creating a different named log file every time opensim is ran (I can't take doing a bit of developing then finding 500 log files in the bin folder), and as opensim allows multiple regions in a instance there should no longer be the need to run multiple instances of opensim from a single folder (which was I believe the reason that code was added ). If someone else can't live without the multiple log files then I guess...
* Some cleaning up and removed a few old files no longer in use.MW2007-08-101-31/+30
| | | | | | | | | | | Temporary have had to rename the OpenSim.DataStore.MonoSqlite project to OpenSim.DataStore.MonoSqlite1, as I'm not sure what was done to stop the old project name being included in the VS2005 solution. Also some config changes: OpenSim now has a INI (OpenSim.ini) file that it will read some config settings from (if the ini file exists). Added Mono.Data.SqliteClient.dll so that we can use the same code for sqlite on Windows and mono/linux. (from what I can tell Mono class libraries have a MIT license so there should be no problems with us including this dll). So now to get the basic prim storage working , you need to first create the sqlite database file from the sqlite3-prims.sql in share directory. Then in the OpenSim.ini file, change the storage_plugin so it points to OpenSim.DataStore.MonoSqlite1.dll (storage_plugin = OpenSim.DataStore.MonoSqlite1.dll). Then in your region.xml files change the DataStore value so it is the name of your database file (at the moment you need a different sqlite3 database file for each region).