<%@ page contentType="text/html; charset=gb2312"%> Java游戏开发案例-方块游戏
网站公告:   ◆北天JAVA技术网热情为java爱好者服务,本网内容包括JAVA(JSP、servlet、EJB、webservice、j2ee、javabean、应用服务器、JavaScript),数据库(MYSQL、SQL Server、Sybase、Oracle、DB2、数据库综合知识),设计研究(设计模式、Struts、Spring、Hibernate、设计框架、设计综合知识),WEB2.0新技术(主要介绍AJAX),以及各种技术的入门、实例、例子等等,欢迎各位多来坐坐!◆  诚邀各位JAVA爱好者加盟!◆  本网站内容丰富,更新快,保证每周20篇以上!  
加入收藏
设为首页
联系站长
承接项目
  相关资源:网站首页 | 免费培训学院 | 技术论坛 | JAVA聊天室 | 作家专栏 | 开发工具 | 认证考试 | 会员俱乐部
  JAVA技术初学者园地 | jsp与servlet | javascript | Java源代码 | EJB | web service | 应用服务器 | JAVA综合知识
  设计研究设计模式 | 设计框架 | Struts | Spring | Hibernate | 开源项目 | 面向对象设计 | 设计综合知识
  数 据 库MYSQL | SQL Server | Sybase | Oracle | DB2 | Informix | Access | 数据库综合知识
  其他资源:AJAX新技术 | 网站开发 | ERP软件 | OA办公软件 | 商业智能BI | 开发综合知识 | 承接项目 | 项目试用

 
 
Java游戏开发案例-方块游戏
     发布者: 发布时间:2006-09-28

摘要:

现在是Java娱乐和游戏专栏介绍一个游戏的时间了。这一部分由Jeff Friesen展示他的一个叫做“方块”的Java游戏。将向你介绍“方块”,并且用Swing来写这个游戏。另外我还将用另外三个Swing applets来增加音效、视觉特效、以及更多的游戏关卡,以此增强游戏的可玩性。
 
摘要

现在是Java娱乐和游戏专栏介绍一个游戏的时间了。这一部分由Jeff Friesen展示他的一个叫做“方块”的Java游戏。
备注:Java娱乐和游戏专栏里展示的applets都可以用DevSquare这个在线开发工具编译和运行。请在使用之前阅读相应的用户文档(文档可以在资源区里找到)

在90年代初,我在Microsoft的DOS下写了第一个游戏,方块。过了这么多年没再碰过它,不过现在我决定在这个专栏里重新翻看一下这个游戏。

在Java娱乐和游戏专栏的这一部分,我将向你介绍“方块”,并且用Swing来写这个游戏。另外我还将用另外三个Swing applets来增加音效、视觉特效、以及更多的游戏关卡,以此增强游戏的可玩性。

