You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.6 KiB
XML
91 lines
2.6 KiB
XML
<?xml version='1.0' ?>
|
|
|
|
<!--
|
|
============================ Quick Guide =======================================
|
|
File: filters.xml
|
|
Author: Dario Sancho (2014)
|
|
|
|
Important: This file neesd to be placed in the executable's folder.
|
|
|
|
This file allows you to define your own filters and associated accions.
|
|
Feel free to add/remove/modify the contents of this file to suit your needs.
|
|
The initial content is intended to be an example of usage.
|
|
|
|
How does this work?
|
|
|
|
* <Filter Name="Example">
|
|
This attribute is used to specify the filter. In this example, any log that
|
|
contains the word "Example" will be added to this filter's tab.
|
|
|
|
* <Label>My Example</Label>
|
|
This parameter is optional. If included it will be used to label the filter Tab.
|
|
Otherwise, the "Name" attribute in Filter will be used.
|
|
|
|
* <Color>FF0000</Color>
|
|
Optional. Specifies the color of the text in the filter. Format R8G8B8.
|
|
|
|
* <RegExp>\!(\w*)\]</RegExp>
|
|
Optional. Specifies a regular expression to be used as filter. The given example
|
|
would would added to this filter's tab any log that contains something of the
|
|
kind "...!....]", i.e. has an exclamation mark and at certain point later a "]"
|
|
|
|
* <Exec Type="DosCmd">dir c:</Exec>
|
|
Optional. Specifies an action to be taken if a particular filter is activated.
|
|
It can be used for instance to trigger a snapshot or a video when certain log
|
|
message is sent (e.g. a debugging message).
|
|
It can be very useful for debugging and QA.
|
|
There are two types of actions that can be executed:
|
|
+ <Exec Type="Macro">ScreenShot</Exec>
|
|
Executes a Macro (in this case ScreenShot, defined in this file)
|
|
+ <Exec Type="DosCmd">dir c:</Exec>
|
|
Executes a dos command (in this case "dir c:")
|
|
|
|
-->
|
|
|
|
<Filters>
|
|
|
|
<Filter Name="RegExp">
|
|
<Color>#000088</Color>
|
|
<RegExp>\!(\w*)\]</RegExp>
|
|
<!-- Exec Type="DosCmd">dir c:</Exec -->
|
|
</Filter>
|
|
|
|
<Filter Name="ApplicationView">
|
|
<Label>ApplicationViewSource</Label>
|
|
<Color>FF8C00</Color>
|
|
<!-- Exec Type="DosCmd">dir c:</Exec -->
|
|
</Filter>
|
|
|
|
<Filter Name="OnPLMEvent">
|
|
<Label>OnPLMEvent</Label>
|
|
<Color>#000000</Color>
|
|
<!-- Exec Type="Macro">ScreenShot</Exec -->
|
|
</Filter>
|
|
|
|
<!--Filter Name="Loading">
|
|
<Label>Loading</Label>
|
|
<Color>#0022FF</Color>
|
|
</Filter-->
|
|
|
|
<Filter Name="Actor">
|
|
<Label>Actor</Label>
|
|
<Color>#000000</Color>
|
|
</Filter>
|
|
|
|
<Filter Name="[CG]">
|
|
<Label>Color Grading</Label>
|
|
<Color>#000000</Color>
|
|
</Filter>
|
|
|
|
<Filter Name="GFE">
|
|
<Label>GeForce Experience</Label>
|
|
<Color>#000000</Color>
|
|
</Filter>
|
|
|
|
<Filter Name="MipMapped">
|
|
<Label>MipMapped</Label>
|
|
<Color>#000000</Color>
|
|
</Filter>
|
|
|
|
</Filters>
|