home *** CD-ROM | disk | FTP | other *** search
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
- <HTML>
- <HEAD>
- <!--META TAGS ARE RECOMMENDED FOR THE SEARCH ENGINE-->
- <META NAME="DESCRIPTION" Content="How It Works Page">
- <META NAME="KEYWORDS" CONTENT="help, code, source code, questions, explanation, fun, games">
- <META NAME="GENERATOR" CONTENT="Microsoft Visual InterDev 1.0">
- <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso8859-1">
- <!--END META TAGS-->
-
- <TITLE>How This Page Works</TITLE>
- </HEAD>
-
- <BODY BGCOLOR=#FFFFFF TOPMARGIN=0 LEFTMARGIN=0 ALINK=#23238E VLINK=#808080 LINK=#FFCC00>
- <BASEFONT FACE="VERDANA, ARIAL, HELVETICA" SIZE=2>
-
- <!--Change link color on mouseover
- Only if running Internet Explorer 4.0 or later -->
- <!--#include file=../libHighlight.inc-->
-
- <!--BEGIN TOP TABLE HOLDING GRAPHIC, NAVIGATIONAL LINK, AND MAIN CONTENT-->
- <TABLE WIDTH="100%" HEIGHT="100%" CELLPADDING=0 CELLSPACING=0 BGCOLOR="#000000" BORDER=0>
- <TR>
- <TD BGCOLOR="#000000" ALIGN=CENTER VALIGN=TOP WIDTH=170>
- <BR>
- <IMG SRC="../images/btslarge.jpg" HEIGHT=119 WIDTH=171 ALT="Behind the Scenes at Exploration Air" BORDER=0 ></A>
- <BR>
- <BR>
- <BR>
- <!--BACK BUTTON AND VARIABLE TO RETURN TO ORIGINATING PAGE-->
- <A HREF="<%=Request.ServerVariables("HTTP_REFERER")%>"><IMG SRC="../images/barrowy.gif" HEIGHT=8 WIDTH=8 ALT="Return to Previous Page" BORDER=0></A>
- <FONT SIZE=2 FACE="VERDANA, ARIAL, HELVETICA"><STRONG>
- <A HREF="<%=Request.ServerVariables("HTTP_REFERER")%>">
- B A C K </A>
- </STRONG></FONT>
- <BR>
- <BR>
- <!--JAVASCRIPT TO VIEW PAGE'S SOURCE CODE-->
- <A HREF="JavaScript:openWindow('../FunNGames/FunNGames.asp')">View Source</A>
- <BR>
- </TD>
- <TD BGCOLOR="#FFFFFF" BACKGROUND="../images/btsbg.gif" VALIGN=top>
- <BR CLEAR=ALL>
- <TABLE WIDTH="100%" CELLPADDING=10 CELLSPACING=0 BORDER=0>
- <TR>
- <TD VALIGN=top>
- <FONT FACE="VERDANA, ARIAL, HELVETICA" COLOR="#0000FF" SIZE=5>How the Fun 'n' Games Page Works</FONT>
- <HR>
- <FONT FACE="VERDANA, ARIAL, HELVETICA" SIZE="2">
- <H2>Functional Overview</H2>
- The Fun 'n' Games page provides a very simple word search game. First the square is generated by a server-side
- Java component and displayed. The user can then select cities. Once the user has selected a city
- at the bottom of the screen, the user is prompted to enter the X and Y coordinates of the hidden word in the matrix.
- The prompt is dislpayed using Dynamic HTML (DHTML).
- <P>
- The game finishes when all the cities are correctly identified.
- <P>
- <H2>Components Used</H2>
- A Java component called <STRONG>Hidden.Words</STRONG> generates the matrix of letters and cities.
- The component is made from three classes: <STRONG>HiddenWords</STRONG>, <STRONG>SquareElement</STRONG>
- and <STRONG>ChosenWord</STRONG>.
- <P>
- <CENTER>
- <TABLE ALIGN=CENTER BORDER=1 WIDTH=90%>
- <TR>
- <TH BGCOLOR="#C0C0C0">Class</TH><TH BGCOLOR="#C0C0C0">Comment</TH>
- <TR>
- <TD>
- <STRONG><I>HiddenWords</I></STRONG>
- </TD>
- <TD>The main class. This is exposed by COM, so it can be called from ASP.
- This class has the following public methods:<P>
- <STRONG>buildWordSquare()</STRONG> and
- <STRONG>getWordList()</STRONG>
- </TD>
- </TR>
- <TR>
- <TD>
- <STRONG><I>SquareElement</I></STRONG>
- </TD>
- <TD>
- Each character in the matrix is actually an instance of this class.
- </TD>
- </TR>
- <TR>
- <TD>
- <STRONG><I>ChosenWord</I></STRONG>
- </TD>
- <TD>
- All the chosen words are stored in a Vector of ChosenWords.
- </TD>
- </TR>
- </TABLE>
- </CENTER>
- <P>
- As noted in the table above, <STRONG>HiddenWords</STRONG> has three public methods. These methods are automatically exposed
- by the Microsoft Java virtual machine (VM) as COM methods.
- <P>
- <CENTER>
- <TABLE ALIGN=CENTER BORDER=1 WIDTH=90%>
- <TR>
- <TH BGCOLOR="#C0C0C0">Method</TH><TH BGCOLOR="#C0C0C0">Comment</TH>
- <TR>
- <TD>
- <STRONG><I>buildWordSquare</I></STRONG>
- </TD>
- <TD>
- This method builds a random square of letters and then populates it with a random series of non-duplicate cities.
- The words can go either across or down. Once it is populated, an HTML table is built inside the component and passed back
- to the calling page, FunNGames.asp, through the ASP <STRONG>IResponse</STRONG> interface.
- To make this easier, extensive use of the ASP Java Component Framework is used.
- </TD>
- </TR>
- <TR>
- <TD>
- <STRONG><I>getWordList</I></STRONG>
- </TD>
- <TD>
- Returns a list of words inside an HTML table, the result is passed back to the calling page,
- FunNGames.asp through the ASP <STRONG>IResponse</STRONG> interface.
- To make this work easier, extensive use of the ASP Java Component Framework is used.
- </TD>
- </TR>
- </TABLE>
- </CENTER>
- <P>
- </FONT>
- </TD>
- </TR>
- </TABLE>
- <!--END TOP TABLE HOLDING GRAPHIC, NAVIGATIONAL LINK, AND MAIN CONTENT-->
- <BR>
- <BR>
-
- <CENTER>
- <!--BEGIN LEGAL INFORMATION-->
- <TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0>
- <TR>
- <TD>
- <FONT FACE="VERDANA, ARIAL, HELVETICA" SIZE="1"><A HREF="../legal.htm">©1997 Microsoft Corporation. All rights reserved. Terms of Use.</A></FONT>
- <P>
- </TD>
- </TR>
- </TABLE>
- </TD>
- </TR>
- </TABLE>
- </CENTER>
- <!--END LEGAL INFORMATION-->
-
- </BODY>
- </HTML>
-
- <SCRIPT LANGUAGE="JavaScript">
- function openWindow(SourceURL)
- {
- // Set some defaults
- width=450;
- height=450;
-
- url = "code.asp?Source=" + SourceURL;
- window.open(url,"Sample","resizable=yes,scrollbars=yes,width=" + width + ",height=" + height);
- }
- </SCRIPT>
-