User:Languard

From Dragon Age Toolset Wiki
Revision as of 23:18, 12 November 2009 by Languard (Talk | contribs) (added Settings Editor and rough draft of a module removal article)

Jump to: navigation, search

While waiting for some official word on using tablets, I decided to share the settings that I am using.

Wacom Settings

Pen:

  • Nib is Click
  • Eraser is Right Click
  • Thumb button (not sure what the official name is) is Middle Click
  • All other pen options are default

Mapping: I use dual monitors, so I have the pad mapped to one monitor only.

Function Keys: I have an Intuos3 tablet, so I have 4 functions keys on the left and right. For the moment I'm ignoring the right-hand side. I'm sure I'll come up with things later. The functions on the left are -

  • Ctrl (default)
  • = (increase brush size)
  • - (decrease brush size)
  • Pan/Scroll (default)

I'm right handed, so I have the tablet to the right and keyboard to the left. I mostly keep my left hand on WASD, and use a combination of that plus the pen plus the thumb button to move around. Much easier than it sounds. When adjusting the brush sizes, I just left the pen out of sensor range and then click on the appropriate function button. So far this has been working well.

Settings Editor

After being directed to the DefaultSettings.xml file, I can see all sorts of possibilities regarding the customization of hotkeys. Currently in the planning stages.

Removing Modules

This is a copy/paste from my blog. I'll get this cleaned up for a Wiki article later.

Deleting a Module from the Toolset Setup: I created a module called Meep with a unique id of rcfMeep, added in one area with a waypoint, configured the starting area/waypoint info, and exported it with dependencies. And now to strip it out.

Step 1: Removing it from the game

   * Navigate to My Documents\Bioware\AddIns
   * Delete the folder called rcfMeep
   * Done

Removing from the game is fairly easy. The toolset? Not so much. The reason for this is that the information is stored in the SQL Database. Now if you just want to remove the module from the Manage Modules list, that is easy.

   * Open Sql Server Management Studio Express.  I'm not sure if the default installtion installs this or not.  If not, it can be downloaded from Microsoft.
   * Connect to the BWDATOOLSET server, assuming that you kept the default options.
   * Expand Databases
   * Expand bw_dragonage_content
   * Expand Tables
   * Right click and select open on the dbo.Modules table
   * This will bring up an excell-like window.  Find your module, right-click on the row, and select delete.  Say ok to the confirmation.
   * Module is now PERMANITLY removed.  Absolutly no way of recovering it.

Now, this isn't a good idea. Why? Becuase depending on the size of the Module, you just orphaned a bunch of resources. Areas, placables, conversations, they all get placed into the database. And once you remove the module ID, you just lost your ability to remove these resources. At this time I would not recomend trying to hand-remove a module, it would be messy. If I can somehow find the time, I'll write a utility to clean out a module from the database.