home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / DOCS / se_javas / 16EXM02.TXT < prev    next >
Encoding:
Text File  |  1996-07-08  |  12.3 KB  |  383 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. //******************************************
  117. // QuickSort Array Sorting Functions
  118. // JavaScript implementation by Achille Hui
  119. // of Stanford University Dept. of Physics
  120. //******************************************
  121. function _pm_array_qsort(vec,lo,up,cmp_fun){
  122.     var i, j, t;
  123.     while(up > lo){
  124.         i = lo;
  125.         j = up;
  126.         t = vec[lo];
  127.         while(i < j){
  128.              while(cmp_fun(vec[j],t) > 0)
  129.                 j -= 1;
  130.              vec[i] = vec[j];
  131.              while((i < j) && (cmp_fun(vec[i],t) <= 0))
  132.                 i++;
  133.              vec[j] = vec[i];
  134.         }
  135.         vec[i] = t;
  136.         if(i - lo < up - i){
  137.             _pm_array_qsort(vec,lo,i-1,cmp_fun); lo = i+1;
  138.         } else {
  139.             _pm_array_qsort(vec,i+1,up,cmp_fun); up = i-1;
  140.         }
  141.     }
  142. }
  143. function pm_array_qsort(vec,lo,hi,cmp_fun){
  144.     if(vec == null){
  145.         return;
  146.     } else if(cmp_fun == null){
  147.         _pm_array_qsort(vec,lo,hi,_pm_array_defcmp);
  148.     } else {
  149.         _pm_array_qsort(vec,lo,hi,cmp_fun);
  150.     }
  151. }
  152. function _pm_array_defcmp(a,b){
  153.     return (a == b) ? 0 : (a > b) ? 1 : -1;
  154. }
  155. function Word () {
  156.   var argv = Word.arguments;
  157.   var argc = argv.length;
  158.   this.list = new Object();
  159.   for (var i = 0; i < argc; i++)
  160.     this.list[i] = argv[i];
  161.   this.count = argc;
  162.   pm_array_qsort (this.list,0,this.count-1);
  163.   this.add = AddWord;
  164.   this.find = FindWord;
  165.   this.print = PrintWords;
  166.   this.toString = WordString;
  167.   return this;
  168. }
  169. function AddWord (str) {
  170.   this.list[this.count++] = str;
  171.   pm_array_qsort(this.list,0,this.count-1);
  172. }
  173. function FindWord (str) {
  174.   for (var i = 0; i < this.count; i++)
  175.     if (this.list[i] == str)
  176.       return i;
  177.   return -1;
  178. }
  179. function PrintWords () {
  180.   var str = "";
  181.   for (var i = 0; i < this.count; i++)
  182.     str += this.list[i] + '<br>';
  183.   return str;
  184. }
  185. function WordString () {
  186.   var i = Math.round((this.count - 1) * rand.next());
  187.   return this.list[i];
  188. }
  189. function DarkColor () {
  190.   this.red = Math.round (127 * rand.next());
  191.   this.green = Math.round (127 * rand.next());
  192.   this.blue = Math.round (127 * rand.next());
  193.   this.toString = ColorString;
  194.   return this;
  195. }
  196. function LightColor () {
  197.   this.red = Math.round (127 * rand.next()) + 128;
  198.   this.green = Math.round (127 * rand.next()) + 128;
  199.   this.blue = Math.round (127 * rand.next()) + 128;
  200.   this.toString = ColorString;
  201.   return this;
  202. }
  203.  
  204. var rand = new RandomNumberGenerator();
  205.  
  206. var verb = new Word ("have", "get", "buy", "eat", "bite", "lick", "smell", "kiss",
  207.   "pet", "stroke", "kill", "feed", "rub");
  208.  
  209. var article = new Word ("a", "the", "my", "your");
  210.  
  211. var adjective = new Word ("nice", "lousy", "pretty", "lovely", "smelly", "hairy",
  212.   "lavender", "yellow", "fine", "poor", "nasty", "incredible", "tasty", "fuzzy", "silly");
  213.  
  214. var singularNoun = new Word ("umbrella", "shoe", "sneaker", "knife", "shirt", "dog", "cat",
  215.   "rooster", "penguin", "pinky", "nose", "doorknob", "bedpost", "elbow", "fish",
  216.   "armpit", "gorilla");
  217.  
  218. var pluralNoun = new Word ("umbrellas", "shoes", "sneakers", "knives", "shirts", "dogs",
  219.   "cats", "roosters", "penguins", "pinkies", "noses", "doorknobs", "bedposts", "elbows",
  220.   "fish", "armpits", "gorillas"); 
  221.  
  222. function isVowel (ch) {
  223.   if (ch == 'a' || ch == 'e' || ch == 'i' ||
  224.       ch == 'o' || ch == 'u')
  225.     return true;
  226.   return false;
  227. }
  228. function phrase (adjs) {
  229.   var size = "" + (Math.round(rand.next() * 3) + 4);
  230.   var format = " ";
  231.   if (rand.next() >= .5)
  232.     format += "b";
  233.   if (rand.next() >= .5)
  234.     format += "i";
  235.   if (rand.next() >= .5)
  236.     format += "f";
  237.   var body;
  238.   if (rand.next() >= .5)
  239.     body = new BodyColor (new DarkColor(), new LightColor());
  240.   else
  241.     body = new BodyColor (new LightColor(), new DarkColor());
  242.   var plural = (rand.next() > .5);
  243.   var vb = verb.toString();
  244.   var first = vb.charAt(0);
  245.   var vb = first.toUpperCase() + vb.substring(1,vb.length);
  246.   var art = article.toString();
  247.   var adj = new Object();
  248.   for (var i = 0; i < adjs; i++)
  249.     adj[i] = adjective.toString();
  250.   var nn = (plural) ? pluralNoun.toString() : singularNoun.toString();
  251.   if (plural && art == "a")
  252.     art = "some";
  253.   if (art == "a") {
  254.     if (adjs > 0)
  255.       first = adj[0].charAt(0);
  256.     else
  257.       first = nn.charAt(0);
  258.     if (isVowel(first))
  259.       art = "an";
  260.   }
  261.   var ph = vb + " " + art + " ";
  262.   for (i = 0; i < adjs; i++)
  263.     ph += adj[i] + " ";
  264.   ph += nn;
  265.   var screen = new Static (body,center(new Text(ph,size,format)));
  266.   return screen.toString();
  267. }
  268. function addVerb () {
  269.   var str = prompt ("Enter a verb (eat, kiss, bite, etc.):","");
  270.   if (str == null || str == "")
  271.     return;
  272.   if (verb.find(str) != -1) {
  273.     alert ("\nThat verb is already listed!");
  274.     return;
  275.   }
  276.   verb.add(str);
  277.   listVerbs();
  278. }
  279. function addAdjective () {
  280.   var str = prompt ("Enter an adjective (pretty, smelly, nice, etc.):","");
  281.   if (str == null || str == "")
  282.     return;
  283.   if (adjective.find(str) != -1) {
  284.     alert ("\nThat adjective is already listed!");
  285.     return;
  286.   }
  287.   adjective.add(str);
  288.   listAdjectives();
  289. }
  290. function addSingular () {
  291.   var str = prompt ("Enter a singular noun (dog, cat, knife, etc.):","");
  292.   if (str == null || str == "")
  293.     return;
  294.   if (singularNoun.find(str) != -1) {
  295.     alert ("\nThat noun is already listed!");
  296.     return;
  297.   }
  298.   singularNoun.add(str);
  299.   listSingular();
  300. }
  301. function addPlural () {
  302.   var str = prompt ("Enter a plural noun (dogs, cats, knives, etc.):", "");
  303.   if (str == null || str == "")
  304.     return;
  305.   if (pluralNoun.find(str) != -1) {
  306.     alert ("\nThat noun is already listed!");
  307.     return;
  308.   }
  309.   pluralNoun.add(str);
  310.   listPlural();
  311. }
  312. function listVerbs () {
  313.   self.show.location = "javascript:parent.showList('Verbs',parent.verb.print())";
  314. }
  315. function listAdjectives () {
  316.   self.show.location = "javascript:parent.showList('Adjectives',parent.adjective.print())";
  317. }
  318. function listSingular () {
  319.   self.show.location = "javascript:parent.showList('Singular Nouns',parent.singularNoun.print())";
  320. }
  321. function listPlural () {
  322.   self.show.location = "javascript:parent.showList('Plural Nouns',parent.pluralNoun.print())";
  323. }
  324. function showList (title,str) {
  325.   return '<html><body bgcolor="#FFFFFF" text="#0000FF"><h1 align="center">' +
  326.     title + '</h1><div align="center"><font size=5>' + str + 
  327.     '</font></div></body></html>';
  328. }
  329. function printPhrase () {
  330.   var adj = self.control.document.cont.adj.selectedIndex;
  331.   if (adj == 3)
  332.     adj = Math.round (rand.next()*2);
  333.   self.show.location = "javascript:parent.phrase(" + adj + ")";
  334. }
  335. var emptyFrame = '<html><body bgcolor="#FFFFFF"></body></html>';
  336. var titleFrame = '<html><body bgcolor="#500010" text="#FFFFFF">' +
  337.   '<h1 align="center">JS-Phrase</h1></body></html>';
  338. var controlFrame =
  339.   '<html><body bgcolor="#808080" text="#FFFFFF">' +
  340.   '<form name="cont">' +
  341.   '<table width=100% height=100% border=0 cellpadding=0 cellspacing=0>' +
  342.   '<tr align="center">' +
  343.   '<td colspan=2><b>Number of Adjectives</b> <select name="adj">' +
  344.   '<option>None' +
  345.   '<option>1' +
  346.   '<option>2' +
  347.   '<option selected>Random' +
  348.   '</select></td>' +
  349.   '<td colspan=2><input type="button" value="Generate Phrase!" onclick="parent.printPhrase()"></td>' +
  350.   '</tr>' +
  351.   '<tr align="center">' +
  352.   '<td><input type="button" value="Add Verb" onclick="parent.addVerb()"></td>' +
  353.   '<td><input type="button" value="Add Adjective" onclick="parent.addAdjective()"></td>' +
  354.   '<td><input type="button" value="Add Singular Noun" onclick="parent.addSingular()"></td>' +
  355.   '<td><input type="button" value="Add Plural Noun" onclick="parent.addPlural()"></td>' +
  356.   '</tr>' +
  357.   '<tr align="center">' +
  358.   '<td><input type="button" value="List Verbs" onclick="parent.listVerbs()"></td>' +
  359.   '<td><input type="button" value="List Adjectives" onclick="parent.listAdjectives()"></td>' +
  360.   '<td><input type="button" value="List Singular Nouns" onclick="parent.listSingular()"></td>' +
  361.   '<td><input type="button" value="List Plural Nouns" onclick="parent.listPlural()"></td>' +
  362.   '</tr>' +
  363.   '</table>' +
  364.   '</form>' +
  365.   '</body></html>';
  366. function initialize () {
  367.   self.head.location = "javascript:parent.titleFrame";
  368.   self.control.location = "javascript:parent.controlFrame";
  369.   var adj = Math.round(rand.next()*2);
  370.   self.show.location = "javascript:parent.phrase(" + adj + ")";
  371. }
  372. // end script -->
  373. </script>
  374. </head>
  375. <frameset rows="52,*,128" onLoad="initialize()">
  376.   <frame name="head" src="javascript:parent.emptyFrame" noresize scrolling="no"
  377.      marginwidth=1 marginheight=1>
  378.   <frame name="show" src="javascript:parent.emptyFrame" noresize
  379.      marginwidth=1 marginheight=1>
  380.   <frame name="control" src="javascript:parent.emptyFrame" noresize scrolling="no"
  381.      marginwidth=1 marginheight=1>
  382. </frameset>
  383. </html>