home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / DOCS / se_javas / 16EXM01.TXT < prev    next >
Encoding:
Text File  |  1996-07-08  |  8.1 KB  |  252 lines

  1. <html>
  2. <!-- Phrase generator Copyright (c) 1996 Bill Dortch, hIdaho Design -->
  3. <head>
  4. <title>A JavaScript Phrase Generator</title>
  5. <script language="JavaScript">
  6. <!-- begin script
  7. var hexchars = '0123456789ABCDEF';
  8. function fromHex (str) {
  9.   var high = str.charAt(0); // Note: Netscape 2.0 bug workaround
  10.   var low = str.charAt(1);
  11.   return (16 * hexchars.indexOf(high)) +
  12.     hexchars.indexOf(low);
  13. }
  14. function toHex (num) {
  15.   return hexchars.charAt(num >> 4) + hexchars.charAt(num & 0xF);
  16. }
  17. function Color (str) {
  18.   this.red = fromHex(str.substring(0,2));
  19.   this.green = fromHex(str.substring(2,4));
  20.   this.blue = fromHex(str.substring(4,6));
  21.   this.toString = ColorString;
  22.   return this;
  23. }
  24. function ColorString () {
  25.   return toHex(this.red) + toHex(this.green) + toHex(this.blue);
  26. }
  27. function BodyColor (bgColor,fgColor,linkColor,vlinkColor,alinkColor) {
  28.   this.bgColor = bgColor;
  29.   this.fgColor = fgColor;
  30.   this.linkColor = linkColor;
  31.   this.vlinkColor = vlinkColor;
  32.   this.alinkColor = alinkColor;
  33.   this.toString = BodyColorString;
  34.   return this;
  35. }
  36. function BodyColorString () {
  37.   return '<body' +
  38.     ((this.bgColor == null) ? '' : ' bgcolor="#' + this.bgColor + '"') +
  39.     ((this.fgColor == null) ? '' : ' text="#' + this.fgColor + '"') +
  40.     ((this.linkColor == null) ? '' : ' link="#' + this.linkColor + '"') +
  41.     ((this.vlinkColor == null) ? '' : ' vlink="#' + this.vlinkColor + '"') +
  42.     ((this.alinkColor == null) ? '' : ' alink="#' + this.alinkColor + '"') +
  43.     '>';
  44. }
  45. function Text (text, size, format, color) {
  46.   this.text = text;
  47.   this.length = text.length;
  48.   this.size = size;
  49.   this.format = format;
  50.   this.color = color;
  51.   this.toString = TextString;
  52.   this.substring = TextString;
  53.   return this;
  54. }
  55. function TextString (start, end) {
  56.   with (this) {
  57.     if (TextString.arguments.length < 2 || start >= length) start = 0;
  58.     if (TextString.arguments.length < 2 || end > length) end = length;
  59.     var str = text.substring(start,end);
  60.     if (format != null) {
  61.       if (format.indexOf("b") >= 0) str = str.bold();
  62.       if (format.indexOf("i") >= 0) str = str.italics();
  63.       if (format.indexOf("f") >= 0) str = str.fixed();
  64.     }
  65.     if (size != null) str = str.fontsize(size);
  66.     if (color != null) {
  67.       var colorstr = color.toString(); // Note: Netscape 2.0 bug workaround
  68.       str = str.fontcolor(colorstr);
  69.     }
  70.   }
  71.   return str;
  72. }
  73. function Static (body, text) {
  74.   this.body = body;
  75.   this.text = text;
  76.   this.toString = StaticString;
  77.   return this;
  78. }
  79. function StaticString () {
  80.   return '<html>' + this.body + this.text + '</body></html>';
  81. }
  82.  
  83. function center (text) {
  84.   return '<table width=100% height=100% border=0 cellpadding=0 cellspacing=0>' +
  85.     '<tr><td align="center" valign="center">' + text + '</td></tr></table>';
  86. }
  87.  
  88. //*********************************************
  89. // Park-Miller Pseudo-Random Number Generator
  90. // JavaScript implementation by David N. Smith
  91. // of IBM's T J Watson Research Center
  92. //*********************************************
  93. function NextRandomNumber()  {
  94.   var hi   = this.seed / this.Q;
  95.   var lo   = this.seed % this.Q;
  96.   var test = this.A * lo - this.R * hi;
  97.   if (test > 0)
  98.     this.seed = test;
  99.   else
  100.     this.seed = test + this.M;
  101.   return (this.seed * this.oneOverM);
  102. }
  103. function RandomNumberGenerator() {
  104.   var d = new Date();
  105.   this.seed = 2345678901 +
  106.     (d.getSeconds() * 0xFFFFFF) +
  107.     (d.getMinutes() * 0xFFFF);
  108.   this.A = 48271;
  109.   this.M = 2147483647;
  110.   this.Q = this.M / this.A;
  111.   this.R = this.M % this.A;
  112.   this.oneOverM = 1.0 / this.M;
  113.   this.next = NextRandomNumber;
  114.   return this;
  115. }
  116. function Word () {
  117.   var argv = Word.arguments;
  118.   var argc = argv.length;
  119.   this.list = new Object();
  120.   for (var i = 0; i < argc; i++)
  121.     this.list[i] = argv[i];
  122.   this.count = argc;
  123.   this.toString = WordString;
  124.   return this;
  125. }
  126. function WordString () {
  127.   var i = Math.round((this.count - 1) * rand.next());
  128.   return this.list[i];
  129. }
  130. function DarkColor () {
  131.   this.red = Math.round (127 * rand.next());
  132.   this.green = Math.round (127 * rand.next());
  133.   this.blue = Math.round (127 * rand.next());
  134.   this.toString = ColorString;
  135.   return this;
  136. }
  137. function LightColor () {
  138.   this.red = Math.round (127 * rand.next()) + 128;
  139.   this.green = Math.round (127 * rand.next()) + 128;
  140.   this.blue = Math.round (127 * rand.next()) + 128;
  141.   this.toString = ColorString;
  142.   return this;
  143. }
  144.  
  145. var rand = new RandomNumberGenerator();
  146.  
  147. var verb = new Word ("have", "get", "buy", "eat", "bite", "lick", "smell", "kiss",
  148.   "pet", "stroke", "kill", "feed", "rub");
  149.  
  150. var article = new Word ("a", "the", "my", "your");
  151.  
  152. var adjective = new Word ("nice", "lousy", "pretty", "lovely", "smelly", "hairy",
  153.   "lavender", "yellow", "fine", "poor", "nasty", "incredible", "tasty", "fuzzy", "silly");
  154.  
  155. var singularNoun = new Word ("umbrella", "shoe", "sneaker", "knife", "shirt", "dog", "cat",
  156.   "rooster", "penguin", "pinky", "nose", "doorknob", "bedpost", "elbow", "fish",
  157.   "armpit", "gorilla");
  158.  
  159. var pluralNoun = new Word ("umbrellas", "shoes", "sneakers", "knives", "shirts", "dogs",
  160.   "cats", "roosters", "penguins", "pinkies", "noses", "doorknobs", "bedposts", "elbows",
  161.   "fish", "armpits", "gorillas");
  162.  
  163. function isVowel (ch) {
  164.   if (ch == 'a' || ch == 'e' || ch == 'i' ||
  165.       ch == 'o' || ch == 'u')
  166.     return true;
  167.   return false;
  168. }
  169. function phrase (adjs) {
  170.   var size = "" + (Math.round(rand.next() * 3) + 4);
  171.   var format = " ";
  172.   if (rand.next() >= .5)
  173.     format += "b";
  174.   if (rand.next() >= .5)
  175.     format += "i";
  176.   if (rand.next() >= .5)
  177.     format += "f";
  178.   var body;
  179.   if (rand.next() >= .5)
  180.     body = new BodyColor (new DarkColor(), new LightColor());
  181.   else
  182.     body = new BodyColor (new LightColor(), new DarkColor());
  183.   var plural = (rand.next() > .5);
  184.   var vb = verb.toString();
  185.   var first = vb.charAt(0);
  186.   var vb = first.toUpperCase() + vb.substring(1,vb.length);
  187.   var art = article.toString();
  188.   var adj = new Object();
  189.   for (var i = 0; i < adjs; i++)
  190.     adj[i] = adjective.toString();
  191.   var nn = (plural) ? pluralNoun.toString() : singularNoun.toString();
  192.   if (plural && art == "a")
  193.     art = "some";
  194.   if (art == "a") {
  195.     if (adjs > 0)
  196.       first = adj[0].charAt(0);
  197.     else
  198.       first = nn.charAt(0);
  199.     if (isVowel(first))
  200.       art = "an";
  201.   }
  202.   var ph = vb + " " + art + " ";
  203.   for (i = 0; i < adjs; i++)
  204.     ph += adj[i] + " ";
  205.   ph += nn;
  206.   var screen = new Static (body,center(new Text(ph,size,format)));
  207.   return screen.toString();
  208. }
  209. function printPhrase () {
  210.   var adj = self.control.document.cont.adj.selectedIndex;
  211.   if (adj == 3)
  212.     adj = Math.round (rand.next()*2);
  213.   self.show.location = "javascript:parent.phrase(" + adj + ")";
  214. }
  215. var emptyFrame = '<html><body bgcolor="#FFFFFF"></body></html>';
  216. var titleFrame = '<html><body bgcolor="#500010" text="#FFFFFF">' +
  217.   '<h1 align="center">JS-Phrase</h1></body></html>';
  218. var controlFrame =
  219.   '<html><body bgcolor="#808080" text="#FFFFFF">' +
  220.   '<form name="cont">' +
  221.   '<table width=100% height=100% border=0 cellpadding=0 cellspacing=0>' +
  222.   '<tr align="center">' +
  223.   '<td colspan=2><b>Number of Adjectives</b> <select name="adj">' +
  224.   '<option>None' +
  225.   '<option>1' +
  226.   '<option>2' +
  227.   '<option selected>Random' +
  228.   '</select></td>' +
  229.   '<td colspan=2><input type="button" value="Generate Phrase!" onclick="parent.printPhrase()"></td>' +
  230.   '</tr>' +
  231.   '</table>' +
  232.   '</form>' +
  233.   '</body></html>';
  234. function initialize () {
  235.   self.head.location = "javascript:parent.titleFrame";
  236.   self.control.location = "javascript:parent.controlFrame";
  237.   var adj = Math.round(rand.next()*2);
  238.   self.show.location = "javascript:parent.phrase(" + adj + ")";
  239. }
  240. // end script -->
  241. </script>
  242. </head>
  243. <frameset rows="52,*,128" onLoad="initialize()">
  244.   <frame name="head" src="javascript:parent.emptyFrame" noresize scrolling="no"
  245.      marginwidth=1 marginheight=1>
  246.   <frame name="show" src="javascript:parent.emptyFrame" noresize
  247.      marginwidth=1 marginheight=1>
  248.   <frame name="control" src="javascript:parent.emptyFrame" noresize scrolling="no"
  249.      marginwidth=1 marginheight=1>
  250. </frameset>
  251. </html>
  252.