While you&#39;re at it, if a file is deleted while you&#39;re in the directory (so that it&#39;s in your field of vision), a little gremlin should come running by, eat it, and run off. <br><br>On a slightly less stupid note, have you considered being able to manipulate files as well? For example, maybe I can walk over to a file, pick it up, and walk over to some other directory, and put it down, thus moving the file. Cleaning up my mess of a home directory might be more fun if I can lie to my brain and say it&#39;s a game :)
<br><br>- Mike<br><br><div class="gmail_quote">On Nov 23, 2007 10:38 AM, Ingles, Raymond &lt;<a href="mailto:Raymond.Ingles@compuware.com">Raymond.Ingles@compuware.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
&gt; From: Michael Corral<br><div class="Ih2E3d"><br>&gt; When it comes to writing a file manager, get used to people making<br>&gt; lots of requests. :) No doubt somebody (ahem) will insist that you<br>&gt; include ACL support, so that Linux will be &quot;ready for the desktop&quot;
<br>&gt; and &quot;support reasonable security practices&quot;. ;)<br><br></div>&nbsp;Yeah, I&#39;m sure there will be plenty of requests. I&#39;m hoping that people<br>with more 3D experience will start taking roles in the project, frankly.
<br>I&#39;ve tried to modularize the code so it&#39;s fairly easy to work with. (For<br>a counterexample, tdfsb is all one big source file...)<br><div class="Ih2E3d"><br>&gt; &gt; But now we&#39;ve got 3D hardware in<br>&gt; &gt; every computer sold, and we&#39;re not really taking advantage of it.
<br>&gt;<br>&gt; The only thing holding us back are those pesky monitors. :)<br>&gt; Until someone comes up with a device that can produce holograms for<br>&gt; the objects the computer displays, then everything will continue to
<br>&gt; be just variations on the same theme (projections of 3-dimensional<br>&gt; objects onto a 2-dimensional screen).<br><br></div>&nbsp;Yeah, but people still go to movies. There&#39;s still room to grow before<br>we get to holograms.
<br><div class="Ih2E3d"><br>&gt; You could argue that many existing GUI file managers (like Nautilus or<br>&gt; Konqueror) are already 3D: the icons in many cases are &quot;3D&quot;, icons and<br>&gt; windows can be placed &quot;behind&quot; others, etc.
<br><br></div>&nbsp;That&#39;s true, and this might be a misguided effort, but I still think there<br>ought to be a way to apply that power to other means than games and CAD<br>visualizations.<br><div class="Ih2E3d"><br>&gt; How are you going to handle files of size 0 bytes, since you can&#39;t
<br>&gt; take the logarithm of 0 to determine the icon height? Even a 1 byte<br>&gt; file would have a height of 0 = log_2 (1), by your sizing scheme.<br><br></div> &nbsp;/* Can&#39;t take log of zero (empty file). */<br> &nbsp;if (file_r_info-&gt;file_info-&gt;fsize &gt; 1) {
<br> &nbsp; &nbsp;/* This scale allows the height value to be used for both<br> &nbsp; &nbsp; &nbsp; vertex and texture coords. */<br> &nbsp; &nbsp;height = log(file_r_info-&gt;file_info-&gt;fsize) / (10*log(2));<br> &nbsp;} else {<br> &nbsp; &nbsp;height=0.01; /* Don&#39;t have to use polygon offset or anything silly
<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;like that. */<br><div class="Ih2E3d"> &nbsp;}<br><br>&gt; Also, will the display have a legend for the permission colors, so<br>&gt; you don&#39;t have to remember what color corresponds to what permission?
<br><br></div>&nbsp;That&#39;ll be configurable, yes.<br><div class="Ih2E3d"><br>&gt; And shouldn&#39;t you have colors for setgid and the sticky bit?<br><br></div>&nbsp;I do, listed in the design doc.<br><div class="Ih2E3d"><br>&nbsp;Sincerely,
<br><br>&nbsp;Ray Ingles &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (313) 227-2317<br><br></div>&nbsp;&quot;Economies don&#39;t like step functions.&quot; - Dr. Leonard Bieman<br><div class="Ih2E3d">The contents of this e-mail are intended for the named addressee only. It contains information that may be confidential. Unless you are the named addressee or an authorized designee, you may not copy or use it, or disclose it to anyone else. If you received it in error please notify us immediately and then destroy it.
<br>_______________________________________________<br></div><div><div></div><div class="Wj3C7c">mdlug mailing list<br><a href="mailto:mdlug@mdlug.org">mdlug@mdlug.org</a><br><a href="http://mdlug.org/mailman/listinfo/mdlug" target="_blank">
http://mdlug.org/mailman/listinfo/mdlug</a><br></div></div></blockquote></div><br>