aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleApp/Program.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Add total logouts (and total logins) to server side user statsJustin Clarke Casey2008-01-281-1/+1
| | | | | | | * Passing the stats collector through object chains is not ideal - this will change when more stats come in * This change will need a prebuild
* * Add very basic initial login stats to the user serverJustin Clarke Casey2008-01-251-1/+2
| | | | | | | | * Typing 'stats' on the command line will given total number of successful logins today and yesterday * A little bit more to come, probably * Refactoring will follow next
* * Mother of all commits:Adam Frisby2008-01-151-1/+1
| | | | | | | * Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
* * Exprimental prim inventory persistence can now be enabled by users.Justin Clarke Casey2008-01-111-2/+2
| | | | | | | | | * This can be turned on by setting storage_prim_inventories_experimental = True in OpenSim.ini * Implemented for sqlite and MySQL, no MSSQL implementation yet * As an experimental feature, there is no guarantee that this won't take down your region or that the db representation won't need to change. * More (and continuing) details at http://opensimulator.org/wiki/OpenSim:Prim_Inventory_Persistence
* * Optimized usingslbsa712007-12-271-2/+3
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* * Removed redundant code in RestService.csAdam Frisby2007-12-181-1/+1
| | | | | | | | * Removed unchecked TryParse, replaced with Parse as we were not checking for success and could lead to weirdness if an exception is ignored. * Removed unused variable m_newAvatar * Removed several unused try{}catch(Exception e){}'s. * Added null assignment in simpleapp to prevent warning.
* more minor cleanup. added some command descriptions to region server help.Jeff Ames2007-12-061-1/+7
|
* removed some duplicate hard-coded port numbers. changed ports to uint.Jeff Ames2007-12-061-1/+1
|
* fixed exception and login failure in SimpleApp. (still doesn't work like it ↵Jeff Ames2007-12-041-4/+5
| | | | used to, though)
* * Extended our semi-stupid implementation of in world object permissions to ↵Teravus Ovares2007-11-301-1/+1
| | | | | | | show a user's client that it can't edit a prim if it doesn't have permission. * Permissions is due for a big revamp. The current way it's done is a hack at best.
* * Did some initial work for prim crossing. Just glue so far.Teravus Ovares2007-11-211-1/+1
| | | | | * Added the child_get_tasks OpenSim.ini flag for testing the UDP packet sending code and packet throttler. This flag gets purposely disabled in grid mode. This flag also has the consequence that you can see the prim in neighboring regions without going into them. Be warned, this causes tons of dropped packets.
* Attempt to get World Map working in Grid mode, will need to be using the ↵MW2007-11-181-1/+2
| | | | | | | | | | grid asset server for it to work correctly and has only been quickly tested in a three region grid. Moved PermissionManager creation out of the Scene constructor and instead a PermissionManager is passed to the constructor as a param. So that we could create and use custom permissionsManagers. Added AllowMovement property to ScenePresence which can be used to stop movement of avatars (for example in a custom region that wanted avatars always in one place). Added PermissionManager call when copying objects, although currently the call will always return true so that it allows copying in places like Wright Plaza. A few other changes/fixes.
* *** BIG CHANGES : REGION STORAGE MOVED : UPDATE YOUR OpenSim.ini FROM ↵lbsa712007-11-151-2/+2
| | | | | | | | | | | OpenSim.ini.example ** * Now moved region storage from region to application, so we have one storage per application, instead of one per region. * Changed so that the region store providers use connectionstrings, not filenames * Removed various unfit fields and properties (call me Darwin)
* * adds flag in OpenSim.ini for disabling physical prim. Look at ↵Teravus Ovares2007-11-111-1/+1
| | | | OpenSim.ini.example in the bin folder for an example.
* * Moves the Meshmerizer to a separate pluginTeravus Ovares2007-11-101-2/+2
| | | | | | * Experimental. Linux Prebuild needs testing. * One more update after this to remove the ODEMeshing directory....
* * Added better logging to AssetCachelbsa712007-11-061-1/+1
| | | | | | | * AssetCache now ignores duplicate uploads * some m_ refactoring * ignored some bins
* First part of Scene refactoring:MW2007-11-031-1/+2
| | | | | | Started the move of some of the methods from scene into a inner class (currently called InnerScene.cs), the idea being that the code related to the 3d scene (primitive/entities/Avatars etc) will be in this inner class, then what is now Scene.cs will be left as a kind of wrapper class around it. And once the spilt is complete can be renamed to something like RegionInstance (or any name that sounds good and ids it as the Region layer class that "has" a scene). Added SceneCommunicationService which at the moment is a kind of high level wrapper around commsManager. The idea being that it has a higher level API for the Region/Scene to send messages to the other regions on the grid. a Example of the API is that instead of having sendXmessage methods, it has more functional level method like PassAvatarToNeighbour. Hopefully this will allow more freedom to do changes in communications that doesn't break other things.
* * Optimized usingslbsa712007-10-301-37/+50
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW2007-10-291-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.
* * Added prototypical AvatarFactory module interface to load avatar parameterslbsa712007-10-261-1/+1
| | | | | | | * Added dump_assets_to_file option to enable asset dumping for debug * normalized some namespaces * InventoryFolder renamed to InventoryFolderImpl to
* apply http://bug.opensecondlife.org/view.php?id=512 from chillkenSean Dague2007-10-251-1/+1
| | | | | | which cleans up the verbose logic
* changes to pass nini config object to the modules that getSean Dague2007-10-191-2/+5
| | | | | | loaded so that they may read out any bits they are interested in
* * Total refactoring of Asset Server for massive winlbsa712007-10-191-2/+0
| | | | | | * There is now a AssetServerBase * lolcat in ur assets
* * Applied Chillken patch #419: consolidate_ports-r2096-3.patch - ↵lbsa712007-10-151-5/+3
| | | | consolidated port number defaults. Thankx Chillken!
* * Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa712007-10-151-0/+28
|
* * Now loading modules from ScriptEngines directory as well.lbsa712007-10-101-3/+1
|
* * Gave ModuleLoader some good lovin'lbsa712007-10-101-3/+5
| | | | | | | * Introduced ModuleLoader.PickupModules that currently picks up IRegionModule:s from /bin * Made LogBase thread-safe (or at least not thread-ignorant) * Ignored some genned files
* more refactoringMW2007-10-031-4/+9
|
* Some continuation of lbsa71's refactoring of the CommunicationsManager.MW2007-10-031-2/+2
|
* * Moved setup of LocalInventoryService and LocalUserServices to the app layerlbsa712007-10-021-2/+6
| | | | | | | * Killed off 'parent' relation from LocalUserServices to CommunicationsLocal * Deleted obsolete project InventoryServiceBase * Deleted superfluous createCol function
* * Encapsulated all CommunicationsManager serviceslbsa712007-09-241-0/+1
|
* * Purged 'Regions' code pending Agent layer grok.lbsa712007-09-231-11/+4
| | | | | | * Changed so prims aren't loaded until AFTER parcels. * The region startup flow is still an ungodly rats nest.
* * even more renaming and refactoring; the cleaning woman is on call.lbsa712007-09-201-2/+0
|
* Rev 1971 : The Lbsa71 vintage commitlbsa712007-09-201-3/+2
| | | | | * Refactored to prepare for some serious restructuring
* * moved SceneManager to RegionApplicationBaselbsa712007-09-201-2/+5
| | | | | | * Implemented SceneManager.StopScene() and Scene.Stop() * Some SimpleApping
* Some work on Module loading/management.MW2007-09-041-3/+27
| | | | | | | | 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)
* Corrected the namespace in OpenSim.Region.Physics.Manager, so now namespace ↵MW2007-08-281-1/+1
| | | | should equal project and directory.
* Start of trying to make Region/Scene more modular. MW2007-08-281-1/+1
| | | | | | | | | 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.
* Deleted a few old files that are no longer used.MW2007-08-271-1/+0
| | | | | | 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.
* Deleted old inventoryCache.csMW2007-08-161-1/+0
|
* Can now set the plugins for standalone mode's Inventory database (default ↵MW2007-08-161-1/+2
| | | | 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).
* * We now have a field of spinning objects.lbsa712007-08-151-3/+7
|
* * Exploring Group/Part from an app perspective.lbsa712007-08-151-6/+7
|
* The Welcome message /message of the day shown in the client during login, ↵MW2007-08-131-1/+1
| | | | can now be set from the .INI file for standalone mode (change the standalone_welcome = "Welcome to OpenSim" line).
* Made account Authentication optional in "sandbox/standalone" mode. Just ↵MW2007-08-111-1/+1
| | | | 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.
* Start of replacing the old SceneObject/Primitive classes with the new versions.MW2007-08-091-1/+1
| | | | | | PLEASE NOTE: that with this revision some prim related features may be broke for a while. (things like linking prims and the parcel prim count.) Also this revision may not work on mono, but that will be fixed soon.
* * Got SimpleApp working againlbsa712007-08-081-1/+4
| | | | | * Minor shape koncept experiments
* * SimpleApp works again:lbsa712007-08-061-4/+1
| | | | | | | | | | | * NetworkServersInfo settable without config file * DefaultHomeLoc throws if getted before setted * Removed nonsensical sandbox distinction * Refactored default config file creation * Some more small refactorings on shapes
* * Reduced a significant number of compiler warnings (back down to 9 for all ↵Adam Frisby2007-07-241-1/+1
| | | | projects combined, all 'never used' things)
* * Some work in progress code: Inventory cache, start of inventory ↵MW2007-07-221-2/+3
| | | | | | | | | | | server/service, userprofile cache, inventory handling. (non of it is enabled yet (or at least it shouldn't be). * Fixed some of the problems with crossing regions when flying: you should no longer sink to ground level when crossing (should keep roughly your right height). Should no longer sometimes get sent back to the centre of the current region when attempting to border cross. But instead sometimes you will find you avatar stop at the edge of region and you will need to start moving again to retry the crossing (which should then work). This code is partly based on Babblefrog's issue #212 patch. [I think I have some ideas of how to solve the stopping at edges problem, just want to get the inventory code done first] * Capabilities code has now been moved to the OpenSim.Framework.Communications project as some of the caps code will be tightly tied to inventory/asset handling and it was causing a two way reference problem when it was in its own project/dll. This is a Big commit as I was going to keep my inventory work local until I had it in a working state, in case it brakes anything, but its getting harder to keep in sync with svn.