<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Introducing Process Intensity</title>
	<atom:link href="http://grandtextauto.org/2007/01/11/introducing-process-intensity/feed/" rel="self" type="application/rss+xml" />
	<link>http://grandtextauto.org/2007/01/11/introducing-process-intensity/</link>
	<description>A group blog about computer narrative, games, poetry, and art.</description>
	<lastBuildDate>Thu, 30 Sep 2010 22:43:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>By: Grand Text Auto &#187; Media Machines</title>
		<link>http://grandtextauto.org/2007/01/11/introducing-process-intensity/comment-page-1/#comment-106558</link>
		<dc:creator>Grand Text Auto &#187; Media Machines</dc:creator>
		<pubDate>Tue, 30 Jan 2007 19:14:14 +0000</pubDate>
		<guid isPermaLink="false">http://grandtextauto.org/?p=1410#comment-106558</guid>
		<description>[...] -process manuscript &#8212; currently titled Expressive Processing &#8212; on the topic of process intensity. Interesting discussion ensued, I decided to post fur [...]</description>
		<content:encoded><![CDATA[<p>[...] -process manuscript &#8212; currently titled Expressive Processing &#8212; on the topic of process intensity. Interesting discussion ensued, I decided to post fur [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: noah</title>
		<link>http://grandtextauto.org/2007/01/11/introducing-process-intensity/comment-page-1/#comment-105985</link>
		<dc:creator>noah</dc:creator>
		<pubDate>Sun, 14 Jan 2007 16:44:37 +0000</pubDate>
		<guid isPermaLink="false">http://grandtextauto.org/?p=1410#comment-105985</guid>
		<description>Jimmy, good point. The general idea of process and data having a certain interchangeability does need to be acknowledged. Crawford&#039;s essay provides his take on it:

&lt;i&gt;Experienced programmers know that data can often be substituted for process. Many algorithms can be replaced by tables of data. This is a common trick for expending RAM to speed up processing. Because of this, many programmers see process and data as interchangeable. This misconception arises from applying low-level considerations to the higher levels of software design. Sure, you can cook up a table of sine values with little trouble -- but can you imagine a table specifying every possible behavioral result in a complex game such as Balance of Power?&lt;/i&gt;

Of course, what you&#039;re talking about is really more like procedural content, rather than saving a table of numbers as a shortcut for calculations. Personally, I think of procedural content as a good example of process intensity. Costikyan makes a similar point, in discussing &lt;i&gt;Spore,&lt;/i&gt; in his post on the subject.

But this doesn&#039;t entirely put the matter to rest. For example, we might ask the same question about a system that uses n-grams. The raw data could be analyzed for its n-grams each time that the information is needed, or each time that the system starts up, or by a different system beforehand (and then stored as data). This could result in very different levels of &quot;process intensity&quot; for the system, but in each case the system would be operating based on the results of running the same n-gram process on the same body of data. We&#039;re really just talking about programming efficiency here, and it doesn&#039;t seem to me that the different system designs really have different behavioral process intensity.

As you can probably tell, I think it might be interesting to write an essay some time about these sorts of &quot;edge cases&quot; for process intensity. But my hope is that, for this book, just laying out the broad outlines of the idea will suffice.</description>
		<content:encoded><![CDATA[<p>Jimmy, good point. The general idea of process and data having a certain interchangeability does need to be acknowledged. Crawford&#8217;s essay provides his take on it:</p>
<p><i>Experienced programmers know that data can often be substituted for process. Many algorithms can be replaced by tables of data. This is a common trick for expending RAM to speed up processing. Because of this, many programmers see process and data as interchangeable. This misconception arises from applying low-level considerations to the higher levels of software design. Sure, you can cook up a table of sine values with little trouble &#8212; but can you imagine a table specifying every possible behavioral result in a complex game such as Balance of Power?</i></p>
<p>Of course, what you&#8217;re talking about is really more like procedural content, rather than saving a table of numbers as a shortcut for calculations. Personally, I think of procedural content as a good example of process intensity. Costikyan makes a similar point, in discussing <i>Spore,</i> in his post on the subject.</p>
<p>But this doesn&#8217;t entirely put the matter to rest. For example, we might ask the same question about a system that uses n-grams. The raw data could be analyzed for its n-grams each time that the information is needed, or each time that the system starts up, or by a different system beforehand (and then stored as data). This could result in very different levels of &#8220;process intensity&#8221; for the system, but in each case the system would be operating based on the results of running the same n-gram process on the same body of data. We&#8217;re really just talking about programming efficiency here, and it doesn&#8217;t seem to me that the different system designs really have different behavioral process intensity.</p>
<p>As you can probably tell, I think it might be interesting to write an essay some time about these sorts of &#8220;edge cases&#8221; for process intensity. But my hope is that, for this book, just laying out the broad outlines of the idea will suffice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jimmy Maher</title>
		<link>http://grandtextauto.org/2007/01/11/introducing-process-intensity/comment-page-1/#comment-105915</link>
		<dc:creator>Jimmy Maher</dc:creator>
		<pubDate>Sat, 13 Jan 2007 15:04:18 +0000</pubDate>
		<guid isPermaLink="false">http://grandtextauto.org/?p=1410#comment-105915</guid>
		<description>Just to prove everything is not back or white: 

If we go back a bit, we can actually find examples of process being used to generate content.  I am thinking of the original Elite in particular.  It had a universe of several thousand planets for the player to explore, but said universe was not stored as static assets.  It was rather generated on the fly through mathematical algorithms  that were always seeded with the same constants, thus leading to the same environment always being calculated, transparently to the player.  This was the only method that could allow such a huge field of exploration in a game that ran in 32K of RAM.

Crazy stuff those 8-bit pioneers got up to...</description>
		<content:encoded><![CDATA[<p>Just to prove everything is not back or white: </p>
<p>If we go back a bit, we can actually find examples of process being used to generate content.  I am thinking of the original Elite in particular.  It had a universe of several thousand planets for the player to explore, but said universe was not stored as static assets.  It was rather generated on the fly through mathematical algorithms  that were always seeded with the same constants, thus leading to the same environment always being calculated, transparently to the player.  This was the only method that could allow such a huge field of exploration in a game that ran in 32K of RAM.</p>
<p>Crazy stuff those 8-bit pioneers got up to&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: noah</title>
		<link>http://grandtextauto.org/2007/01/11/introducing-process-intensity/comment-page-1/#comment-105914</link>
		<dc:creator>noah</dc:creator>
		<pubDate>Sat, 13 Jan 2007 14:32:08 +0000</pubDate>
		<guid isPermaLink="false">http://grandtextauto.org/?p=1410#comment-105914</guid>
		<description>Matt, thanks! I&#039;m looking forward to the release of &lt;i&gt;Mechanisms.&lt;/i&gt;

Gilbert, I agree entirely. It doesn&#039;t make sense to think that we can judge the value of a work based on its process intensity. &lt;i&gt;Resident Evil&lt;/i&gt; is a nice graphics-centric example. Also, an e-book fiction, email narrative, or blog novel with strong text would have very low process intensity -- but it could make for a great, innovative audience experience (just like we can still have with print books). In fact, this is probably easier than making a successful audience experience via high process intensity. We&#039;re just starting to learn how to author media processes, whereas we have millennia of experience authoring media data. But authoring media processes is also, from my perspective, the great promise of digital media. So that&#039;s why it&#039;s the focus of the book.

As for separating graphics processing from behavior processing, you&#039;re right that they&#039;re not totally separable and that graphics processing is not by definition superfluous. I don&#039;t mean to say graphics processing is bad -- only that my book is more about things like rules for character behavior than things like ray tracing (or complex database operations, or...).

All that said, don&#039;t worry about bringing up difficult questions at this point in the writing. If I&#039;m leading people astray conceptually it&#039;s definitely better to know now than later.</description>
		<content:encoded><![CDATA[<p>Matt, thanks! I&#8217;m looking forward to the release of <i>Mechanisms.</i></p>
<p>Gilbert, I agree entirely. It doesn&#8217;t make sense to think that we can judge the value of a work based on its process intensity. <i>Resident Evil</i> is a nice graphics-centric example. Also, an e-book fiction, email narrative, or blog novel with strong text would have very low process intensity &#8212; but it could make for a great, innovative audience experience (just like we can still have with print books). In fact, this is probably easier than making a successful audience experience via high process intensity. We&#8217;re just starting to learn how to author media processes, whereas we have millennia of experience authoring media data. But authoring media processes is also, from my perspective, the great promise of digital media. So that&#8217;s why it&#8217;s the focus of the book.</p>
<p>As for separating graphics processing from behavior processing, you&#8217;re right that they&#8217;re not totally separable and that graphics processing is not by definition superfluous. I don&#8217;t mean to say graphics processing is bad &#8212; only that my book is more about things like rules for character behavior than things like ray tracing (or complex database operations, or&#8230;).</p>
<p>All that said, don&#8217;t worry about bringing up difficult questions at this point in the writing. If I&#8217;m leading people astray conceptually it&#8217;s definitely better to know now than later.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gilbert Bernstein</title>
		<link>http://grandtextauto.org/2007/01/11/introducing-process-intensity/comment-page-1/#comment-105900</link>
		<dc:creator>Gilbert Bernstein</dc:creator>
		<pubDate>Sat, 13 Jan 2007 10:25:35 +0000</pubDate>
		<guid isPermaLink="false">http://grandtextauto.org/?p=1410#comment-105900</guid>
		<description>This seems very readable from the perspective of a gamer, especially since the &quot;graphics aren&#039;t everything&quot; issue comes up even if you&#039;ve done only the most casual reading of gaming journalism.  I can&#039;t really say anything about non-gamers, though I bet they&#039;d have some really useful comments.

This seems like more of a crystalized idea and explanation of process intensity than when I posted on here before about it.  I&#039;m really excited to see your explanation the data/process distinction, since this seemed the weakest point of the process intensity idea before.

I largely agree with graphics bashing, because truly insignificant graphics are often over-emphasized.  However, I&#039;m not so hot on creating a divide between graphics processing and behavioral processing.  I think it&#039;s really useful to try to cull out superfluous processing, but I don&#039;t think graphics = superfluous.  As examples, both low-data high-process graphics and vice-versa have been essential to the experience of playing some games.  In particular I&#039;d think of Mario 64 as an example of a high-process low-data game, (although low-data is debatable, in comparison to many 3d games now it&#039;s arguably low-data) and Resident Evil as an example of a low-process high-data one.  As I see it, Mario 64 was huge in that it introduced conventions and vocabulary for 3d platformers, subsequently providing a base for many other 3d game vocabularies and new forms of game interaction.  Resident Evil, however was successful for creating the experience of horror in players, to which the graphics choice of fixed perspective and detailed static renderings (data or pre-process?) contributed enourmously.  That you couldn&#039;t always see where the zombies were coming from and that the environments are detailed enough to convey the atmosphere considerably aided the horror aim.  If Resident Evil should be considered a low process intensity game, then it could be an example of where low process intensity dictated conditions that (perhaps inadvertently) furthered the game&#039;s aims.  In both cases the graphics might be such that they fall under categories that are considered superfluous and ornamental, but I don&#039;t think that would be accurate for the graphics in these games.

Anyways, It looks really good.  I hope bringing up contentions isn&#039;t too distracting at this point in your writing process.

Looking forward to more.</description>
		<content:encoded><![CDATA[<p>This seems very readable from the perspective of a gamer, especially since the &#8220;graphics aren&#8217;t everything&#8221; issue comes up even if you&#8217;ve done only the most casual reading of gaming journalism.  I can&#8217;t really say anything about non-gamers, though I bet they&#8217;d have some really useful comments.</p>
<p>This seems like more of a crystalized idea and explanation of process intensity than when I posted on here before about it.  I&#8217;m really excited to see your explanation the data/process distinction, since this seemed the weakest point of the process intensity idea before.</p>
<p>I largely agree with graphics bashing, because truly insignificant graphics are often over-emphasized.  However, I&#8217;m not so hot on creating a divide between graphics processing and behavioral processing.  I think it&#8217;s really useful to try to cull out superfluous processing, but I don&#8217;t think graphics = superfluous.  As examples, both low-data high-process graphics and vice-versa have been essential to the experience of playing some games.  In particular I&#8217;d think of Mario 64 as an example of a high-process low-data game, (although low-data is debatable, in comparison to many 3d games now it&#8217;s arguably low-data) and Resident Evil as an example of a low-process high-data one.  As I see it, Mario 64 was huge in that it introduced conventions and vocabulary for 3d platformers, subsequently providing a base for many other 3d game vocabularies and new forms of game interaction.  Resident Evil, however was successful for creating the experience of horror in players, to which the graphics choice of fixed perspective and detailed static renderings (data or pre-process?) contributed enourmously.  That you couldn&#8217;t always see where the zombies were coming from and that the environments are detailed enough to convey the atmosphere considerably aided the horror aim.  If Resident Evil should be considered a low process intensity game, then it could be an example of where low process intensity dictated conditions that (perhaps inadvertently) furthered the game&#8217;s aims.  In both cases the graphics might be such that they fall under categories that are considered superfluous and ornamental, but I don&#8217;t think that would be accurate for the graphics in these games.</p>
<p>Anyways, It looks really good.  I hope bringing up contentions isn&#8217;t too distracting at this point in your writing process.</p>
<p>Looking forward to more.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Kirschenbaum</title>
		<link>http://grandtextauto.org/2007/01/11/introducing-process-intensity/comment-page-1/#comment-105846</link>
		<dc:creator>Matt Kirschenbaum</dc:creator>
		<pubDate>Fri, 12 Jan 2007 15:27:19 +0000</pubDate>
		<guid isPermaLink="false">http://grandtextauto.org/?p=1410#comment-105846</guid>
		<description>In Mechanisms I gloss a &quot;mechanism&quot; as both a product and a process, but as you know my emphasis in the book is more on the product: new media as historically locatable artifacts. Makes me wish I could insert one big, fat hyperlink to your manuscript under &quot;process.&quot;</description>
		<content:encoded><![CDATA[<p>In Mechanisms I gloss a &#8220;mechanism&#8221; as both a product and a process, but as you know my emphasis in the book is more on the product: new media as historically locatable artifacts. Makes me wish I could insert one big, fat hyperlink to your manuscript under &#8220;process.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: noah</title>
		<link>http://grandtextauto.org/2007/01/11/introducing-process-intensity/comment-page-1/#comment-105841</link>
		<dc:creator>noah</dc:creator>
		<pubDate>Fri, 12 Jan 2007 12:52:40 +0000</pubDate>
		<guid isPermaLink="false">http://grandtextauto.org/?p=1410#comment-105841</guid>
		<description>I&#039;m glad people found this excerpt interesting, and I&#039;ll definitely post more.

Aaron, I agree that graphics are much more marketing-friendly than processes. We can evaluate graphical improvements by looking at a magazine or television ad -- we don&#039;t need a copy of the game -- whereas any touted process improvement is likely to be treated with some skepticism (or even confusion as to its potential impact) until players experience it themselves.

Luke, I think you&#039;re right that the spinning recipe cards may be the wrong example. I&#039;m meaning to point out that processes can be used for a variety of things, from AI behavior to real-time lighting effects. But being able to freely spin the recipe cards is actually a new type of behavior. So I&#039;ll rework that passage. Also, I agree it might be good to include an illustration that shows how far people are willing to turn down their graphics in return for increased system responsiveness.

Matt, you&#039;re of course correct that graphics can be complex and interesting. So can text. But I think the thing I&#039;ve failed to make clear here is that this book is about &lt;i&gt;processing.&lt;/i&gt; From this viewpoint, graphics and text can be interesting output from processes, and they can be the (structured or unstructured) data on which processes operate, but they&#039;re not central to the discussion. Still, you&#039;re probably right that I will want to make it clear, somewhere in the discussion, that I have a somewhat more nuanced view of data than &quot;that pile of stuff over there.&quot;

Overall, my sense from the discussion so far is that the best excerpt to present next might be the one that precedes this -- where I introduce my focus on processes and establish my version of the process/data vocabulary. I&#039;ll plan to post that in the near future.</description>
		<content:encoded><![CDATA[<p>I&#8217;m glad people found this excerpt interesting, and I&#8217;ll definitely post more.</p>
<p>Aaron, I agree that graphics are much more marketing-friendly than processes. We can evaluate graphical improvements by looking at a magazine or television ad &#8212; we don&#8217;t need a copy of the game &#8212; whereas any touted process improvement is likely to be treated with some skepticism (or even confusion as to its potential impact) until players experience it themselves.</p>
<p>Luke, I think you&#8217;re right that the spinning recipe cards may be the wrong example. I&#8217;m meaning to point out that processes can be used for a variety of things, from AI behavior to real-time lighting effects. But being able to freely spin the recipe cards is actually a new type of behavior. So I&#8217;ll rework that passage. Also, I agree it might be good to include an illustration that shows how far people are willing to turn down their graphics in return for increased system responsiveness.</p>
<p>Matt, you&#8217;re of course correct that graphics can be complex and interesting. So can text. But I think the thing I&#8217;ve failed to make clear here is that this book is about <i>processing.</i> From this viewpoint, graphics and text can be interesting output from processes, and they can be the (structured or unstructured) data on which processes operate, but they&#8217;re not central to the discussion. Still, you&#8217;re probably right that I will want to make it clear, somewhere in the discussion, that I have a somewhat more nuanced view of data than &#8220;that pile of stuff over there.&#8221;</p>
<p>Overall, my sense from the discussion so far is that the best excerpt to present next might be the one that precedes this &#8212; where I introduce my focus on processes and establish my version of the process/data vocabulary. I&#8217;ll plan to post that in the near future.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Kirschenbaum</title>
		<link>http://grandtextauto.org/2007/01/11/introducing-process-intensity/comment-page-1/#comment-105835</link>
		<dc:creator>Matt Kirschenbaum</dc:creator>
		<pubDate>Fri, 12 Jan 2007 05:07:48 +0000</pubDate>
		<guid isPermaLink="false">http://grandtextauto.org/?p=1410#comment-105835</guid>
		<description>Noah, 

This is good stuff and I (for one) want to see more! My quick take--from this brief excerpt--is that it would be useful to balance the introduction of process intensity by also giving graphics their due, via some of the more successful theoretical accounts of images in various strains of visual studies. I&#039;m thinking here of Johanna Drucker&#039;s work, for example. I totally get what you&#039;re after here, but graphics can&#039;t just be a foil for behavior.</description>
		<content:encoded><![CDATA[<p>Noah, </p>
<p>This is good stuff and I (for one) want to see more! My quick take&#8211;from this brief excerpt&#8211;is that it would be useful to balance the introduction of process intensity by also giving graphics their due, via some of the more successful theoretical accounts of images in various strains of visual studies. I&#8217;m thinking here of Johanna Drucker&#8217;s work, for example. I totally get what you&#8217;re after here, but graphics can&#8217;t just be a foil for behavior.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke Munn</title>
		<link>http://grandtextauto.org/2007/01/11/introducing-process-intensity/comment-page-1/#comment-105825</link>
		<dc:creator>Luke Munn</dc:creator>
		<pubDate>Thu, 11 Jan 2007 20:36:31 +0000</pubDate>
		<guid isPermaLink="false">http://grandtextauto.org/?p=1410#comment-105825</guid>
		<description>Couple quick questions that might help you condense and clarify things. At the beginning of your article, you make a clear distinction between the two &#039;intensities&#039;. Process seems to equate to gameplay, interactivity, significant choices made by the player. Data equals art and graphics, decoration, interface. Your sentence about 3d spinning recipe card confused me. Surely this is more &#039;refined&#039; data, rather than an increase in process intensity?

Secondly, you might want to detail a little more about the lo-res graphic option that hardcore gamers use. Some readers might not be familiar with the extremely low level of detail that counterstrike, unreal, etc players are willing to live with for that extra framerate that gives them an edge ingame. 

The original GTA was designed by developers that deliberately chose dated, top down 2d graphics over the awkward 3d translations currently saturating the market. Again, like the Sims, this graphic tradeoff allowed for a more fully formed world that responded intelligently to the player. Nintendo is another example of a company that has deliberately forsaken developer years crafting artwork and cramming consoles with graphical power in favour of a focus on gameplay, WiiSports, WarioWare, Mario series, etc. Although for your book I&#039;m assuming you&#039;ll want to delve more into deeper AI strategies used in games like The Sims, Civ, etc.</description>
		<content:encoded><![CDATA[<p>Couple quick questions that might help you condense and clarify things. At the beginning of your article, you make a clear distinction between the two &#8216;intensities&#8217;. Process seems to equate to gameplay, interactivity, significant choices made by the player. Data equals art and graphics, decoration, interface. Your sentence about 3d spinning recipe card confused me. Surely this is more &#8216;refined&#8217; data, rather than an increase in process intensity?</p>
<p>Secondly, you might want to detail a little more about the lo-res graphic option that hardcore gamers use. Some readers might not be familiar with the extremely low level of detail that counterstrike, unreal, etc players are willing to live with for that extra framerate that gives them an edge ingame. </p>
<p>The original GTA was designed by developers that deliberately chose dated, top down 2d graphics over the awkward 3d translations currently saturating the market. Again, like the Sims, this graphic tradeoff allowed for a more fully formed world that responded intelligently to the player. Nintendo is another example of a company that has deliberately forsaken developer years crafting artwork and cramming consoles with graphical power in favour of a focus on gameplay, WiiSports, WarioWare, Mario series, etc. Although for your book I&#8217;m assuming you&#8217;ll want to delve more into deeper AI strategies used in games like The Sims, Civ, etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick</title>
		<link>http://grandtextauto.org/2007/01/11/introducing-process-intensity/comment-page-1/#comment-105822</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Thu, 11 Jan 2007 20:26:33 +0000</pubDate>
		<guid isPermaLink="false">http://grandtextauto.org/?p=1410#comment-105822</guid>
		<description>This sounds like a good book. Not suprisingly, I&#039;m making my money these days working on data-intesive games, and spending money researching process intensive gameplay modes.</description>
		<content:encoded><![CDATA[<p>This sounds like a good book. Not suprisingly, I&#8217;m making my money these days working on data-intesive games, and spending money researching process intensive gameplay modes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron Reed</title>
		<link>http://grandtextauto.org/2007/01/11/introducing-process-intensity/comment-page-1/#comment-105816</link>
		<dc:creator>Aaron Reed</dc:creator>
		<pubDate>Thu, 11 Jan 2007 18:20:37 +0000</pubDate>
		<guid isPermaLink="false">http://grandtextauto.org/?p=1410#comment-105816</guid>
		<description>There may be a connection between the increased focus on graphical intensity and the decreased attention span of a gaming culture continually flooded with more and more product to choose from. Besides three state-of-the-art console systems and a PC, there is a snowballing number of handhelds, cell phones, and even older consoles for which new games continue to be produced. At the same time services like Gametap and XBox Live make even more titles available, while encouraging people to spend less and less time with each individual game. Graphics and other &quot;surface&quot; processing power does a great job at making the increasingly important first impression, which may be why emphasis has shifted to these areas. By contrast, the &quot;behavioral process intensity&quot; of a system often takes time to notice and becomes apparent only after multiple play sessions. &quot;Dragon&#039;s Lair&quot; was spectacular on its first play-through: it&#039;s only as you started seeing those same clips over and over again that it lost its luster. Conversely,  &quot;Civilization&quot; only reveals its charms after long hours spent delving into the underlying processes.

Making simple choices is also something the public seems to understand more readily than interacting with a complex system. Whenever I try to explain IF to people, they almost invariably compare it to &quot;Choose-Your-Own-Adventures,&quot; but even Zork is more complicated than that, simulating states and tracking variables. In my own work, I try to use lots of under-the-hood process intensity to increase the player&#039;s ability to affect the story and environment, but many people just assume they&#039;re reading a static block of text, unless they take the time to delve deeper. I gather with Facade there were similar problems with people&#039;s perceptions of the facial animation system.

Interesting excerpt, Noah. As you continue work I&#039;d love to see more bits and pieces posted.</description>
		<content:encoded><![CDATA[<p>There may be a connection between the increased focus on graphical intensity and the decreased attention span of a gaming culture continually flooded with more and more product to choose from. Besides three state-of-the-art console systems and a PC, there is a snowballing number of handhelds, cell phones, and even older consoles for which new games continue to be produced. At the same time services like Gametap and XBox Live make even more titles available, while encouraging people to spend less and less time with each individual game. Graphics and other &#8220;surface&#8221; processing power does a great job at making the increasingly important first impression, which may be why emphasis has shifted to these areas. By contrast, the &#8220;behavioral process intensity&#8221; of a system often takes time to notice and becomes apparent only after multiple play sessions. &#8220;Dragon&#8217;s Lair&#8221; was spectacular on its first play-through: it&#8217;s only as you started seeing those same clips over and over again that it lost its luster. Conversely,  &#8220;Civilization&#8221; only reveals its charms after long hours spent delving into the underlying processes.</p>
<p>Making simple choices is also something the public seems to understand more readily than interacting with a complex system. Whenever I try to explain IF to people, they almost invariably compare it to &#8220;Choose-Your-Own-Adventures,&#8221; but even Zork is more complicated than that, simulating states and tracking variables. In my own work, I try to use lots of under-the-hood process intensity to increase the player&#8217;s ability to affect the story and environment, but many people just assume they&#8217;re reading a static block of text, unless they take the time to delve deeper. I gather with Facade there were similar problems with people&#8217;s perceptions of the facial animation system.</p>
<p>Interesting excerpt, Noah. As you continue work I&#8217;d love to see more bits and pieces posted.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: warpedvisions.org  &#187; Blog Archive   &#187; Plot versus content in games</title>
		<link>http://grandtextauto.org/2007/01/11/introducing-process-intensity/comment-page-1/#comment-105809</link>
		<dc:creator>warpedvisions.org  &#187; Blog Archive   &#187; Plot versus content in games</dc:creator>
		<pubDate>Thu, 11 Jan 2007 16:11:37 +0000</pubDate>
		<guid isPermaLink="false">http://grandtextauto.org/?p=1410#comment-105809</guid>
		<description>[...] lot versus content in games   Here&#8217;s an excerpt from an upcoming book that describes process intensity, which is the amount of processing power (and effort  [...]</description>
		<content:encoded><![CDATA[<p>[...] lot versus content in games   Here&#8217;s an excerpt from an upcoming book that describes process intensity, which is the amount of processing power (and effort  [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

