home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-3.iso / Tools / screen / SpaceSaver.3.2.README < prev    next >
Encoding:
Text File  |  1995-06-24  |  9.2 KB  |  95 lines

  1. SpaceSaver recasts the BackSpace application to be a ScreenSaver.bundle for use with loginwindow.app -- this allows existing BackSpace modules to act as screen savers when a NeXT is logged out.
  2.  
  3. This recast of BackSpace into a ScreenSaver bundle for use when no one is logged in was done by Christopher_Lane@Med.Stanford.EDU, in December 1993.
  4.  
  5. The original BackSpace application was done by Sam Streeper of NeXT, with contributions from Bill Bumgarner, Lennart Lovstrand, Bruce Blumberg, shou-h@nexus.or.jp and others.
  6.  
  7. Undocumented ScreenSaver.bundle details obtained from posts to comp.sys.next.* by Paul Marcos <dcode@netcom.com> and Eric P. Scott <eps@futon.SFSU.EDU>.
  8.  
  9. This bundle was implemented and tested under the NeXTSTEP 3.2 release.  This should be considered beta software--there may still be bugs & features to be sorted out.  (If you're at all squeamish about autonomous processes run by root with potential bugs, you might want to carefully consider before installing this!)
  10.  
  11. Installation
  12.  
  13. To install, as root, first:
  14.  
  15.     > cd /usr/lib/NextStep/loginwindow.app
  16.     > mv ScreenSaver.bundle ScreenSaver.bundle_orig
  17.  
  18. Now, also as root, change to the SpaceSaver directory and do:
  19.  
  20.     > make install
  21.  
  22. (Or, you can just copy the MAB ScreenSaver.bundle from the original distribution file.  Make sure to use the command above if you remake from scratch so it will get stripped and take up less space.)
  23.  
  24. Finally, logout and type exit to the login window to restart the window server and invoke the newly installed SpaceSaver.
  25.  
  26. BackSpace module defaults & SpaceSaver
  27.  
  28. SpaceSaver uses BackSpace's imageFile, viewType & priority defaults, as set from BackSpace.app, and ignores the rest.  Thus, if set by root when using the BackSpace application, they should also affect SpaceSaver's behavior.  If you don't set BackSpace to a specific viewType, then All will be used and SpaceSaver will randomly choose a BackSpace module to display.
  29.  
  30. Additionally, any BackSpace module defaults that are set by root should take affect when the same module is invoked by SpaceSaver.  (How this is done is described below.)  So root should use some care when setting up BackSpace module preferences as they will affect the system's screen saver.
  31.  
  32. Some of root's changes to preferences in BackSpace won't take effect in SpaceSaver until you restart the window server.  You might want to consider removing root's existing BackSpace defaults and start over when you install SpaceSaver by doing:
  33.  
  34.     > dread -o BackSpace | dremove
  35.  
  36. Also, at the same time that you install SpaceSaver, as root you might want to set loginwindow's TimeToDim default to something shorter, for example 20 seconds:
  37.  
  38.     > dwrite loginwindow TimeToDim 20
  39.  
  40. SpaceSaver includes a default called ViewDirectory which is looked up under owner BackSpace.  This default lets you set an alternate directory to search for loadable BackSpace modules.  (For example, you could set the ViewDirectory to the /usr/lib/NextStep/loginwindow.app/ScreenSaver.bundle directory itself, and make symbolic links to modules in /LocalLibrary/BackSpaceViews that you think make for really good screen savers, ignoring the rest.)  If you have a /LocalLibrary/BackSpaceViews directory, you don't have to set this.
  41.  
  42. Known problems with existing BackSpace modules
  43.  
  44. I've tested the SpaceSaver bundle with fifty different BackSpace modules to make it compatible as possible but there are bound to be problems since it's not identical to the BackSpace application.  Assuming you've kept your collection of BackSpace modules reasonably up to date, there should be minimal compatibility issues.
  45.  
  46. Some known problems:
  47.  
  48. o BoinkSpace -- Since SpaceSaver doesn't incorporate BackSpace's Boink class this module doesn't load.  Since this is a load failure, SpaceSaver will detect it and move on to the next module so you can leave this one with the others. 
  49.  
  50. o StarShip -- This module includes a redundant definition of the nonretainedFillMethods category that keeps it from loading in some situations.  (Which I don't fully understand as sometimes BackSpace can load it.)  Since this is a load failure, SpaceSaver will detect it and move on to the next module so you can leave this one with the others.
  51.  
  52. o TeaPot -- I'm not sure it works when you're logged out as of this writing.  (It loads but you just end up with a black screen -- works fine in debug mode!)
  53.  
  54. o Toasters -- If you were lucky enough to get a legitimate copy of this before it was yanked from the archives long ago, it won't work with SpaceSaver unless you copy its *.tiff files into loginwindow.app and make sure that its *.BackO file (or *.BackModule directory) is on /LocalLibrary/BackSpaceViews.
  55.  
  56. Not a problem, but anything that returns YES to the isBoringScreenSaver query (e.g GradientView) will be skipped over.  Also modules that live in the Backspace application directory will need to migrate to /LocalLibrary/BackSpaceViews.
  57.  
  58. Internally patched BackSpace modules
  59.  
  60. The following work because of specific patches added to the SpaceSaver code, but may not in future releases if these patches are dropped:
  61.  
  62. o IconMosaicView -- (One of my own!) Older versions of this module (and other modules?) assume that the invoking object is the applications delegate.  (Use BSThinker() instead.)  The ScreenSaver class becomes the application's delegate while modules are running to satisfy this expectation.
  63.  
  64. o MovieShow -- SpaceSaver incorporates some alternate defaults settings so that this module does something useful (single image animation that floats around the screen) if uninitialized rather than putting up an alert panel.
  65.  
  66. o Multi -- Two patches, one to its defaults so that it does something useful (single Space view) if uninitialized.  The other patch is that since MultiView mucks directly with the Thinker class's instance variables, SpaceSaver's instance variables currently match those of the Thinker class even though many variables are not used.  The MultiView and MartinView modules also rely on the SpaceSaver patch that loads the module's inspector even though it isn't used.
  67.  
  68. o Spew -- This BackSpace module fails to load in some circumstances (even in BackSpace) due to the fmod() function getting inlined in the BackSpace and/or SpaceSaver code but still being a function call in Spew.  SpaceSaver includes a bogus call to fmod() and an extra compiler flag to make sure the routine exists.  This appears to be tied up with release 3.2 and g++ header files.
  69.  
  70. Differences from BackSpace.app
  71.  
  72. Although derived from the BackSpace source code, this ScreenSaver bundle is a lighter weight subset with many design deviations.  Hopefully, most of these will be invisible to BackSpace modules:
  73.  
  74. o SpaceSaver only looks in one directory, /LocalLibrary/BackSpaceViews by default, for loadable modules.  The original BackSpace application looks there, in its own *.app directory and in ~/Library/BackSpaceViews in the user's home directory.  You can, however, change the directory that SpaceSaver searches.  See the defaults descriptions above.
  75.  
  76. o SpaceSaver doesn't use inspectors.  It will invoke the inspector: method as some views use this to initialize themselves but it will never install or deinstall an inspector panel.  The various inspector query routines will return nil or are non-existent.
  77.  
  78. o SpaceSaver doesn't include the BoinkView class.  (Someone will need to extract this as a standalone BackSpace module for SpaceSaver to use it.)  Without this class, the BoinkSpace module doesn't work.  (However, this will fail on load and SpaceSaver will detect it and move to the next module.)
  79.  
  80. o SpaceSaver doesn't support BackSpace modules that take mouse input -- any mouse action will cancel the screen saver and return to the login window.  For all the modules I tested, this doesn't appear to be a problem.
  81.  
  82. o SpaceSaver doesn't implement hot corners.  If you want the screen saver to invoke sooner, as root set the TimeToDim default to a smaller value.
  83.  
  84. o SpaceSaver calls 'dread -o BackSpace' on first invocation to copy BackSpace's defaults into the current cache for loginwindow.  It skips any that loginwindow already has a value for.  This is done so that the module will find defaults that root set when running BackSpace.app.  If it didn't do this, root would have to manually copy all the defaults from BackSpace to loginwindow.  This may be a source of potential bugs and thus it's important that root keep it's BackSpace defaults relatively vanilla.  (I tried solving this by changing appName on the fly but that has its own bugs/concerns.)
  85.  
  86. o SpaceSaver only operates as a screen saver so there is no concept of normal or background mode in it's source code.  There is no ScreenLocker mode.
  87.  
  88. o SpaceSaver doesn't incorporate the autodim logic of BackSpace as it isn't clear whether this is currently valid in the loginwindow/ScreenSaver setup.
  89.  
  90. o Although SpaceSaver includes the BlackView & BackView classes for other modules to inherit from, it doesn't use BlackView or BackView.  The BackWindow  class is neither used in SpaceSaver nor included in the compilation.
  91.  
  92. o SpaceSaver doesn't invoke or use the windowTitle method.
  93.  
  94. o Unlike the Thinker class, the ScreenSaver class doesn't perform any of the duties of an application delegate.  However, it becomes the NXApp's delegate when modules are running since some assume that they are being invoked by such a delegate.
  95.