aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Objects/Commands (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-10-24Add "dump object uuid" console command. This allows any object in the scene ↵Justin Clark-Casey (justincc)1-0/+53
to be serialized and dumped to XML for debug purposes.
2012-10-24minor: Move co-ordinate related help to object commands to common ↵Justin Clark-Casey (justincc)1-33/+3
ConsoleUtil.CoordHelp
2012-10-19Make "show part" console commands print out information about each item the ↵Justin Clark-Casey (justincc)1-20/+93
part contains
2012-10-18minor: Convert ad-hoc list building in ObjectCommandsModule to use ↵Justin Clark-Casey (justincc)1-21/+24
ConsoleDisplayList
2012-10-18Add local and UUID to information output of "show object" and "show part" ↵Justin Clark-Casey (justincc)1-0/+4
region console commands
2012-10-18Add --full option to "show object name/uuid/pos" to show info on all parts ↵Justin Clark-Casey (justincc)1-20/+60
of an object, not just whole object summary information.
2012-10-18Add number of inventory items to information displayed via "show part" ↵Justin Clark-Casey (justincc)1-0/+1
console command
2012-10-11Assign endVector before control leaves ↵Justin Clark-Casey (justincc)1-0/+2
ObjectCommandsModule.TryParseVectorRange() in order to fix mono 2.4.3 compile failure. This doesn't fail the compile on mono 2.10.8.
2012-10-10Add "delete object pos <start-coord> to <end-coord>" console command.Justin Clark-Casey (justincc)1-24/+85
This allows one to delete objects within a certain volume. See help on console for more details.
2012-10-05Fix bug in implementation of "show part pos" that would not filter probably.Justin Clark-Casey (justincc)1-40/+25
Also refactors more of ObjectCommandsModule to remove duplicate code
2012-10-05Add "show part pos" console command to match "show object pos"Justin Clark-Casey (justincc)1-0/+72
2012-10-05refactor: eliminate some now duplicate code in ObjectCommandsModuleJustin Clark-Casey (justincc)1-34/+25
2012-10-05Add "show object pos <start-coord> to <end-coord>" command to simulator console.Justin Clark-Casey (justincc)1-0/+67
This allows you to display details of all objects in a given bounding box. Values parts of the co-ord can be left out as appropriate (e.g. to get all objects between the ground and z=30. See "help show object pos" for more details.
2012-10-05Print number of objects found with "show object name" and "show part name" ↵Justin Clark-Casey (justincc)1-12/+4
simulator console commands
2012-07-25Rename OpenSim.Framework.Statistics to OpenSim.Framework.Monitoring.Justin Clark-Casey (justincc)1-1/+1
This better reflects the long-term purpose of that project and matches Monitoring modules.
2012-06-26Fix output for help on some object region console commandsJustin Clark-Casey (justincc)1-3/+6
2012-05-15Allow use of regular expressions in "show object name", "show part name" and ↵Justin Clark-Casey (justincc)1-101/+208
"delete object name" console commands if --regex switch is used. Deleteing objects by name, creator uuid or owner uuid now requires confirmation to avoid accidental deletion.
2012-04-28Put scene object related console commands into new "Objects" help category ↵Justin Clark-Casey (justincc)1-9/+13
rather than "Regions"
2012-04-27Add flags information (phantom, physics, etc.) to "show object" and "show ↵Justin Clark-Casey (justincc)1-0/+2
part" console commands
2012-04-18On "show part" command, show link number.Justin Clark-Casey (justincc)1-1/+1
This replaces the Parts count which was rather pointless for a prim (it was either 1 if a child or the number of parts if the root). This information is still avaliable on the "show object" command.
2012-03-08Change "help" to display categories/module list then "help ↵Justin Clark-Casey (justincc)1-9/+9
<category/module>" to display commands in a category. This is to deal with the hundred lines of command splurge when one previously typed "help" Modelled somewhat on the mysql console One can still type help <command> to get per command help at any point. Categories capitalized to avoid conflict with the all-lowercase commands (except for commander system, as of yet). Does not affect command parsing or any other aspects of the console apart from the help system. Backwards compatible with existing modules.
2012-01-31Add "show part uuid" and "show part name" console commands.Justin Clark-Casey (justincc)1-7/+97
These commands will display part/prim details for a given uuid or name The "show object uuid" and "show object name" commands will now only display details for objects (i.e. not child parts in a linkset). This is for consistency with the "delete object" commands which only delete objects, not parts.
2012-01-31Implement "show object name <name>" console command to show details of an ↵Justin Clark-Casey (justincc)1-8/+49
object with the given name
2012-01-31Get rid of the "no objects found" feedback for now - this doesn't work well ↵Justin Clark-Casey (justincc)1-11/+13
if a command is executed over multiple scenes.
2012-01-31Implement "show object uuid <uuid>" console command.Justin Clark-Casey (justincc)1-5/+56
This will show details about a part with the given uuid if it's found.
2012-01-31Add more user feedback if an object isn't found for which delete was requested.Justin Clark-Casey (justincc)1-0/+15
2012-01-31Add the name of a deleted object to the console outputJustin Clark-Casey (justincc)1-1/+1
2012-01-31If a particular region is selected in the console, only try to delete ↵Justin Clark-Casey (justincc)1-16/+21
objects in that region, rather than in every region on the simulator The old wrong behaviour was in place before the command was extracted to a module.
2012-01-31Move object delete commands into a commands region module, in preparation ↵Justin Clark-Casey (justincc)1-0/+206
for adding similar show commands.