aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleApp/Program.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * 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.
* * Fixed an config issue (log not initialized in RegionInfo config)lbsa712007-07-201-0/+5
| | | | | * Added LineInfo stacktrace parser to LogBase (not used yet though)
* * Added a FileSystemObject to SimpleApplbsa712007-07-181-3/+23
| | | | | | * Added Some ShapeTypes (shapes doesn't work though!) * Fixed some \0 issues
* * renamed MySceneObject to CpuCounterObjectlbsa712007-07-171-1/+1
|
* * Changed SimpleApp to use EventManager and Scene timerlbsa712007-07-171-1/+2
| | | | | * Refactored a lot of m_* and public -> wrappers
* * debugged quite a lot of db-related strangeness and various refactoring goofslbsa712007-07-171-10/+7
|
* * RegionApplicationBase restructuring now completelbsa712007-07-161-46/+23
| | | | | * Still has some weird bug in SimpleApp though.
* * And yet more restructuring of startup sequence...lbsa712007-07-161-14/+15
|
* * Reset IP in SimpleApp back to localhostAdam Frisby2007-07-161-1/+1
|
* * Fixed SimpleAppAdam Frisby2007-07-161-2/+3
|
* * SimpleApp's IP address is slightly less hard coded (now reading from a ↵Adam Frisby2007-07-161-3/+5
| | | | hard coded var vs lots of use of "127.0.0.1")
* * Massive restructuring of RegionApplicationBase, OpenSimMain and SimpleApplbsa712007-07-161-29/+35
|
* *Renamed everything Parcels and ParcelData to Land and LandDatamingchen2007-07-161-1/+1
| | | | | *Added missing files (I hope)
* *Renamed ParcelManager to LandManagermingchen2007-07-161-1/+1
| | | | | | *Made the Parcel class its own file and moved the Parcel and LandManager into their own folder in Environment *Some renaming might need to be done so the Parcel class doesn't have issues with the libsecondlife Parcel class, but Land doesn't seem right.