2021-04-09 22:33:19 +00:00
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
< html >
< head >
< meta http-equiv = "Content-Type" content = "text/html;charset=utf-8" >
< meta name = "robots" content = "index,nofollow" >
< title > ArtReference Q4Shaders Tables - Quake 4 SDK Documentation< / title >
2021-04-10 13:18:07 +00:00
< script type = "text/javascript" src = "wiki/common/js/common.js" > < / script >
2021-04-09 22:33:19 +00:00
< script type = "text/javascript" >
<!-- // common functions
// We keep here the state of the search box
searchIsDisabled = false;
function searchChange(e) {
// Update search buttons status according to search box content.
// Ignore empty or whitespace search term.
var value = e.value.replace(/\s+/, '');
if (value == '' || searchIsDisabled) {
searchSetDisabled(true);
} else {
searchSetDisabled(false);
}
}
function searchSetDisabled(flag) {
// Enable or disable search
document.getElementById('fullsearch').disabled = flag;
document.getElementById('titlesearch').disabled = flag;
}
function searchFocus(e) {
// Update search input content on focus
if (e.value == 'Search') {
e.value = '';
e.className = '';
searchIsDisabled = false;
}
}
function searchBlur(e) {
// Update search input content on blur
if (e.value == '') {
e.value = 'Search';
e.className = 'disabled';
searchIsDisabled = true;
}
}
function actionsMenuInit(title) {
// Initialize action menu
for (i = 0; i < document.forms.length ; i + + ) {
var form = document.forms[i];
if (form.className == 'actionsmenu') {
// Check if this form needs update
var div = form.getElementsByTagName('div')[0];
var label = div.getElementsByTagName('label')[0];
if (label) {
// This is the first time: remove label and do buton.
div.removeChild(label);
var dobutton = div.getElementsByTagName('input')[0];
div.removeChild(dobutton);
// and add menu title
var select = div.getElementsByTagName('select')[0];
var item = document.createElement('option');
item.appendChild(document.createTextNode(title));
item.value = 'show';
select.insertBefore(item, select.options[0]);
select.selectedIndex = 0;
}
}
}
}
//-->
< / script >
2021-04-10 13:18:07 +00:00
< link rel = "stylesheet" type = "text/css" charset = "utf-8" media = "all" href = "wiki/modern/css/common.css" >
< link rel = "stylesheet" type = "text/css" charset = "utf-8" media = "screen" href = "wiki/modern/css/screen.css" >
< link rel = "stylesheet" type = "text/css" charset = "utf-8" media = "print" href = "wiki/modern/css/print.css" >
< link rel = "stylesheet" type = "text/css" charset = "utf-8" media = "projection" href = "wiki/modern/css/projection.css" >
2021-04-09 22:33:19 +00:00
<!-- css only for MSIE browsers -->
<!-- [if IE]>
2021-04-10 13:18:07 +00:00
< link rel = "stylesheet" type = "text/css" charset = "utf-8" media = "all" href = "wiki/modern/css/msie.css" >
2021-04-09 22:33:19 +00:00
<![endif]-->
2021-04-10 14:00:23 +00:00
< link rel = "Start" href = "./Quake4SDK.html" >
2021-04-10 13:40:18 +00:00
< link rel = "Alternate" title = "Wiki Markup" href = "./ArtReference_Q4Shaders_Tables?action=raw" >
< link rel = "Alternate" media = "print" title = "Print View" href = "./ArtReference_Q4Shaders_Tables?action=print" >
2021-04-10 14:00:23 +00:00
< link rel = "Search" href = "./FindPage.html" >
< link rel = "Index" href = "./TitleIndex.html" >
< link rel = "Glossary" href = "./WordIndex.html" >
< link rel = "Help" href = "./HelpOnFormatting.html" >
2021-04-09 22:33:19 +00:00
< / head >
< body lang = "en" dir = "ltr" >
< div id = "header" >
2021-04-10 14:00:23 +00:00
< div id = "logo" > < a href = "./Quake4SDK.html" > < img src = "wiki/common/moinmoin.png" alt = "MoinMoin Logo" > < / a > < / div >
2021-04-09 22:33:19 +00:00
< form id = "searchform" method = "get" action = "" >
< div >
< input type = "hidden" name = "action" value = "fullsearch" >
< input type = "hidden" name = "context" value = "180" >
< label for = "searchinput" > Search:< / label >
< input id = "searchinput" type = "text" name = "value" value = "" size = "20"
onfocus="searchFocus(this)" onblur="searchBlur(this)"
onkeyup="searchChange(this)" onchange="searchChange(this)" alt="Search">
< input id = "titlesearch" name = "titlesearch" type = "submit"
value="Titles" alt="Search Titles">
< input id = "fullsearch" name = "fullsearch" type = "submit"
value="Text" alt="Search Full Text">
< / div >
< / form >
< script type = "text/javascript" >
<!-- // Initialize search form
var f = document.getElementById('searchform');
f.getElementsByTagName('label')[0].style.display = 'none';
var e = document.getElementById('searchinput');
searchChange(e);
searchBlur(e);
//-->
< / script >
2021-04-10 13:40:18 +00:00
< ul id = "username" > < li > < a href = "./ArtReference_Q4Shaders_Tables?action=login" id = "login" > Login< / a > < / li > < / ul >
2021-04-09 22:33:19 +00:00
< div id = "locationline" >
< ul id = "pagelocation" >
2021-04-10 13:40:18 +00:00
< li > < a class = "backlink" title = "Click to do a full-text search for this title" href = "./ArtReference_Q4Shaders_Tables?action=fullsearch&value=linkto%3A%22ArtReference+Q4Shaders+Tables%22&context=180" > ArtReference Q4Shaders Tables< / a > < / li >
2021-04-09 22:33:19 +00:00
< / ul >
< / div >
< ul id = "navibar" >
2021-04-10 14:00:23 +00:00
< li class = "wikilink" > < a href = "./GettingStarted.html" > GettingStarted< / a > < / li > < li class = "wikilink" > < a href = "./ScriptFile.html" > ScriptFile< / a > < / li > < li class = "wikilink" > < a href = "./MakeAMod.html" > MakeAMod< / a > < / li > < li class = "wikilink" > < a href = "./LevelEditor.html" > LevelEditor< / a > < / li > < li class = "wikilink" > < a href = "./FXEditor.html" > FXEditor< / a > < / li > < li class = "wikilink" > < a href = "./GUIEditor.html" > GUIEditor< / a > < / li > < li class = "wikilink" > < a href = "./Sounds.html" > Sounds< / a > < / li > < li class = "wikilink" > < a href = "./Animations.html" > Animations< / a > < / li > < li class = "wikilink" > < a href = "./ArtReference.html" > ArtReference< / a > < / li > < li class = "wikilink" > < a href = "./DownloadableContent.html" > DownloadableContent< / a > < / li > < li class = "wikilink" > < a href = "./RecentChanges.html" > RecentChanges< / a > < / li > < li class = "wikilink" > < a href = "./FindPage.html" > FindPage< / a > < / li > < li class = "wikilink" > < a href = "./HelpContents.html" > HelpContents< / a > < / li > < li class = "current" > < a href = "./ArtReference_Q4Shaders_Tables.html" > ArtReferenc...ders Tables< / a > < / li >
2021-04-09 22:33:19 +00:00
< / ul >
< div id = "pageline" > < hr style = "display:none;" > < / div >
2021-04-10 13:40:18 +00:00
< ul class = "editbar" > < li > < span class = "disabled" > Immutable Page< / span > < / li > < li > < a href = "./ArtReference_Q4Shaders_Tables?action=info" > Info< / a > < / li > < li > < a href = "./ArtReference_Q4Shaders_Tables?action=AttachFile" > Attachments< / a > < / li > < li >
2021-04-09 22:33:19 +00:00
< form class = "actionsmenu" method = "get" action = "" >
< div >
< label > More Actions:< / label >
< select name = "action"
onchange="if ((this.selectedIndex != 0) & &
(this.options[this.selectedIndex].disabled == false)) {
this.form.submit();
}
this.selectedIndex = 0;">
< option value = "raw" > Raw Text< / option >
< option value = "print" > Print View< / option >
< option value = "RenderAsDocbook" > Render as Docbook< / option >
< option value = "refresh" > Delete Cache< / option >
< option value = "show" disabled class = "disabled" > ------------< / option >
< option value = "SpellCheck" > Check Spelling< / option >
< option value = "LikePages" > Like Pages< / option >
< option value = "LocalSiteMap" > Local Site Map< / option >
< option value = "show" disabled class = "disabled" > ------------< / option >
< option value = "RenamePage" disabled class = "disabled" > Rename Page< / option >
< option value = "DeletePage" disabled class = "disabled" > Delete Page< / option >
< option value = "show" disabled class = "disabled" > ------------< / option >
< option value = "MyPages" > My Pages< / option >
< option value = "SubscribeUser" > Subscribe User< / option >
< option value = "show" disabled class = "disabled" > ------------< / option >
< option value = "Despam" > Remove Spam< / option >
< option value = "PackagePages" > Package Pages< / option >
< / select >
< input type = "submit" value = "Do" >
< / div >
< script type = "text/javascript" >
<!-- // Init menu
actionsMenuInit('More Actions:');
//-->
< / script >
< / form >
< / li > < / ul >
< / div >
< div id = "page" lang = "en" dir = "ltr" >
< div dir = "ltr" id = "content" lang = "en" > < span class = "anchor" id = "top" > < / span >
2021-04-10 14:00:23 +00:00
< span class = "anchor" id = "line-1" > < / span > < p class = "line862" > Tables are a way to add variables into a modulation over time. There are 5 types of tables. Table, Snaptable, < a class = "nonexistent" href = "./ClampTable.html" > ClampTable< / a > , < a class = "nonexistent" href = "./SnapClampTable.html" > SnapClampTable< / a > , < a class = "nonexistent" href = "./SoundTable.html" > SoundTable< / a > . When using tables you’ ll need 2 parts, the table and the table referenced in the shader. Use the tables.mtr when writing them. < span class = "anchor" id = "line-2" > < / span > < span class = "anchor" id = "line-3" > < / span > < p class = "line867" > < strong > Table< / strong > : This is a string of numbers that can be referenced as a smooth modulation. If you use a table it will continue to loop. < span class = "anchor" id = "line-4" > < / span > < span class = "anchor" id = "line-5" > < / span > < pre > Example: table decalFade { clamp { 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 } }
2021-04-09 22:33:19 +00:00
< span class = "anchor" id = "line-6" > < / span > < / pre > < span class = "anchor" id = "line-7" > < / span > < p class = "line867" > < strong > Snaptable< / strong > : This is a string of numbers that can be referenced as a non-smooth modulation. Example: < span class = "anchor" id = "line-8" > < / span > < span class = "anchor" id = "line-9" > < / span > < pre > table table32
< span class = "anchor" id = "line-10" > < / span > {
< span class = "anchor" id = "line-11" > < / span > snap
< span class = "anchor" id = "line-12" > < / span > {
< span class = "anchor" id = "line-13" > < / span > 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
< span class = "anchor" id = "line-14" > < / span > 16, 17, 18, 19, 20, 21, 22, 23 ,24, 25, 26, 27, 28, 29, 30, 31
< span class = "anchor" id = "line-15" > < / span > }
< span class = "anchor" id = "line-16" > < / span > }
< span class = "anchor" id = "line-17" > < / span > < / pre > < span class = "anchor" id = "line-18" > < / span > < span class = "anchor" id = "line-19" > < / span > < p class = "line867" > < strong > Clamptable< / strong > : are like tables, except they only go through their numeric string once, and remain at the last number. < span class = "anchor" id = "line-20" > < / span > < span class = "anchor" id = "line-21" > < / span > < pre > Example: table brassScale { clamp { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } }
2021-04-10 14:00:23 +00:00
< span class = "anchor" id = "line-22" > < / span > < / pre > < span class = "anchor" id = "line-23" > < / span > < span class = "anchor" id = "line-24" > < / span > < p class = "line867" > < strong > < a class = "nonexistent" href = "./SnapClampTables.html" > SnapClampTables< / a > < / strong > : are like < a class = "nonexistent" href = "./ClampTables.html" > ClampTables< / a > , except they are non-smooth modulation. < span class = "anchor" id = "line-25" > < / span > < span class = "anchor" id = "line-26" > < / span > < pre > Example: table RouterOnOff { SnapClamp { 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0 } }
2021-04-09 22:33:19 +00:00
< span class = "anchor" id = "line-27" > < / span > < / pre > < span class = "anchor" id = "line-28" > < / span > < span class = "anchor" id = "line-29" > < / span > < p class = "line874" > An example of a table being used in a shader, this material modulates the Red, Green and Blue values of the texture by the specified table. The table is stepped through once every second (time * .5) < span class = "anchor" id = "line-30" > < / span > < span class = "anchor" id = "line-31" > < / span > < pre > textures/terminal/t3_htrim_01glow
< span class = "anchor" id = "line-32" > < / span > {
< span class = "anchor" id = "line-33" > < / span > qer_editorimage textures/terminal/t3_htrim_01c_glowed.tga
< span class = "anchor" id = "line-34" > < / span > bumpmap addnormals ( textures/terminal/t3_htrim_01c_local.tga, heightmap ( textures/terminal/t3_htrim_01_h.tga, 1 ) )
< span class = "anchor" id = "line-35" > < / span > specularmap textures/terminal/t3_htrim_01c_s.tga
< span class = "anchor" id = "line-36" > < / span > diffusemap textures/terminal/t3_htrim_01c_d.tga
< span class = "anchor" id = "line-37" > < / span >
< span class = "anchor" id = "line-38" > < / span > {
< span class = "anchor" id = "line-39" > < / span > glow pass
< span class = "anchor" id = "line-40" > < / span > blend add
< span class = "anchor" id = "line-41" > < / span > map textures/terminal/t3_htrim_01c_g.tga
< span class = "anchor" id = "line-42" > < / span > rgb terminalflicktable [time * .5]
< span class = "anchor" id = "line-43" > < / span > }
< span class = "anchor" id = "line-44" > < / span >
< span class = "anchor" id = "line-45" > < / span > }
2021-04-10 14:00:23 +00:00
< span class = "anchor" id = "line-46" > < / span > < / pre > < span class = "anchor" id = "line-47" > < / span > < span class = "anchor" id = "bottom" > < / span > < / div > < p id = "pageinfo" class = "info" lang = "en" dir = "ltr" > ArtReference Q4Shaders Tables (last edited 2005-11-04 21:47:58 by < span title = "MattVainio @ 67.129.250.254[67.129.250.254]" > < a class = "nonexistent" href = "./MattVainio.html" title = "MattVainio @ 67.129.250.254[67.129.250.254]" > MattVainio< / a > < / span > )< / p >
2021-04-09 22:33:19 +00:00
< div id = "pagebottom" > < / div >
< / div >
< div id = "footer" >
2021-04-10 13:40:18 +00:00
< ul class = "editbar" > < li > < span class = "disabled" > Immutable Page< / span > < / li > < li > < a href = "./ArtReference_Q4Shaders_Tables?action=info" > Info< / a > < / li > < li > < a href = "./ArtReference_Q4Shaders_Tables?action=AttachFile" > Attachments< / a > < / li > < li >
2021-04-09 22:33:19 +00:00
< form class = "actionsmenu" method = "get" action = "" >
< div >
< label > More Actions:< / label >
< select name = "action"
onchange="if ((this.selectedIndex != 0) & &
(this.options[this.selectedIndex].disabled == false)) {
this.form.submit();
}
this.selectedIndex = 0;">
< option value = "raw" > Raw Text< / option >
< option value = "print" > Print View< / option >
< option value = "RenderAsDocbook" > Render as Docbook< / option >
< option value = "refresh" > Delete Cache< / option >
< option value = "show" disabled class = "disabled" > ------------< / option >
< option value = "SpellCheck" > Check Spelling< / option >
< option value = "LikePages" > Like Pages< / option >
< option value = "LocalSiteMap" > Local Site Map< / option >
< option value = "show" disabled class = "disabled" > ------------< / option >
< option value = "RenamePage" disabled class = "disabled" > Rename Page< / option >
< option value = "DeletePage" disabled class = "disabled" > Delete Page< / option >
< option value = "show" disabled class = "disabled" > ------------< / option >
< option value = "MyPages" > My Pages< / option >
< option value = "SubscribeUser" > Subscribe User< / option >
< option value = "show" disabled class = "disabled" > ------------< / option >
< option value = "Despam" > Remove Spam< / option >
< option value = "PackagePages" > Package Pages< / option >
< / select >
< input type = "submit" value = "Do" >
< / div >
< script type = "text/javascript" >
<!-- // Init menu
actionsMenuInit('More Actions:');
//-->
< / script >
< / form >
< / li > < / ul >
< ul id = "credits" >
< li > < a href = "http://moinmoin.wikiwikiweb.de/" > MoinMoin Powered< / a > < / li > < li > < a href = "http://www.python.org/" > Python Powered< / a > < / li > < li > < a href = "http://validator.w3.org/check?uri=referer" > Valid HTML 4.01< / a > < / li >
< / ul >
< / div >
< / body >
< / html >