aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add a OS_NPC_LAND_AT_TARGET option to osMoveToTarget()Justin Clark-Casey (justincc)2011-08-101-1/+4
| | | | | | | Default for this function is now not to automatically land. This allows better control by scripts when an avatar is going to be landing on a prim rather than the ground. Stopping the avatar involves faking a collision, to avoid the pid controller making it overshoot. A better approach would be to gradually slow the avatar as we near the target
* early code to allow scripts to force npcs not to fly when moving to targetJustin Clark-Casey (justincc)2011-08-101-1/+5
| | | | | this is to allow walking on prims. it will be up to the script writer to be sure that there is a continuous path. currently implemented in osNpcMoveToTarget(), but none of this is final.
* implement osNpcStopMoveTo() to cancel any current move targetJustin Clark-Casey (justincc)2011-08-101-4/+15
|
* Implement first draft functions for saving and loading NPC appearance from ↵Justin Clark-Casey (justincc)2011-08-092-1/+26
| | | | | | | | | | storage. This works by serializing and deserializing NPC AvatarAppearance to a notecard in the prim inventory and making the required baked textures permanent. By using notecards, we avoid lots of awkward, technical and user-unfriendly issues concerning retaining asset references and creating a new asset type. Notecards also allow different appearances to be swapped and manipulated easily. This also allows stored NPC appearances to work transparently with OARs/IARs since the UUID scan will pick up and store the necessary references from the notecard text. This works in my basic test but is not at all ready for user use or bug reporting yet.
* rename NPC.Autopilot to NPC.MoveToTarget internally. Add method doc to ↵Justin Clark-Casey (justincc)2011-08-031-1/+31
| | | | INPCModule
* refactor: rename bool returning GetAgentInventoryItem() to ↵Justin Clark-Casey (justincc)2011-07-081-1/+9
| | | | CanGetAgentInventoryItem() to improve code readability
* Create a very basic initial test which just creates an 'npc' and tests that ↵Justin Clark-Casey (justincc)2011-07-021-0/+40
| | | | the scene presence exists
* Hack around with the NPC module to get osNpcCreate() partially working again.Justin Clark-Casey (justincc)2011-06-291-1/+1
| | | | | | This now creates an avatar but appearance is always cloudy. Move doesn't work. Really, creating an NPC should only involve a ScenePresence rather than doing anything with IClientAPI, since an NPC has no viewer to communicate with!
* Fixed "Unknown User" listed as creator/owner on prims created with the Build ↵Diva Canto2011-06-081-0/+1
| | | | button by foreign visitors. Added command to the UserManagementModule to list all the known bindings between user UUIDs and their names: show user-names.
* HG lures working! Friends can offer friends HG teleports via the profile. ↵Diva Canto2011-05-271-0/+3
| | | | WARNING: additional configuration for HG inis -- see *Common.ini.example
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2011-05-262-6/+21
|\
| * Add a --noassets option to "save oar".Justin Clark-Casey (justincc)2011-05-261-6/+19
| | | | | | | | | | This switch stops any assets being saved in the oar. This can be useful if you're using OAR to backup regions and you know you'll always have the original asset database available.
| * Create a method to force the script engine to save state from outsideMelanie2011-05-241-0/+2
| |
* | Added necessary code to drop inventory on hg friends using the profile ↵Diva Canto2011-05-241-0/+2
| | | | | | | | window, but can't test because this mechanism doesn't seem to work without a profile service.
* | Fixed permissions bug related to friends in PermissionsModule. Added ↵Diva Canto2011-05-211-1/+1
|/ | | | FriendsData[] GetFriends(string principalID) to IFriendsData and FriendInfo[] GetFriends(string PrincipalID) to IFriendsService. Refactored some more in the FriendsModule. Made client get notification of local friends permissions upon HGLogin. HG Friends object permissions work.
* Broke down Caps.cs into a generic Caps object that simply ↵Diva Canto2011-05-011-9/+5
| | | | | | | registers/unregisters capabilities and a specific bunch of capability implementations in Linden space called BunchOfCaps. Renamed a few methods that were misnomers. Compiles but doesn't work.
* First stab at cleaning up Caps. Compiles. Untested.Diva Canto2011-04-301-0/+2
|
* refactor: rename DeleteToInventory() to CopyToInventory()Justin Clark-Casey (justincc)2011-04-181-1/+17
| | | | DeleteToInventory() is misleading - it is the caller that decides whether to delete or not
* Make the "All Estates" option work from the client (this makes chosen ↵Justin Clark-Casey (justincc)2011-04-052-0/+12
| | | | | | | | changes to all the estates that the user owns). This applies to adding/removing estate users, groups, managers and bans. This is the application of the AllEstates_0.5.patch from http://opensimulator.org/mantis/view.php?id=5420 Thanks very much, Snoopy!
* Start using IPrimCounts populated by PrimCountModule instead of LandData ↵Justin Clark-Casey (justincc)2011-03-253-223/+1
| | | | | | | counts populated by LandManagementModule. In order to pass ILandObject into IClientAPI.SendLandProperties(), had to push ILandObject and IPrimCounts into OpenSim.Framework from OpenSim.Region.Framework.Interfaces, in order to avoid ci Counts are showing odd behaviour at the moment, this will be addressed shortly.
* Add ILandObject.IPrimCounts for the new prim count module.Justin Clark-Casey (justincc)2011-03-251-0/+5
| | | | Not functional yet, but tests now act against this object rather than interrogating the module directly
* minor: slightly adjust previous method doc.Justin Clark-Casey (justincc)2011-03-212-2/+2
|
* add method doc to IEstateDataService and IEstateDataStore interfacesJustin Clark-Casey (justincc)2011-03-212-2/+90
|
* On initial region registration, if the user chooses the option to make the ↵Justin Clark-Casey (justincc)2011-03-212-0/+28
| | | | region part of an existing estate, then list the existing region names.
* Hack in a crude temporary "estate show" commandJustin Clark-Casey (justincc)2011-02-121-1/+1
| | | | | | This will show the estate for each region, along with that estate's id and the estate owner. This is temporary because the command output might change. This commit also converts the estate module from the old to the new region module format
* New command: show pending-objectsDiva Canto2011-02-061-0/+1
|
* Create the structure of classes and interfaces to replace the cruft thatMelanie2011-01-291-0/+2
| | | | is in the land management module today
* Add the prim count interfacesMelanie2011-01-281-0/+53
|
* Fix bumping into sim borders and check estate bans for walking crossingsMelanie2011-01-281-1/+1
|
* Thank you, Goetz, for a patch to fix prim count display in cut regions.Melanie2011-01-281-0/+1
|
* When an oar is loaded, do not create a default parcel before loading the ↵Justin Clark-Casey (justincc)2011-01-271-1/+4
| | | | | | | | parcels from the OAR. The region spanning parcel shouldn't exist in this situation. If it does, when the land data is loaded it is repersisted with a local ID which comes after the ones loaded via the oar, which obliterates the oar loaded one. Resaving the data we just loaded from the database is somewhat odd in itself (though this makes sense from the way that OAR loading was already using the same event).
* Fix OAR parcel loading so that old parcels are replaced by the new instead ↵Justin Clark-Casey (justincc)2011-01-271-0/+5
| | | | | | of merged. The --merge switch will still merge the old and new land parcelling.
* Add some comments on ILandObject.StartPoint and EndPointJustin Clark-Casey (justincc)2011-01-261-0/+10
|
* Implement command "land show". This shows all the parcels on the currently ↵Justin Clark-Casey (justincc)2011-01-261-0/+4
| | | | | | selected region/s This is useful for diagnostics. The command is "land show" rather than "show land" because it's implemented as a module specific subcommand.
* Removed unused code -- this was the previous version of UDP texture sending, ↵Diva Canto2010-12-231-58/+0
| | | | which now lives entirely in LindenUDP space.
* Make prim inventories a bit more saneMelanie2010-12-211-7/+0
|
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2010-12-141-1/+1
|\
| * Revamp the viewer -> banlist packet processing so fix a number of bugs.Melanie2010-12-131-1/+1
| | | | | | | | | | | | | | Remove the too coarse CanEditParcel method in favor of a CanEditParcelProperties method that takes a GroupPowers argument to specify what action is to be taken. Also, make the method to set parcel data much more granular. Permissions in a deeded setting should now work.
* | reinstate IAttachmentsModule.UpdateAttachmentPosition() since this is being ↵Justin Clark-Casey (justincc)2010-12-141-6/+9
|/ | | | | | used by a 3rd party region module and contains non-obvious attachment specific code There are no functional changes. UpdateAttachmentPosition() is adapted to the new approach of only saving attachment state on logout
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2010-11-251-0/+39
|\
| * Implement the restart moduleMelanie2010-11-251-1/+1
| |
| * Adding the skeleton for the restart moduleMelanie2010-11-241-0/+39
| |
* | WARNING: LOTS OF CONFIGURATION CHANGES AFFECTING PRIMARILY HG CONFIGS. Added ↵Diva Canto2010-11-251-0/+1
|/ | | | capability to preserve creator information on HG asset transfers. Added a new HGAssetService that is intended to be the one outside the firewall. It processes and filters the assets that go out of the grid. Also fixed the normal AssetService to do special things for the main instance (console commands, etc). Moved HGInventoryService to OpenSim.Services.HypergridService. Changed the way the login service gets the ServiceURL configs.
* Global creator information working on MySQL DB and on load/save OARs. ↵Diva Canto2010-11-211-0/+13
| | | | | | | Creator name properly shown on the viewer as first.last @authority. New option added to save oar -profile=url. Migration on RegionStore making CreatorID be 255 chars. Moved Handling of user UUID -> name requests to a new module UserManagement/UserManagementModule.
* Change the way attachments are persisted. Editing a worn attachment will nowMelanie2010-11-162-6/+16
| | | | | | | save properly, as will the results of a resizer script working. Attachment positions are no longer saved on each move, but instead are saved once on logout. Attachment script states are saved as part of the attachment now when detaching.
* Add lsClearWindlightScene() to the lightshare module to remove WL settingsMelanie2010-11-032-0/+2
| | | | from a region and allow normal day cycles to be reestablished
* Clean up some cruft from the last commit. Re-add the initial updateMaster ScienceSim2010-10-291-0/+39
| | | | | send in the scene presence constructor... need to figure this out later.
* Major refactoring of appearance handling.Master ScienceSim2010-10-201-38/+0
| | | | | | | | | | | | | | | | | | | AvatarService -- add two new methods, GetAppearance and SetAppearance to get around the lossy encoding in AvatarData. Preseve the old functions to avoid changing the behavior for ROBUST services. AvatarAppearance -- major refactor, moved the various encoding methods used by AgentCircuitData, ClientAgentUpdate and ScenePresence into one location. Changed initialization. AvatarAttachments -- added a class specifically to handle attachments in preparation for additional functionality that will be needed for viewer 2. AvatarFactory -- removed a number of unused or methods duplicated in other locations. Moved in all appearance event handling from ScenePresence. Required a change to IClientAPI that propogated throughout all the IClientAPI implementations.
* Made OARs use the new serialization procedure. (TPs/crossings still on the ↵Diva Canto2010-10-152-3/+4
| | | | old one) Added an options argument down the pipeline. For the time being it takes --old-guids as an option to produce <Guid> instead of <UUID>.
* Add and plumb the usetex URL parameter to worldview. Required but not yetMelanie2010-10-061-1/+1
| | | | functional