版权声明:任何获得Matrix授权的网站,转载时请务必保留以下作者信息和链接
作者:Jeff Friesen;jerric(作者的blog:http://blog.matrix.org.cn/page/jerric)
原文:http://www.javaworld.com/javaworld/jw-03-2006/jw-0327-funandgames_p.html
Matrix:http://www.matrix.org.cn/resource/article/44/44456_Java+Game.html
关键字:Java;Game

“方块游戏”简介

“方块”游戏使用一个3x3的网格,其中每一个单元格要么显示一种颜色,要么什么都没有(表示为黑色)。游戏开始时一些单元格随机填充颜色,其他的都用默认黑色。只要你在30秒内清除所有单元格的颜色(全部变为黑色,没有其他颜色存在),你就获胜了。

你要么移动鼠标点击一个单元格,要么直接按小键盘的相应数字键,都可以清除那个单元格里的颜色。类似的,如果你所点击的单元格本身是黑色,那么那个单元格就会被填充一种其他颜色。也就是说会有这样的循环:黑色变彩色,彩色变黑色。如果仅仅这样游戏就太容易了,因此我设计的方块游戏是,你对单元格的点击/按键会影响他自己和他的周围单元格,如图1所示。

image
图1. (A) 游戏板布局;(B) 当单元格1改变而受到影响的单元格;(C) 当单元格2改变而受到影响的单元格;(D) 当单元格5改变而受到影响的单元格

图1根据数字小键盘的布局显示了相应的游戏板。例如,数字键7对应左上角的单元格。图1中还展示了当一个单元格改变而受到影响的相应单元格(B、C、D中)。如果改变的是角上的,周围三个单元格也会受到影响(B);如果你改变的是边上的,同一边的其他两个单元格也会受到影响(C);如果改变的是中心的,它东南西北的单元格也都会受影响(D)。

用Java重写

我最早是用C写的“方块”游戏。因为C和Java的语法很相似,所以用Java重写并不困难。在我展示我的第一个“方块”applet的代码之前,你大概想知道界面是怎样的。图2显示了你运行那个applet时的界面。

image
图2. 包含一个游戏板、两个按钮的“方块”游戏界面

游戏板控件是一个类似于“石头剪子”游戏的网格的区域,并且在它下边有一个白色的消息区域。这个控件还有一个边框,这个边框在空间失去焦点的时候是黑色的,在获得焦点时变成蓝色。“Change Square Color”按钮初始时无效,只有游戏开始以后才可用(如果游戏没有进行,也就没理由改变颜色了)。点击“Start”按钮可以开始游戏,如图3所示。

image
图3. “方块”游戏开始以后,在游戏板的消息区域会显示当前剩余的秒数

图3显示了游戏进行时的界面。消息区显示了把所有单元格变为黑色还剩余的秒数。如果这个数字到达0,你就输了。如果你能在此之前把所有单元格变为黑色,那你就赢了。在游戏进行时,你可以点击“Change Square Color”按钮以随机改变各单元的颜色。不过如果你输了或者赢了,那“Change Square Color”按钮会变成无效,而“Start”按钮会恢复有效,这样你就可以开始另一个游戏了。

下边是源代码:
Squares.java
// Squares.java

import java.awt.*;
import java.awt.event.*;
import java.util.Random;
import javax.swing.*;

public class Squares extends JApplet
{
   private void createGUI ()
   {
       // 设定界面
      getContentPane ().setLayout (new FlowLayout ());

      // 创建游戏板控件:每个单元格有40像素宽,默认绿色,并且在获得焦点时边框是蓝色,
   // 而失去焦点时变为黑色。把控件加到content pane里。
      final GameBoard gb;
      gb = new GameBoard (40, Color.green, Color.blue, Color.black);
      getContentPane ().add (gb);

      // 界面其他部分包括两个按钮,他们会被放到一个panel里以作为整体处理。例如,
      // 如果Applet的宽度变大了,两个按钮(而不是一个按钮)都会向游戏板的右侧对齐。
      JPanel p = new JPanel ();

      // 创建“Change Square Color”按钮并设置为无效。只有游戏进行中可以改变颜色。
    final JButton btnChangeSquareColor = new JButton ("Change Square Color");
      btnChangeSquareColor.setEnabled (false);

      // 建立“Change Square Color”按钮的action事件监听器,点击此按钮,会随机改变
   // 单元格的颜色
      ActionListener al;
      al = new ActionListener ()
           {
               public void actionPerformed (ActionEvent e)
               {
                  Random rnd = new Random ();

                  while (true)
                  {
                      int r = rnd.nextInt (256);
                      int g = rnd.nextInt (256);
                      int b = rnd.nextInt (256);

                      // 不使用所有组成原色(红、绿、蓝)都小于192的颜色,因为那不
                      // 容易和背景的黑色区分出来。
                      if (r < 192 && g < 192 && b < 192)
                          continue;

                      gb.changeSquareColor (new Color (r, g, b));

                      break;
                  }
               }
           };

      btnChangeSquareColor.addActionListener (al);

      p.add (btnChangeSquareColor);

      // 创建“Start”按钮
    final JButton btnStart = new JButton ("Start");

      // 建立“Start”按钮的action事件监听器。点击这个按钮时,它本身会变为无效(没
      // 理由开始一个正在进行的游戏),并使“Change Square Color”按钮有效(游戏进
      // 行时可以改变单元格颜色)。“done”事件监控器则用于在游戏结束时使“Start”按
      // 钮有效,以及使“Change Square Color”按钮无效。
      al = new ActionListener ()
           {
               public void actionPerformed (ActionEvent e)
               {
                  btnStart.setEnabled (false);
                  btnChangeSquareColor.setEnabled (true);

                  gb.start (new GameBoard.DoneListener ()
                            {
                                public void done ()
                                {
                                   btnStart.setEnabled (true);
                                   btnChangeSquareColor.setEnabled (false);
                                }
                            });
               }
           };

      btnStart.addActionListener (al);

      // 通过一个panel把两个按钮添加到content pane里边。
      p.add (btnStart);

      getContentPane ().add (p);

      // 在Java 1.4.0里,如果不设置JApplet为焦点循环根节点、并且新建一个焦点遍历
      // 规则的话,你就没有办法把焦点从一个控件切换到另一个。你可以在以下链接看到相关信
      // 息:http://bugs.sun.com/bugdatabase/view_bug.do;:YfiG?bug_id=4705205
      if (System.getProperty ("java.version").equals ("1.4.0"))
      {
          setFocusCycleRoot (true);
          setFocusTraversalPolicy (new LayoutFocusTraversalPolicy ());
      }
   }

   public void init ()
   {
      // Sun的Java教程说Swing控件应该在事件处理线程里创建、查询、以及操作。由于大
      // 多数浏览器都不去调用Applet的主如init()的那些主要方法,我们在那个线程里调
      // 用SwingUtilities.invokeAndWait()以保证在事件处理线程里GUI被正确创建。
      // 我们用invokeAndWait()而不是invokeLater(),因为后者会导致在GUI创建之前
      // init()方法会返回;这会造成一些很难跟踪的applet问题。
      try
      {
          SwingUtilities.invokeAndWait (new Runnable ()
                                        {
                                            public void run ()
                                            {
                                               createGUI ();
                                            }
                                        });
      }
      catch (Exception e)
      {
          System.err.println ("Unable to create GUI");
      }
   }
}

class GameBoard extends JPanel
{
   // 游戏状态
   private final static int INITIAL = 0;
   private final static int INPLAY = 1;
   private final static int LOSE = 2;
   private final static int WIN = 3;

   // 边框尺寸
   private final static int BORDER_SIZE = 5;

   // 当前游戏状态
   private int state = INITIAL;

   // 在单元格边框之间的像素宽度
   private int cellSize;

   // 游戏板的宽度(包含边框)
   private int width;

   // 游戏板及消息区的总计高度(包含边框)
   private int height;

   // 每一个单元格的颜色
   private Color squareColor;

   // 在游戏板拥有焦点时的边框颜色
   private Color focusBorderColor;

   // 在游戏板是去焦点时的边框颜色
   private Color nonfocusBorderColor;

   // 游戏板当前的边框颜色
   private Color borderColor;

   // 单元格状态:true代表特定单元格包含一个有颜色的方块(非黑色)
   private boolean [] cells = new boolean [9];

   // 对游戏结束监听器的引用
   private GameBoard.DoneListener dl;

   // 对倒计时的计时器的引用;这个计数器判断玩家时候获胜/失败,并且通知当游戏结束时通
   // 知DoneListener
   private Timer timer;

   // 计时器的计时数字
   private int counter;

   // 游戏板构造函数
   GameBoard (int cellSize, Color squareColor, Color focusBorderColor,
              Color nonfocusBorderColor)
   {
      this.cellSize = cellSize;

      width = 3*cellSize+2+2*BORDER_SIZE;
      height = width + 50;

      setPreferredSize (new Dimension (width, height));

      this.squareColor = squareColor;


      this.focusBorderColor = focusBorderColor;


      this.nonfocusBorderColor = nonfocusBorderColor;

      this.borderColor = nonfocusBorderColor;

      addFocusListener (new FocusListener ()
                        {
                            public void focusGained (FocusEvent e)
                            {
                               borderColor = GameBoard.this.focusBorderColor;

                               repaint ();
                            }

                            public void focusLost (FocusEvent e)
                            {
                               borderColor = GameBoard.this.nonfocusBorderColor;

                               repaint ();
                            }
                        });

      addKeyListener (new KeyAdapter ()
                      {
                          public void keyTyped (KeyEvent e)
                          {
                             if (state != INPLAY)
                               return;

                             char key = e.getKeyChar ();

                             // 如果玩家通过数字小键盘输入,则将输入映射到相应的单
                             // 元格,并对此单元格及其周围的单元格做出相应变动。
                             if (Character.isDigit (key))
                                 switch (key)
                                 {
                                    case '1': GameBoard.this.toggle (6);
                                              break;

                                    case '2': GameBoard.this.toggle (7);
                                              break;

                                    case '3': GameBoard.this.toggle (8);
                                              break;


                                    case '4': GameBoard.this.toggle (3);
                                              break;

                                    case '5': GameBoard.this.toggle (4);
                                              break;

                                    case '6': GameBoard.this.toggle (5);
                                              break;

                                    case '7': GameBoard.this.toggle (0);
                                              break;

                                    case '8': GameBoard.this.toggle (1);
                                              break;

                                    case '9': GameBoard.this.toggle (2);
                                 }
                          }
                      });

      addMouseListener (new MouseAdapter ()
                        {
                            public void mouseClicked (MouseEvent e)
                            {
                               if (state != INPLAY)
                                 return;

                               // 当鼠标点击游戏板时,确保游戏板获得焦点,以便玩家
                               // 使用键盘作为替代输入方法。
                               GameBoard.this.requestFocusInWindow ();

                               // 哪一个单元格被点击?
                               int cell = GameBoard.this.
                                          mouseToCell (e.getX (), e.getY ());

                               // 如果一个单元格被点击(cell != -1),则翻转那个
                               // 单元格及其邻居的颜色。
                               if (cell != -1)
                                   GameBoard.this.toggle (cell);
                            }
                        });

      setFocusable (true);
   }

   // 修改当前单元格的颜色。注意:这个方法被事件处理线程调用
   void changeSquareColor (Color squareColor)
   {
      if (!SwingUtilities.isEventDispatchThread ())
          return;

      this.squareColor = squareColor;
      repaint ();
   }

   // 绘制组件:先画边框,对后画消息
   public void paintComponent (Graphics g)
   {
      // 推荐首先调用父类的paintComponent()
      super.paintComponent (g);

      // 用当前边框颜色绘制四边
      g.setColor (borderColor);
      for (int i = 0; i < BORDER_SIZE; i++)
           g.drawRect (i, i, width-2*i-1, height-2*i-1);

      // 将组件的游戏板画为黑色(除了边框及消息区)
      g.setColor (Color.black);
      g.fillRect (BORDER_SIZE, BORDER_SIZE, width-2*BORDER_SIZE,
                  width-2*BORDER_SIZE);

      // 画游戏板的水平线
      g.setColor (Color.white);
      g.drawLine (BORDER_SIZE, BORDER_SIZE+cellSize,
                  BORDER_SIZE+width-2*BORDER_SIZE-1, BORDER_SIZE+cellSize);

      g.drawLine (BORDER_SIZE, BORDER_SIZE+2*cellSize+1,
                  BORDER_SIZE+width-2*BORDER_SIZE-1, BORDER_SIZE+2*cellSize+1);

      // 画游戏板的垂直线
      g.drawLine (BORDER_SIZE+cellSize, BORDER_SIZE, BORDER_SIZE+cellSize,
                  BORDER_SIZE+width-2*BORDER_SIZE-1);

      g.drawLine (BORDER_SIZE+2*cellSize+1, BORDER_SIZE,
                  BORDER_SIZE+2*cellSize+1, BORDER_SIZE+width-2*BORDER_SIZE-1);

      // 画方格
      g.setColor (squareColor);
      for (int i = 0; i < cells.length; i++)
      {
           if (cells [i])
           {                          
               int x = BORDER_SIZE+(i%3)*(cellSize+1)+3;
               int y = BORDER_SIZE+(i/3)*(cellSize+1)+3;

               int w = cellSize-6;
               int h = w;

               g.fillRect (x, y, w, h);
           }
      }

      // 将消息区画为白色(在游戏板下方,边框之内)
      g.setColor (Color.white);
      g.fillRect (BORDER_SIZE, width-BORDER_SIZE, width-2*BORDER_SIZE,
                  height-width);

      // 如果游戏板不是初始化状态,则打印出相应消息
      if (state != INITIAL)
      {
          g.setColor (Color.black);

          String text;

          switch (state)
          {
             case LOSE:
                  text = "YOU LOSE!";
                  break;

             case WIN:
                  text = "YOU WIN!";

                  break;

             default:
                  text = "" + counter;
          }

          g.drawString (text, (width-g.getFontMetrics ().stringWidth (text))/2,
                        width-BORDER_SIZE+30);
      }
   }

   // 如果游戏不再进行中,则开始一个新游戏。注册游戏结束监听器,并且初始化一个方块颜色
   // 的图案,同时启动一个间隔为1秒的计时器。注意:这个方法将被事件处理线程调用。
   void start (GameBoard.DoneListener dl)
   {
      if (!SwingUtilities.isEventDispatchThread ())
          return;

      if (state == INPLAY)
          return;

      this.dl = dl;

      Random rnd = new Random ();

      while (true)
      {
         for (int i = 0; i < cells.length; i++)
              cells [i] = rnd.nextBoolean ();

         int counter = 0;
         for (int i = 0; i < cells.length; i++)
              if (cells [i])
                  counter++;

         if (counter != 0 && counter != cells.length)
             break;
      }

      ActionListener al;
      al = new ActionListener ()
           {
               public void actionPerformed (ActionEvent e)
               {
                  // 如果玩家赢了,则通知游戏结束监听器
                  if (state == WIN)
                  {
                      timer.stop ();
                      GameBoard.this.dl.done ();
                      return;
                  }

                  // 如果计时器到达0,则玩家输了;通知游戏结束监听器
                  if (--counter == 0)
                  {
                      state = LOSE;
                      timer.stop ();
                      GameBoard.this.dl.done ();
                  }

                  repaint ();
               }
           };

      timer = new Timer (1000, al);

      state = INPLAY;
      counter = 30;
                
      timer.start ();
   }

   // 将鼠标位置映射到单元格编号[0,8],如果鼠标坐标在任何单元格之外,则返回-1。
   private int mouseToCell (int x, int y)
   {
       // 检查第一列
       if (x >= BORDER_SIZE && x < BORDER_SIZE+cellSize)
       {
           if (y >= BORDER_SIZE && y < BORDER_SIZE+cellSize)
               return 0;

           if (y >= BORDER_SIZE+cellSize+1 && y < BORDER_SIZE+2*cellSize+1)
               return 3;

           if (y >= BORDER_SIZE+2*cellSize+2 && y < BORDER_SIZE+3*cellSize+2)
               return 6;
       }

       // Examine second column.
       // 检查第二列
       if (x >= BORDER_SIZE+cellSize+1 && x < BORDER_SIZE+2*cellSize+1)
       {
           if (y >= BORDER_SIZE && y < BORDER_SIZE+cellSize)
               return 1;

           if (y >= BORDER_SIZE+cellSize+1 && y < BORDER_SIZE+2*cellSize+1)
               return 4;

           if (y >= BORDER_SIZE+2*cellSize+2 && y < BORDER_SIZE+3*cellSize+2)
               return 7;
       }

       // 检查第三列
       if (x >= BORDER_SIZE+2*cellSize+2 && x < BORDER_SIZE+3*cellSize+2)
       {
           if (y >= BORDER_SIZE && y < BORDER_SIZE+cellSize)
               return 2;

           if (y >= BORDER_SIZE+cellSize+1 && y < BORDER_SIZE+2*cellSize+1)
               return 5;

           if (y >= BORDER_SIZE+2*cellSize+2 && y < BORDER_SIZE+3*cellSize+2)
               return 8;
       }

       return -1;
   }

   // 翻转一个单元格及其周围的颜色。文中图1A展示了如下遵循数字键盘布局的单元格映射表:
   // 7 8 9
   // 4 5 6
   // 1 2 3
   //
   // 由于单元格数组从0开始,更容易使用的映射方式如下图所示:
   // 0 1 2
   // 3 4 5
   // 6 7 8
   //
   // 当调用toggle(),调用的代码必须把数字键(1-9)转换为如上所示的索引(0-8)。
   private void toggle (int cell)
   {
      // 切换单元格颜色
      switch (cell)
      {
         case 0: cells [0] = !cells [0];
                 cells [1] = !cells [1];
                 cells [3] = !cells [3];
                 cells [4] = !cells [4];
                 break;

         case 1: cells [0] = !cells [0];
                 cells [1] = !cells [1];
                 cells [2] = !cells [2];
                 break;

         case 2: cells [1] = !cells [1];
                 cells [2] = !cells [2];
                 cells [4] = !cells [4];
                 cells [5] = !cells [5];
                 break;

         case 3: cells [0] = !cells [0];
                 cells [3] = !cells [3];
                 cells [6] = !cells [6];
                 break;

         case 4: cells [0] = !cells [0];
                 cells [2] = !cells [2];
                 cells [4] = !cells [4];
                 cells [6] = !cells [6];
                 cells [8] = !cells [8];
                 break;

         case 5: cells [2] = !cells [2];
                 cells [5] = !cells [5];
                 cells [8] = !cells [8];
                 break;

         case 6: cells [3] = !cells [3];
                 cells [4] = !cells [4];
                 cells [6] = !cells [6];
                 cells [7] = !cells [7];
                 break;

         case 7: cells [6] = !cells [6];
                 cells [7] = !cells [7];
                 cells [8] = !cells [8];
                 break;

         case 8: cells [4] = !cells [4];
                 cells [5] = !cells [5];
                 cells [7] = !cells [7];
                 cells [8] = !cells [8];
      }

      // 检测玩家是否获胜。这段代码放在这儿不和递减计时器及判断玩家是否失败的代码一块儿放到start()方法的事件监听器,否则如果玩家碰巧把所有方块都交换成黑色,而又立刻换成了其它颜色,结果本来该获胜的玩家却被判输了。这种办法不可取。
      int i;
      for (i = 0; i < cells.length; i++)
           if (cells [i])
               break;

      if (i == cells.length)
          state = WIN;

      // 绘制游戏板,以及单元的颜色
      repaint ();
   }

   // 游戏结束监听器的接口定义。Start()方法接受一个实现此接口的对象作为参数。
   interface DoneListener
   {
      void done ();
   }
}


由于已经包含了丰富的注释,我们不再重述。这里我要强调两点。
-我并没有用运行JApplet的public void init()方法的线程创建GUI,而是把创建过程延迟到Swing的事件处理线程;这正是Sun的Java教程里推荐的办法。我通过把所有applet的活动限制在事件处理线程里以避免同步问题。
-在J2SE 1.4(此专栏所使用的版本)之前的版本里,聚焦系统(控制你用TAB键在组件之间切换)有很多缺陷,并且具有平台差异。J2SE 1.4通过提供java.awt.KeyboardFocusManager类、焦点循环根节点、以及焦点遍历策略来修正了聚焦系统。由于J2SE 1.4的JApplet类依赖于Abstract Window Toolkit(AWT)的焦点遍历策略(AppletViewer及Java Plug-in都使用java.awt.Frame类作为JApplet的顶级父类,因此说他们依赖于AWT的焦点遍历策略),因此如果没有外在帮助,你无法在一个JApplet里同TAB键从一个组件切换到另一个。这样的外在帮助包括将J2SE 1.4的JApplet设为焦点循环根节点,以及设定一个焦点遍历策略。此外,我在GameBoard的构造函数里调用setFocusable(true),以保证游戏板组件可以获得焦点。(尽管我们做了这么多,在我们开始游戏的时候,游戏板及两个按钮都没有得到焦点。)这个却现在J2SE 1.4及以后的版本中已经得到纠正。

音效

到目前为止,“方块”游戏并没有想象中的那么有趣。不过我们可以通过增加音效来让游戏更有趣。我们至少可以有三种音效:当玩家切换单元格(及其周围)颜色时的音效,当玩家获胜时的音效,以及当玩家失败时的音效。

我为这些情形准备了一套适当的音效,分别是toggle.au,win.au,lose.au。(我决定使用Sun的声音文件,而不是Microsoft的wave文件,以增强可移植性。)在下边从第二版的Squares.java里摘录的代码片断里,音效文件被加载到声音剪辑里,并且在applet初始化时通过构造函数传递给GameBoard。

// 加载玩家切换单元格颜色、获胜、以及失败时播放的声音剪辑。
AudioClip acToggle;
acToggle = getAudioClip (getClass ().getResource ("toggle.au"));
AudioClip acWin = getAudioClip (getClass ().getResource ("win.au"));
AudioClip acLose = getAudioClip (getClass ().getResource ("lose.au"));

// 创建游戏板组件:每个单元格有40像素宽,方块颜色是绿色,并且游戏板在得到焦点时边框是蓝色,失
// 去焦点时边框是黑色。游戏板组件被添加到content pane里。
final GameBoard gb;
gb = new GameBoard (40, Color.green, Color.blue, Color.black, acToggle,
                    acWin, acLose);


代码片断里使用了getClass().getResource(),以便那些声音文件可以和applet的class文件一并打包到一个Jar里边。

当玩家获胜或者失败时,会播放相应的声音片断;这是在下边从GameBoard的void start(GameBoard.DoneListener dl)里取出的代码片断里实现的:

// 如果玩家获胜,则通知游戏结束监听器。
if (state == WIN)
{
    acWin.play ();
    timer.stop ();
    GameBoard.this.dl.done ();
    return;
}

// 当计时器到达0,则玩家失败,并通知游戏结束监视器。
if (--counter == 0)
{
    state = LOSE;
    acLose.play ();
    timer.stop ();
    GameBoard.this.dl.done ();
}


最后,颜色切换的声音片断会在单元格颜色被切换时播放,这是在以下从GameBoard的private void toggle(int cell)方法里取出的代码片断中实现的:
// 绘制游戏板,以及有颜色的单元格。
repaint ();

// 播放颜色切换的声音。如果你用早期的Java 1.5.0或后期的Java 1.4.x,那有一个bug会阻止很短
// 的声音文件播放出来,因此你可能听不到声音(或者只听到的一声)。你可以在以下链接了解到更多信息:
// http://bugs.sun.com/bugdatabase/view_bug.do;:YfiG?bug_id=6251460
acToggle.play ();


可能你没法克服这个bug,不过一般在J2SE 5.0以及5.x或J2SE 1.4不会需要播放很短的声音片断(你可能顶多只听到一声,仅此而已)。例如,如果你在J2SE5.0下运行第二个(或者第三、第四个)“方块”applet,toggle.au里的声音似乎只播放了一次(我没法播放更多次)。幸运的是,再J2SE 1.4里这个问题并不存在。

视觉特效

另一个增加“方块”有戏可玩性的办法是利用视觉特效。尝试了不同特效以后,我选择了简单的办法:在玩家获胜或失败的时候显示一个从右到左、通过applet中心的滚动消息。例如,当玩家获胜时,如图4所示的“祝贺你!”信息会再applet里水平滚动。

image
图4 当玩家获胜或失败时,一条消息会再applet中部水平滚动

下边从第三版的Squares.java的GameBoard的start()方法里取出的代码片断显示了如何再applet使用这个视觉特效。

// 如果玩家获胜,通知游戏结束监听器,并且动态显示祝贺信息。
if (state == WIN)
{
    acWin.play ();
    timer.stop ();
    GameBoard.this.dl.done ();

    animate ("Congratulations!", Color.red);
    return;
}


// 如果计时器到达0,则玩家失败,通知游戏结束监听器,并动态显示“下次好运”的消息。
if (--counter == 0)
{
    state = LOSE;
    acLose.play ();
    timer.stop ();
    GameBoard.this.dl.done ();
    animate ("Better luck next time!", Color.red);
}


当玩家获胜时,调用animate ("Congratulations!", Color.red);会显示一条滚动的红色“祝贺你!”信息。类似的,调用animate ("Better luck next time!", Color.red);会显示一条“下次好运”的红色滚动信息。接下来这些方法会调用GameBoard的private void animate(String message, Color msgColor)方法来设置合适的动画:

// 通过从左到右滚动一条消息而在玻璃板上显示动画。
private void animate (String message, Color msgColor)
{
   ActionListener al;
   al = new ActionListener ()
        {
            public void actionPerformed (ActionEvent e)
            {
               if (gp.isDone ())
               {
                   timerAnim.stop ();
                   applet.getGlassPane ().setVisible (false);
               }
            }
        };

   timerAnim = new Timer (100, al);

   gp = new GlassPane (message, msgColor);
   applet.setGlassPane (gp);
   applet.getGlassPane ().setVisible (true);

   // 阻止鼠标事件被玻璃板之下的组件截获。
  applet.getGlassPane ().addMouseListener (new MouseAdapter () {});
   applet.getGlassPane ()
         .addMouseMotionListener (new MouseMotionAdapter () {});

   timerAnim.start ();
}


animate()方法通过以下步骤实现动画:创建一个计时器,一个定制的动画组件,在JApplet的新的玻璃板组件(它覆盖了整个applet绘图区)里安装这个动画组件,显示这个新的玻璃板,并且起动计时器。这个定制的动画组件是一个的GameBoard里GlassPane的内部类的实例。

// GlassPane组件类
private class GlassPane extends JPanel
{
   private String text;

   private Color msgColor;

   private boolean first = true;

   private boolean done;

   private int width, height;


   private int scrollTextHeight, scrollTextWidth;

   private int xOffset, yOffset;

   private Font font;

   GlassPane (String text, Color msgColor)
   {
      this.text = text;

      this.msgColor = msgColor;

      setOpaque (false);

      font = new Font ("Serif", Font.BOLD, 24);
   }

   boolean isDone ()
   {
      repaint ();

      return done;
   }

   public void paintComponent (Graphics g)
   {      
      super.paintComponent (g);

      g.setFont (font);

      // 在第一次调用paintComponent()方法时取得玻璃板的宽和高是最容易的途径。
      if (first)
      {
          width = getWidth ();
          height = getHeight ();

          FontMetrics fm = g.getFontMetrics ();

          scrollTextWidth = fm.stringWidth (text);
          scrollTextHeight = fm.getHeight ();

          xOffset = width;
          yOffset = (height-scrollTextHeight)/2;

          first = false;
      }

      // 显示文字的阴影。
      g.setColor (Color.gray);
      g.drawString (text, xOffset+1, yOffset+1);

      // 显示文字。
      g.setColor (msgColor);
      g.drawString (text, xOffset, yOffset);

      // 计算下一个最左边的位置。如果所有的文字都已滚动出显示框的左侧,设置完成标志。
      xOffset -= 10;
      if (xOffset < -scrollTextWidth)
          done = true;
   }
}


当整段消息滚动到applet窗口的左侧(原文是右侧??),一个done变量北设置为done。在animate()方法的事件监听器里会探测这一改变,并且相应停止计时器,并隐藏玻璃板。

尽管我对动画基本满意,不过还有两处可以改进。这可以作为给你的练习:
-尽管你对玻璃板之下的组件屏蔽了鼠标事件,但却没有屏蔽TAB键或者其他键盘事件。你可以修改第三和第四个applet,以使消息滚动时游戏无法开始或响应用户操作。
-如果在消息滚动时如果“Start”按钮可用,会让人产生疑惑。这是由于GameBoard.this.dl.done();方法在动画完成之前被调用。修改第三个第四个“方块”applet,保证GameBoard.this.dl.done();在动画完成之前不被调用。

扩展关卡

尽管音效和视觉效果可以增加“方块”游戏的可玩性,但是玩多了还是会让人觉得无聊。一旦你发现了在单元格里适当的规律,你就可以长胜不败,从而失去了玩游戏的乐趣。为了避免这一点,引入更多的游戏关卡是很必要的。

我做出了第四个“方块”applet,其中包含了四个关卡。第一关如同前三关一样,显示的图案是方块;第二关显示的是立方体(看点不一样的东西)。第三、第四关继续分别显示方块和立方体,不过略有不同。在这些关卡里,有一个单元格有意不被显示出来。因为要花时间才能发现不被显示的单元格,在30秒内要把所有单元格变黑就不是那么容易了。你每赢一关,就可进入下一关;不过如果你输了,就会退回第一关重新开始。图5展示了游戏的第二关。

image
图5. 当前关卡的名字显示在消息区里

除了加入多个游戏关卡之外,我还戏剧化的修改了游戏板组件。我用一个Swing的边框取代了原先的黑-兰边框,并且在消息区里显示当前的游戏关卡。此外,当然还有立方体图案。

编写游戏关卡的支持代码很简单。下边从GameBoard的start()方法里取出的代码片断展示了如何在玩家点击“Start”按钮时游戏如何选择下一关的。

timer = new Timer (1000, al);
// 基于前一关的输出状态,调整相应的当前关卡。如果是第一次进行游戏,则是用默认关卡level = 1。
if (state == WIN)
{
    if (++level > MAXLEVELS)
        level = 1;
}
else
if (state == LOSE)
    level = 1;

state = INPLAY;
counter = 30;
                
timer.start ();


这个被创建的计时器就是游戏秒数的倒计时器。其它大部分关卡相关的代码可以在GameBoard的public void paintComponent(Graphics g)方法里找到。

我为你提供了以下练习,你可以试着自己完成:
-加入一关,并显示不同的形状。
-设计一关来显示16(4 x 4),25(5 x 5),或者更多的方块/立方体。你该采用什么样的颜色切换规则?玩家还可以用键盘操作么?如何去做?
-当玩家完成了第四关,游戏却什么也没做就回到了第一关,这真是糟透了。你可以在这时候家电什么有趣的东西呢?
-大部分游戏显示一个数字的分数,并提供一个排行榜。你觉得什么样的分数比较适合“方块”游戏?你怎样来处理记分呢?

结论

由于“方块”游戏是我写的第一个电脑游戏,所以我决定作为我在这介绍的第一个游戏。在之后的Java娱乐和游戏专栏里,我将和你一同分享其他一些更有趣的游戏。

Jeff Friesen是C,C++及Java技术的自由软件开发者和讲师。

资源
-下载本文的相关代码:         http://www.javaworld.com/javaworld/jw-03-2006/games/jw-0327-funandgames.zip
-你可以利用再现开发工具DevSquare来编译和运行Java游戏和娱乐专栏里的applet: http://www.javaworld.com/javaworld/jw-12-2005/jw-devsquare.html
-DevSquare: http://www.devsquare.com/index.html
-Matrix:http://www.matrix.org.cn
-Javaworld:http://www.javaworld.com
(转载文章请保留出处:北天JAVA技术网(www.java114.com))
 
更多精彩文章:
问题集锦:Servlets/JSP开发技术问答
数据库设计5步骤
struts国际化程序尝试
2006 Sun科技日,走近JavaEE5
Sun Java培训教程中文版
浅谈Java中的垃圾回收
 
最近评论:
        
bnnpw
lace kitchen curtains kitchen window curtains sunflower kitchen curtains pink and white kitchen curtains retro red kitchen curtains lace kitchen curtains [url=http://inorthport.com/812.html]lace kitchen curtains[/url] sunflower kitchen curtains lace kitchen curtains pink and white kitchen curtains kitchen window curtains retro red kitchen curtains map of the pga tour serial number for tiger woods 2007 pga game pga golf courses that tiger woods played at laterra pga tour spa st augustine alabama pga golf courses alabama pga golf courses [url=http://inorthport.com/1293.html]alabama pga golf courses[/url] pga golf courses that tiger woods played at map of the pga tour serial number for tiger woods 2007 pga game laterra pga tour spa st augustine alabama pga golf courses simple salad recipes salad recipes recipes for broccoli salad steak salad recipes where can i find salad recipes salad recipes [url=http://inorthport.com/1383.html]salad recipes[/url] simple salad recipes recipes for broccoli salad steak salad recipes where can i find salad recipes salad recipes anna nichole smith anna nichole smite anna nichole cpr anna nichole smith autopsy results anna nichole smith lupus anna nichole smith lupus [url=http://inorthport.com/721.html]anna nichole smith lupus[/url] anna nichole smite anna nichole smith lupus anna nichole smith autopsy results anna nichole cpr anna nichole smith groundhog myspace graphics groundhog day activity malverne groundhog free lesson plans groundhog day groundhog day quiz groundhog day activity [url=http://inorthport.com/925.html]groundhog day activity[/url] groundhog day activity free lesson plans groundhog day malverne groundhog groundhog myspace graphics groundhog day quiz bottled party favors racing party favors godinger silver goblets party favors wholesale men's party favors party favors wholesale [url=http://inorthport.com/1130.html]party favors wholesale[/url] men's party favors racing party favors godinger silver goblets party favors wholesale bottled party favors free downloads web designer software pittsburgh web designer color charts for the web designer custom web site designer koh tao web designer free downloads web designer software [url=http://inorthport.com/397.html]free downloads web designer software[/url] free downloads web designer software color charts for the web designer custom web site designer koh tao web designer pittsburgh web designer rem fan club 280 rem ackley reloading data rem songs imitation of life rem the street where you live rem rem fan club [url=http://inorthport.com/1264.html]rem fan club[/url] rem fan club rem songs the street where you live rem 280 rem ackley reloading data imitation of life rem usa today news and information home page car rental usa usa trains new york central j1e hudson berretta usa golf usa usa today news and information home page [url=http://inorthport.com/356.html]usa today news and information home page[/url] usa today news and information home page golf usa usa trains new york central j1e hudson car rental usa berretta usa animated birthday cards sim cards chinese greeting cards valentine greeting cards church pledge card sim cards [url=http://inorthport.com/674.html]sim cards[/url] chinese greeting cards animated birthday cards valentine greeting cards sim cards church pledge card affordable air beds free shipping discount air bed mattress air mattress bed for camping air beds on a frame cloud 9 air mattress beds outdoor living patio furniture cloud 9 air mattress beds outdoor living patio furniture [url=http://inorthport.com/137.html]cloud 9 air mattress beds outdoor living patio furniture[/url] discount air bed mattress affordable air beds free shipping air beds on a frame air mattress bed for camping cloud 9 air mattress beds outdoor living patio furniture audio version of at last by etta james etta james damn your eyes lyrics at last etta james karaoke midi file for at last by etta james etta james at last my love has come along at last etta james [url=http://inorthport.com/199.html]at last etta james[/url] etta james damn your eyes lyrics audio version of at last by etta james etta james at last my love has come along karaoke midi file for at last by etta james at last etta james patti and james laughren birdland by patti smith patti labelle where love begins patti labelle receipe patti smith - gloria birdland by patti smith [url=http://inorthport.com/806.html]birdland by patti smith[/url] patti smith - gloria patti and james laughren birdland by patti smith patti labelle where love begins patti labelle receipe how to wash table linens gelato sheet set discontinued linens and things ed's linens vancouver brooks gliders laurens linens coupons ed's linens vancouver [url=http://inorthport.com/989.html]ed's linens vancouver[/url] brooks gliders gelato sheet set discontinued linens and things how to wash table linens ed's linens vancouver laurens linens coupons army boys army officer outside employment army nurse us army patches army technology army technology [url=http://inorthport.com/1424.html]army technology[/url] army nurse army technology army officer outside employment army boys us army patches numb lincoln park yellowstone national park allison parks shailer park realestate marymoor park redmond wa concert schedule numb lincoln park [url=http://inorthport.com/1440.html]numb lincoln park[/url] shailer park realestate numb lincoln park allison parks marymoor park redmond wa concert schedule yellowstone national park plastic canvas tote canvas lace up deck shoes canvas shirts canvas deck chair canvas bible covers canvas shirts [url=http://inorthport.com/1069.html]canvas shirts[/url] canvas deck chair canvas bible covers canvas lace up deck shoes canvas shirts plastic canvas tote how to avoid pregnancy stretch marks underarms stretch marks i've got stretch marks on my boobs when will they go away retin-a micro and stretch marks preventing stretch marks how to avoid pregnancy stretch marks [url=http://inorthport.com/729.html]how to avoid pregnancy stretch marks[/url] preventing stretch marks retin-a micro and stretch marks underarms stretch marks i've got stretch marks on my boobs when will they go away how to avoid pregnancy stretch marks frank lloyd wright stained glass patterns stained glass patterns mandalas stained glass patterns roses patterns for stained glass free geometric stained glass patterns stained glass patterns roses [url=http://inorthport.com/952.html]stained glass patterns roses[/url] stained glass patterns roses patterns for stained glass stained glass patterns mandalas frank lloyd wright stained glass patterns free geometric stained glass patterns nail salon video salon spa equipment salon razor finishes haircuts calico critters beauty salon upscale hair salons calico critters beauty salon [url=http://inorthport.com/608.html]calico critters beauty salon[/url] upscale hair salons salon spa equipment salon razor finishes haircuts calico critters beauty salon nail salon video
        
axkdp
desktop pictures for free daffodil desktop pictures desktop pictures of mathew mcconaughey military desktop pictures problem with desktop pictures windows xp military desktop pictures [url=http://tailflow.net/791.html]military desktop pictures[/url] military desktop pictures desktop pictures for free daffodil desktop pictures problem with desktop pictures windows xp desktop pictures of mathew mcconaughey cyber candy cyber jenna tila nguyen play cyber secure cyber software months badger lee trustpoc acl2 power of love cyber nation network mp3 power of love cyber nation network mp3 [url=http://tailflow.net/962.html]power of love cyber nation network mp3[/url] cyber jenna power of love cyber nation network mp3 secure cyber software months badger lee trustpoc acl2 cyber candy tila nguyen play cyber steve madden street steve madden lipstick steve madden sweater clogs steve madden rhinestone flip flops steve madden shsandals steve madden sweater clogs [url=http://tailflow.net/779.html]steve madden sweater clogs[/url] steve madden street steve madden shsandals steve madden sweater clogs steve madden rhinestone flip flops steve madden lipstick real mermaids sightings mermaids and faries crystal mermaids how do mermaids reproduce mermaids from charmed mermaids and faries [url=http://tailflow.net/588.html]mermaids and faries[/url] real mermaids sightings crystal mermaids mermaids and faries mermaids from charmed how do mermaids reproduce anti wrinkle cream review generic wrinkle and stretch mark cream reviews on wrinkle creams perscription wrinkle creams do anti wrinkle creams work perscription wrinkle creams [url=http://tailflow.net/1124.html]perscription wrinkle creams[/url] perscription wrinkle creams reviews on wrinkle creams anti wrinkle cream review generic wrinkle and stretch mark cream do anti wrinkle creams work map of saltillo mexico underwater maps of the gulf of mexico political maps of mexico map of northern mexico physical maps of mexico map of northern mexico [url=http://tailflow.net/1117.html]map of northern mexico[/url] map of northern mexico map of saltillo mexico physical maps of mexico underwater maps of the gulf of mexico political maps of mexico windows 2000 full version windows 2000 continous reboot windows 2000 won't boot recovery console free windows 2000 pro dvd player download windows 2000 system errors free windows 2000 pro dvd player download [url=http://tailflow.net/635.html]free windows 2000 pro dvd player download[/url] windows 2000 system errors windows 2000 won't boot recovery console windows 2000 continous reboot free windows 2000 pro dvd player download windows 2000 full version mp3 ringtones almost free ringtones free downloadable ringtones dj hixxy ringtones treo 650 ringtones treo 650 ringtones [url=http://tailflow.net/425.html]treo 650 ringtones[/url] dj hixxy ringtones free downloadable ringtones mp3 ringtones almost free ringtones treo 650 ringtones movie fiddler on the roof fiddler on the roof collector's edition layer fiddler on the roof do you love me sunrise sunset mp3 fiddler on the roof stars of fiddler on the roof stars of fiddler on the roof [url=http://tailflow.net/717.html]stars of fiddler on the roof[/url] stars of fiddler on the roof fiddler on the roof collector's edition layer fiddler on the roof do you love me sunrise sunset mp3 fiddler on the roof movie fiddler on the roof map of balkan peninsula europe map of central europe seventh and eighth centuries of europe maps topographical map of europe map of europe during world war 1 topographical map of europe [url=http://tailflow.net/168.html]topographical map of europe[/url] map of central europe seventh and eighth centuries of europe maps map of europe during world war 1 topographical map of europe map of balkan peninsula europe american west histroy forums american west u.s marshals american west vacations american homes builders- west virginia public hangings in the american west american west u.s marshals [url=http://tailflow.net/1267.html]american west u.s marshals[/url] american west histroy forums american homes builders- west virginia public hangings in the american west american west vacations american west u.s marshals estimated living costs in pattaya south pattaya pattaya maps taxi from new international airport to pattaya pattaya people taxi from new international airport to pattaya [url=http://tailflow.net/437.html]taxi from new international airport to pattaya[/url] pattaya people south pattaya pattaya maps estimated living costs in pattaya taxi from new international airport to pattaya theology & numerology online numerology daily matrix, numerology numerology forecast for 2007 for number 2 numerology theology & numerology [url=http://tailflow.net/458.html]theology & numerology[/url] theology & numerology daily matrix, numerology numerology forecast for 2007 for number 2 online numerology numerology yvonne ysasi yvonne johnson mrs yvonne yvonne randall yvonne lapointe yvonne ysasi [url=http://tailflow.net/930.html]yvonne ysasi[/url] mrs yvonne yvonne randall yvonne lapointe yvonne johnson yvonne ysasi folding table for couch leather recliner couch with cup holder brown suede couch free casting couch 3 sum couch brown suede couch [url=http://tailflow.net/1126.html]brown suede couch[/url] 3 sum couch free casting couch brown suede couch folding table for couch leather recliner couch with cup holder anastasia thalia thalia vrachopoulos thalia mpg thalia hall chicago thalia fat joe i want you thalia vrachopoulos [url=http://tailflow.net/1077.html]thalia vrachopoulos[/url] thalia mpg thalia fat joe i want you thalia vrachopoulos anastasia thalia thalia hall chicago gymboree pallet gymboree play king of prussia gymboree 20% discount gymboree lines gymboree rockville gymboree 20% discount [url=http://tailflow.net/1382.html]gymboree 20% discount[/url] gymboree 20% discount gymboree rockville gymboree lines gymboree pallet gymboree play king of prussia master p silkk tha shocker c-murder photos ice-cream man master p master p - pass me da green basketball master p master p ghetto hereos music video ice-cream man master p [url=http://tailflow.net/1038.html]ice-cream man master p[/url] master p silkk tha shocker c-murder photos basketball master p ice-cream man master p master p - pass me da green master p ghetto hereos music video free vegas shows las vegas talent shows las vegas shows in april gothic wholesalers trade shows in las vegas las vegas magic shows las vegas shows in april [url=http://tailflow.net/617.html]las vegas shows in april[/url] gothic wholesalers trade shows in las vegas las vegas talent shows free vegas shows las vegas shows in april las vegas magic shows stepping stone realty greenwood realty in greenwood, sc bob horne realty edina realty realty companies greenwood realty in greenwood, sc [url=http://tailflow.net/760.html]greenwood realty in greenwood, sc[/url] greenwood realty in greenwood, sc realty companies edina realty bob horne realty stepping stone realty
        
dsxjp
clamp manga comics adalet bus-drop cable clamp mitee bite clamp cascade clamp bci butterfly valve clamp style mitee bite clamp [url=http://walsheet.net/883.html]mitee bite clamp[/url] bci butterfly valve clamp style clamp manga comics adalet bus-drop cable clamp cascade clamp mitee bite clamp retro scrapbooks 8x8 scrapbooks texas a&m scrapbooks learn how to make scrapbooks mulbury scrapbooks uk texas a&m scrapbooks [url=http://walsheet.net/1175.html]texas a&m scrapbooks[/url] 8x8 scrapbooks mulbury scrapbooks uk retro scrapbooks texas a&m scrapbooks learn how to make scrapbooks katrina house rentals fannie mae sallie mae unmet needs scholarship forms vanessa mae white bird sally mae student loans forbearance what did addie mae collins do
        
dcvgd
where was the declaration of independence signed signing of the declaration of independence flag words of declaration of independence five people who signed the declaration of independence printable declaration of independence printable declaration of independence [url=http://rideness.com/339.html]printable declaration of independence[/url] words of declaration of independence where was the declaration of independence signed five people who signed the declaration of independence signing of the declaration of independence flag printable declaration of independence mauritius mao hotel mauritius spa trade policies between india and mauritius ireo mauritius cheap fares cheapest airfares mauritius trade policies between india and mauritius [url=http://rideness.com/173.html]trade policies between india and mauritius[/url] trade policies between india and mauritius mauritius mao cheap fares cheapest airfares mauritius hotel mauritius spa ireo mauritius h amp r block taxes online tax preparation tax software filing detroit city taxes online file taxes online berkeley county online taxes file taxes free online filing detroit city taxes online [url=http://rideness.com/797.html]filing detroit city taxes online[/url] berkeley county online taxes file taxes free online filing detroit city taxes online h amp r block taxes online tax preparation tax software file taxes online top 500 classic rock classic rock qoutes dragon rock karate classic tenacious d- classic rock 80's classic rock dragon rock karate classic [url=http://rideness.com/42.html]dragon rock karate classic[/url] classic rock qoutes dragon rock karate classic top 500 classic rock 80's classic rock tenacious d- classic rock discovery channel skeleton files discovery channel health discovery kids channel discovery channel futur car discovery health channel challenge discovery health channel challenge [url=http://rideness.com/1093.html]discovery health channel challenge[/url] discovery channel skeleton files discovery channel health discovery health channel challenge discovery channel futur car discovery kids channel blonde hair colors blacks blondes 34dd blonde marilyn forever blonde the movie blonde hair cutie marilyn forever blonde the movie [url=http://rideness.com/1237.html]marilyn forever blonde the movie[/url] 34dd blonde blacks blondes marilyn forever blonde the movie blonde hair cutie blonde hair colors high pitch whistles african wood whistles wwii navy whistles elf whistles referee whistles african wood whistles [url=http://rideness.com/1018.html]african wood whistles[/url] referee whistles african wood whistles wwii navy whistles high pitch whistles elf whistles scrap metal wind chimes homemade wind chimes arizone wind chimes mountain chimes wind chimes building wind chimes building wind chimes [url=http://rideness.com/1263.html]building wind chimes[/url] building wind chimes homemade wind chimes scrap metal wind chimes arizone wind chimes mountain chimes wind chimes south shore dental implants dental implants and bridges where can i get inexpensive dental implants dental implants santa monica dental implants bowling green area dental implants bowling green area [url=http://rideness.com/994.html]dental implants bowling green area[/url] dental implants bowling green area where can i get inexpensive dental implants dental implants santa monica south shore dental implants dental implants and bridges the boondock saints tshirts regimental tshirts tshirts of the 70's academic team tshirts funny state tshirts tshirts of the 70's [url=http://rideness.com/1489.html]tshirts of the 70's[/url] academic team tshirts regimental tshirts funny state tshirts tshirts of the 70's the boondock saints tshirts sushi canyon springs riverside california all sushi japanese sushi rice sushi nami restaurant+alpharetta sushi from japan sushi nami restaurant+alpharetta [url=http://rideness.com/742.html]sushi nami restaurant+alpharetta[/url] japanese sushi rice sushi canyon springs riverside california all sushi sushi nami restaurant+alpharetta sushi from japan diamond wedding ring princess cut engagement and wedding ring set how to wear wedding ring italian wedding rings tattoo wedding rings engagement and wedding ring set [url=http://rideness.com/689.html]engagement and wedding ring set[/url] engagement and wedding ring set italian wedding rings how to wear wedding ring tattoo wedding rings diamond wedding ring princess cut where do i get magic the gathering cards magic online cards trading ninja magic cards magic white cards cost of magic the gathering cards magic online cards trading [url=http://rideness.com/1284.html]magic online cards trading[/url] magic white cards ninja magic cards where do i get magic the gathering cards magic online cards trading cost of magic the gathering cards kids camps for summer in maryland summer camps for kids in ontario canada area horse summer camps for kids denver co summer camps for adhd kids halifax summer camps for seattle kids horse summer camps for kids denver co [url=http://rideness.com/748.html]horse summer camps for kids denver co[/url] kids camps for summer in maryland horse summer camps for kids denver co summer camps for adhd kids halifax summer camps for seattle kids summer camps for kids in ontario canada area danbury mint fantasy chess danbury mint jewelry danbury mint mann musical porcelain dolls danbury mint wild spirit mugs christmas deer candlesticks danbury mint danbury mint jewelry [url=http://rideness.com/285.html]danbury mint jewelry[/url] danbury mint jewelry danbury mint wild spirit mugs christmas deer candlesticks danbury mint danbury mint fantasy chess danbury mint mann musical porcelain dolls how to install factory gps unit for hummer h2 h2 hummer lease deals side hummer h2 magazine hummer h2 hummer h2 pictures magazine hummer h2 [url=http://rideness.com/163.html]magazine hummer h2[/url] h2 hummer lease deals side hummer h2 how to install factory gps unit for hummer h2 magazine hummer h2 hummer h2 pictures brunswick maine maid service brides maids gifts moon maid advice maid living lovin maid brunswick maine maid service [url=http://rideness.com/242.html]brunswick maine maid service[/url] brides maids gifts moon maid advice maid brunswick maine maid service living lovin maid finger eleven paralyzer video new finger eleven suffocate- finger eleven finger eleven famous one thing - finger eleven finger eleven paralyzer video [url=http://rideness.com/155.html]finger eleven paralyzer video[/url] one thing - finger eleven finger eleven famous new finger eleven suffocate- finger eleven finger eleven paralyzer video ashley play boy play boy free videos play boy manchen russian play boy nintendo game boy advance legend of zelda rules of play ashley play boy [url=http://rideness.com/1165.html]ashley play boy[/url] nintendo game boy advance legend of zelda rules of play play boy free videos play boy manchen ashley play boy russian play boy prayer diary pray for an hour lords prayer wedding prayers tabernacle of prayer for all people, inc potentate of prayer pray for an hour lords prayer [url=http://rideness.com/778.html]pray for an hour lords prayer[/url] prayer diary potentate of prayer wedding prayers pray for an hour lords prayer tabernacle of prayer for all people, inc
        
冰封的往事!
wow power leveling,wow gold,wow power leveling,wow gold max(7177)
        
xapei
black racoon racoon mountain plant chattanooga tn racoon recipes rockey racoon beatles how to tan a racoons tail rockey racoon beatles [url=http://rearrounds.net/224.html]rockey racoon beatles[/url] racoon mountain plant chattanooga tn black racoon rockey racoon beatles racoon recipes how to tan a racoons tail fox's pizza coupons pudge brothers pizza coupons pan pizza coupons free pizza & brew coupons papa john pizza coupons free pizza & brew coupons [url=http://rearrounds.net/114.html]free pizza & brew coupons[/url] pan pizza coupons fox's pizza coupons pudge brothers pizza coupons free pizza & brew coupons papa john pizza coupons moon's orbital path instatrak orbital surgery orbital area contusion orbital engine orbital ct of eye moon's orbital path [url=http://rearrounds.net/36.html]moon's orbital path[/url] moon's orbital path orbital engine instatrak orbital surgery orbital ct of eye orbital area contusion polar bears canada is polar bear a bear coca cola polar bear commercial risks of losing polar bears funny polar bears polar bears canada [url=http://rearrounds.net/1152.html]polar bears canada[/url] is polar bear a bear funny polar bears polar bears canada risks of losing polar bears coca cola polar bear commercial crazy in love by beyonce beyonces beyonce irraplacible beyonce see through jennifer beyonce anika at the oscars crazy in love by beyonce [url=http://rearrounds.net/474.html]crazy in love by beyonce[/url] beyonce irraplacible jennifer beyonce anika at the oscars beyonces crazy in love by beyonce beyonce see through timezone map united states united states road map reproducible united states maps map of united states with longitude and latitude map + united states reproducible united states maps [url=http://rearrounds.net/384.html]reproducible united states maps[/url] map + united states map of united states with longitude and latitude united states road map reproducible united states maps timezone map united states how to waterproof coasters wool drink coasters photo frame glass coasters roller coasters g forces roller coasters torn down roller coasters g forces [url=http://rearrounds.net/1415.html]roller coasters g forces[/url] how to waterproof coasters wool drink coasters photo frame glass coasters roller coasters g forces roller coasters torn down aaa shower heads shower heads overhead quality hand held shower heads can you replace exsisting shower heads with different heads ondine shower heads quality hand held shower heads [url=http://rearrounds.net/340.html]quality hand held shower heads[/url] ondine shower heads aaa shower heads shower heads overhead can you replace exsisting shower heads with different heads quality hand held shower heads easy crown molding easy payday loans easy baked chicken eight easy steps mp3 download easy christmas cookies eight easy steps mp3 download [url=http://rearrounds.net/287.html]eight easy steps mp3 download[/url] eight easy steps mp3 download easy payday loans easy baked chicken easy christmas cookies easy crown molding elliptical trainers ratings vision fitness elliptical trainer v treadmill spirit elliptical trainers consumer reports elliptical trainer life fitness x5i elliptical cross trainer elliptical trainer v treadmill [url=http://rearrounds.net/462.html]elliptical trainer v treadmill[/url] elliptical trainers ratings vision fitness spirit elliptical trainers life fitness x5i elliptical cross trainer elliptical trainer v treadmill consumer reports elliptical trainer at last lyrics make real money at home work at home home business opportunity men at work mp3 last week at jenni last week at jenni [url=http://rearrounds.net/1170.html]last week at jenni[/url] at last lyrics work at home home business opportunity make real money at home last week at jenni men at work mp3 funeral for a friend she drove me to daytime red is the new black - funeral for a friend funeral for a friend covers hospitality funeral for a friend miracle of christmas funeral for a friend funeral for a friend she drove me to daytime [url=http://rearrounds.net/697.html]funeral for a friend she drove me to daytime[/url] miracle of christmas funeral for a friend funeral for a friend she drove me to daytime funeral for a friend covers hospitality funeral for a friend red is the new black - funeral for a friend bauhaus mp3 bauhaus lamp bauhaus liberty hardware bauhaus cappella mp3 bauhaus archive bauhaus lamp [url=http://rearrounds.net/362.html]bauhaus lamp[/url] bauhaus mp3 bauhaus lamp bauhaus archive bauhaus cappella mp3 bauhaus liberty hardware parallel speed pots benjamin carroll pots sadler tank tea pots ww1 miniature flower pots copper pots and pans copper pots and pans [url=http://rearrounds.net/434.html]copper pots and pans[/url] benjamin carroll pots copper pots and pans miniature flower pots parallel speed pots sadler tank tea pots ww1 does taking augmentin cause dizziness tiredness and dizziness in children head injury and dizziness sinus infection and dizziness yoga dizziness nausea tiredness and dizziness in children [url=http://rearrounds.net/457.html]tiredness and dizziness in children[/url] head injury and dizziness yoga dizziness nausea sinus infection and dizziness does taking augmentin cause dizziness tiredness and dizziness in children habitat for humanity events jim glick habitat for humanity lancaster habitat for humanity shirts rv'ers, habitat for humanity habitat for humanity illinois jim glick habitat for humanity lancaster [url=http://rearrounds.net/546.html]jim glick habitat for humanity lancaster[/url] rv'ers, habitat for humanity habitat for humanity events jim glick habitat for humanity lancaster habitat for humanity shirts habitat for humanity illinois online college arcade games for free free motorola space arcade games free arcade games download fruit machine play arcade shooting games online free free arcade and puzzle games online play arcade shooting games online free [url=http://rearrounds.net/576.html]play arcade shooting games online free[/url] free motorola space arcade games online college arcade games for free play arcade shooting games online free free arcade games download fruit machine free arcade and puzzle games online drunken links drunken boat lyrics drunken woman the drunken fish and st. louis drunken trees drunken boat lyrics [url=http://rearrounds.net/665.html]drunken boat lyrics[/url] drunken boat lyrics drunken links drunken woman the drunken fish and st. louis drunken trees ub 6225 jeff cianci ubs retires ubs wage and labor class action lawsuit ubs song ub sj?hunden ubs song [url=http://rearrounds.net/175.html]ubs song[/url] jeff cianci ubs retires ubs song ub 6225 ub sj?hunden ubs wage and labor class action lawsuit learning quotes affordable family health individual insurance quote life insurance rate quote car insurance online quotes library quotes affordable family health individual insurance quote [url=http://rearrounds.net/695.html]affordable family health individual insurance quote[/url] library quotes life insurance rate quote affordable family health individual insurance quote learning quotes car insurance online quotes
        
gleeh
bathroom vanities retail discount bathroom vanities discount 48 bathroom vanities westhaven bathroom vanities bathroom vanities in wilkes-barre, pa 48 bathroom vanities [url=http://tailbay.net/1011.html]48 bathroom vanities[/url] 48 bathroom vanities bathroom vanities discount bathroom vanities retail discount bathroom vanities in wilkes-barre, pa westhaven bathroom vanities free crochet patterns baby blankets free crochet purse patterns free crochet xmas candycane patterns free crochet and knitting pattern free crochet wolf afghan pattern free crochet patterns baby blankets [url=http://tailbay.net/543.html]free crochet patterns baby blankets[/url] free crochet and knitting pattern free crochet xmas candycane patterns free crochet wolf afghan pattern free crochet patterns baby blankets free crochet purse patterns chain saws ebay chain saws small chain saws best prices on chain saws house of chain saws chain saws ebay [url=http://tailbay.net/739.html]chain saws ebay[/url] chain saws ebay house of chain saws chain saws small chain saws best prices on chain saws rc chopper free chopper motorcycle icon download orange county choppers in america tour west coast choppers full size comforter flyrite choppers free chopper motorcycle icon download [url=http://tailbay.net/435.html]free chopper motorcycle icon download[/url] west coast choppers full size comforter orange county choppers in america tour flyrite choppers free chopper motorcycle icon download rc chopper crochet quilt patterns three dimensional quilt patterns open gate quilt patterns bareroots quilt patterns free mardigras quilt patterns three dimensional quilt patterns [url=http://tailbay.net/819.html]three dimensional quilt patterns[/url] bareroots quilt patterns crochet quilt patterns free mardigras quilt patterns open gate quilt patterns three dimensional quilt patterns where to buy cloth diapers in seattle preloved cloth diapers why cloth diapers wholesale only cloth diapers liz's cloth diapers where to buy cloth diapers in seattle [url=http://tailbay.net/1358.html]where to buy cloth diapers in seattle[/url] liz's cloth diapers preloved cloth diapers wholesale only cloth diapers why cloth diapers where to buy cloth diapers in seattle agility with glucosamine glucosamine chondroitin powder universal nutrition glucosamine glucosamine sulfate effective for osteoartritis treatment glucosamine chonroitin dangers universal nutrition glucosamine [url=http://tailbay.net/149.html]universal nutrition glucosamine[/url] glucosamine chonroitin dangers glucosamine chondroitin powder agility with glucosamine universal nutrition glucosamine glucosamine sulfate effective for osteoartritis treatment womens civil war clothing womens clothing of the 1940's size 2x womens clothing womens cotton clothing womens cheeta leopard print clothing womens civil war clothing [url=http://tailbay.net/539.html]womens civil war clothing[/url] womens cheeta leopard print clothing womens clothing of the 1940's size 2x womens clothing womens cotton clothing womens civil war clothing impala fuel filter replacement 3lt chevrolet impala 2006 red rebates 64 impala parts cheap fuel pressure regulator chevrolet impala 1969 chevrolet impala ss 427 for sale 3lt chevrolet impala 2006 red rebates [url=http://tailbay.net/570.html]3lt chevrolet impala 2006 red rebates[/url] fuel pressure regulator chevrolet impala 3lt chevrolet impala 2006 red rebates 1969 chevrolet impala ss 427 for sale 64 impala parts cheap impala fuel filter replacement woman maroon 5 maroon 5 wasted years lyrics maroon 5 harder to breathe mp3 maroon 5 song about jane lyric lyrics maroon 5 maroon 5 song about jane lyric [url=http://tailbay.net/85.html]maroon 5 song about jane lyric[/url] lyrics maroon 5 maroon 5 song about jane lyric woman maroon 5 maroon 5 wasted years lyrics maroon 5 harder to breathe mp3 desk lamps white glass ikea desk crystal desk stapler horner desk jotto desk jotto desk [url=http://tailbay.net/1390.html]jotto desk[/url] jotto desk glass ikea desk desk lamps white crystal desk stapler horner desk ulcerative colitis natural remedy recommended probiotic for ulcerative colitis reseach ulcerative colitis nicotine, ulcerative colitis ulcerative colitis in children recommended probiotic for ulcerative colitis [url=http://tailbay.net/1433.html]recommended probiotic for ulcerative colitis[/url] nicotine, ulcerative colitis ulcerative colitis natural remedy recommended probiotic for ulcerative colitis reseach ulcerative colitis ulcerative colitis in children cartridge fax hp toner born blonde toner lexmark laser toner cartridge us jim toner real estate innojet toner lexmark laser toner cartridge us [url=http://tailbay.net/455.html]lexmark laser toner cartridge us[/url] lexmark laser toner cartridge us jim toner real estate born blonde toner cartridge fax hp toner innojet toner solutions to malnutrition in peru top five countires suffering from malnutrition malnutrition + ileus malnutrition rates in brazil diet therapy for malnutrition malnutrition rates in brazil [url=http://tailbay.net/1218.html]malnutrition rates in brazil[/url] diet therapy for malnutrition malnutrition + ileus malnutrition rates in brazil solutions to malnutrition in peru top five countires suffering from malnutrition muscle building drinks best building muscle supplement protein in muscle building and exercise muscle building fat loss diets muscle building stacks protein in muscle building and exercise [url=http://tailbay.net/635.html]protein in muscle building and exercise[/url] muscle building stacks muscle building fat loss diets best building muscle supplement muscle building drinks protein in muscle building and exercise krista lee anderson little mutt krista krista gottlieb krista ysunza krista allen bathtub krista lee anderson [url=http://tailbay.net/668.html]krista lee anderson[/url] krista gottlieb little mutt krista krista lee anderson krista ysunza krista allen bathtub serendipity bible serendipity new york ny serendipity nyc serendipity maui serendipity history word serendipity bible [url=http://tailbay.net/1344.html]serendipity bible[/url] serendipity bible serendipity new york ny serendipity history word serendipity nyc serendipity maui carpet cleaning vans cleaning services carpet advice starting carpet cleaning business carpet tips carpet cleaning machine dalton carpet cleaning advice starting carpet cleaning business [url=http://tailbay.net/900.html]advice starting carpet cleaning business[/url] carpet tips carpet cleaning machine carpet cleaning vans dalton carpet cleaning cleaning services carpet advice starting carpet cleaning business english boys clothing anime dollz makers collectible village makers bamboo rod makers child pepper spray in conover north carolina child pepper spray in conover north carolina [url=http://tailbay.net/374.html]child pepper spray in conover north carolina[/url] collectible village makers bamboo rod makers english boys clothing anime dollz makers child pepper spray in conover north carolina people eating bananas banana fone glycemic index banana banana biscotti banana bay people eating bananas [url=http://tailbay.net/479.html]people eating bananas[/url] banana bay banana biscotti banana fone glycemic index banana people eating bananas
        
eqays
gfi circuit breakers sylvania residential circuit breakers murray circuit breakers replacement thermostat circuit breakers antomy of circuit breakers gfi circuit breakers [url=http://vehicleines.net/101.html]gfi circuit breakers[/url] gfi circuit breakers sylvania residential circuit breakers murray circuit breakers replacement thermostat circuit breakers antomy of circuit breakers real housewives of orange county jo real housewives of orange conty shane from the real housewives of orange county george peterson real housewives real housewives of orange county message board lawyer real housewives of orange conty [url=http://vehicleines.net/233.html]real housewives of orange conty[/url] real housewives of orange conty real housewives of orange county message board lawyer george peterson real housewives shane from the real housewives of orange county real housewives of orange county jo places french revolution the french revolution under privileged social classes directory during the french revolution discontent french revolution matthew arnold french revolution criticism matthew arnold french revolution criticism [url=http://vehicleines.net/879.html]matthew arnold french revolution criticism[/url] the french revolution under privileged social classes matthew arnold french revolution criticism places french revolution directory during the french revolution discontent french revolution anthem blue cross and blue shield insurance blue cross of caifornia blue cross blue shield precription forms blue cross mass blue cross california cma anthem blue cross and blue shield insurance [url=http://vehicleines.net/406.html]anthem blue cross and blue shield insurance[/url] blue cross mass anthem blue cross and blue shield insurance blue cross california cma blue cross blue shield precription forms blue cross of caifornia men at work overkill cargo mp3 men at work land down under flute music music + men at work down under- men at work men at work album men at work land down under flute music [url=http://vehicleines.net/11.html]men at work land down under flute music[/url] men at work album down under- men at work music + men at work men at work land down under flute music men at work overkill cargo mp3 new machine gun tech stemple machine gun mark 48 machine gun swiss machine guns bb machine gun stemple machine gun [url=http://vehicleines.net/1465.html]stemple machine gun[/url] bb machine gun swiss machine guns mark 48 machine gun stemple machine gun new machine gun tech exterminator use in ridding of flying squirrels in attic flying squirrel yo yo flying squirrel exterminate flying squirrel for sale flying squirrels winter adaptation exterminator use in ridding of flying squirrels in attic [url=http://vehicleines.net/1007.html]exterminator use in ridding of flying squirrels in attic[/url] flying squirrel for sale flying squirrels winter adaptation exterminator use in ridding of flying squirrels in attic flying squirrel exterminate flying squirrel yo yo picture of generic concerta concerta problems what happens if i take concerta and dont have adhd concerta pill adderall concerta adderall concerta [url=http://vehicleines.net/212.html]adderall concerta[/url] concerta problems picture of generic concerta adderall concerta what happens if i take concerta and dont have adhd concerta pill relationship between temperature and volume of the dryer hurt relationship global warming relationship to population relationship establishment account relationship assessment hurt relationship [url=http://vehicleines.net/241.html]hurt relationship[/url] relationship establishment relationship between temperature and volume of the dryer account relationship assessment hurt relationship global warming relationship to population santa ana free trial dial up internet service high speed internet access dial up dsl satellite cheap dial up internet access find dial up internet service providers best deals on internet dial up service find dial up internet service providers [url=http://vehicleines.net/644.html]find dial up internet service providers[/url] cheap dial up internet access best deals on internet dial up service high speed internet access dial up dsl satellite santa ana free trial dial up internet service find dial up internet service providers 1990 honda crx distributor 1991 honda crx si honda crx distributor assembly hood honda crx 91 manual 1986 honda crx fender 1986 honda crx fender [url=http://vehicleines.net/588.html]1986 honda crx fender[/url] 1986 honda crx fender 1991 honda crx si honda crx distributor assembly 1990 honda crx distributor hood honda crx 91 manual here i am end title music code am d here i special sonic flood: here i am to worship here i am at camp ranada christian rock here i am to worship here i am at camp ranada [url=http://vehicleines.net/1021.html]here i am at camp ranada[/url] sonic flood: here i am to worship here i am end title music code christian rock here i am to worship here i am at camp ranada am d here i special texas discount modular homes texas problems law modular home north carolina modular homes for sale in north geoergia modular and manufactured homes modular homes louisa modular homes louisa [url=http://vehicleines.net/492.html]modular homes louisa[/url] modular homes for sale in north geoergia texas discount modular homes texas modular homes louisa problems law modular home north carolina modular and manufactured homes formula one 2007 alonso formula one weight loss formula one hotels australia formula one calendar formula one web service formula one calendar [url=http://vehicleines.net/401.html]formula one calendar[/url] formula one 2007 alonso formula one hotels australia formula one web service formula one weight loss formula one calendar verbal abuse between parents and children verbal abuse chat rooms effects of verbal abuse on infants americans with disabilities harassment, verbal abuse teachers verbal abuse in the classroom americans with disabilities harassment, verbal abuse [url=http://vehicleines.net/221.html]americans with disabilities harassment, verbal abuse[/url] teachers verbal abuse in the classroom verbal abuse chat rooms effects of verbal abuse on infants verbal abuse between parents and children americans with disabilities harassment, verbal abuse cabelas dangerous hunts code ps2 who makes cabelas snowshoes cabelas coupon code cabela hunter quick keys cabelas alaskan cheats cabelas coupon code [url=http://vehicleines.net/197.html]cabelas coupon code[/url] who makes cabelas snowshoes cabelas coupon code cabelas dangerous hunts code ps2 cabelas alaskan cheats cabela hunter quick keys gradebook hardcover tao te king 2007 hardcover engagement calendar the book of nod, hardcover britannica concise encyclopaedia, updated version hardcover visualizing matter, holt chemistry, hardcover tao te king 2007 hardcover engagement calendar [url=http://vehicleines.net/1319.html]tao te king 2007 hardcover engagement calendar[/url] britannica concise encyclopaedia, updated version hardcover the book of nod, hardcover visualizing matter, holt chemistry, hardcover gradebook hardcover tao te king 2007 hardcover engagement calendar history of peircings male peircings upper navel peircing peircing apprentice self peircing male peircings [url=http://vehicleines.net/1299.html]male peircings[/url] peircing apprentice self peircing upper navel peircing male peircings history of peircings soma muscle relaxers is soma an opiate kate soma soma + san diego soma bikes soma + san diego [url=http://vehicleines.net/176.html]soma + san diego[/url] soma muscle relaxers kate soma soma + san diego is soma an opiate soma bikes prince of egypt - when you believe land of make believe mangione i believe in you and me lyrics by the four tops yolanda adams - i believe cant believe this is me prince of egypt - when you believe [url=http://vehicleines.net/793.html]prince of egypt - when you believe[/url] yolanda adams - i believe land of make believe mangione prince of egypt - when you believe cant believe this is me i believe in you and me lyrics by the four tops
        
dgdbw
aquarius weekly horoscopes weekly aries the pitch weekly york weekly weekly coupons weekly aries [url=http://ashomebus.net/113.html]weekly aries[/url] the pitch weekly york weekly weekly coupons weekly aries aquarius weekly horoscopes the palace hotel in san francisco hotel udine g scale commemorative car kimpton hotel mostyn hotel london the palace hotel in san francisco [url=http://ashomebus.net/1447.html]the palace hotel in san francisco[/url] mostyn hotel london hotel udine g scale commemorative car kimpton hotel the palace hotel in san francisco download westlife the rose for free westlife you are so beautiful my love - westlife westlife turnaround you raise me up by westlife westlife you are so beautiful [url=http://ashomebus.net/520.html]westlife you are so beautiful[/url] my love - westlife westlife turnaround you raise me up by westlife download westlife the rose for free westlife you are so beautiful maxine feldman music maxine birthday maxine maxine burnette maxine davidowitz maxine feldman music [url=http://ashomebus.net/151.html]maxine feldman music[/url] maxine feldman music maxine davidowitz maxine maxine burnette maxine birthday horticulture in medieval times discounts for medieval times medieval times word search saxony during medieval times medieval times and games discounts for medieval times [url=http://ashomebus.net/281.html]discounts for medieval times[/url] medieval times and games horticulture in medieval times saxony during medieval times medieval times word search discounts for medieval times acetaminophen and codeine what is acetaminophen acetaminophen and cats acetaminophen level detection acetaminophen overdosage acetaminophen level detection [url=http://ashomebus.net/481.html]acetaminophen level detection[/url] acetaminophen overdosage acetaminophen level detection what is acetaminophen acetaminophen and codeine acetaminophen and cats hoon melon melon organza blind melon guitar tab b melon persian melon b melon [url=http://ashomebus.net/195.html]b melon[/url] persian melon melon organza hoon melon blind melon guitar tab b melon how to create vob files convert vob files to avi vob file joiner transcoding vob files free convert vob to mpeg how to create vob files [url=http://ashomebus.net/29.html]how to create vob files[/url] free