Draws a simple plot of a parameterized Java 3D Alpha Function to an AWT : 阿尔法 « 三维图形动画 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 三维图形动画 » 阿尔法屏幕截图 
Draws a simple plot of a parameterized Java 3D Alpha Function to an AWT
Draws a simple plot of a parameterized Java 3D Alpha Function to an AWT

/**********************************************************
 Copyright (C) 2001   Daniel Selman

 First distributed with the book "Java 3D Programming"
 by Daniel Selman and published by Manning Publications.
 http://manning.com/selman

 This program is free software; you can redistribute it and/or
 modify it under the terms of the GNU General Public License
 as published by the Free Software Foundation, version 2.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 The license can be found on the WWW at:
 http://www.fsf.org/copyleft/gpl.html

 Or by writing to:
 Free Software Foundation, Inc.,
 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

 Authors can be contacted at:
 Daniel Selman: daniel@selman.org
 Lee Dixon:     leedixon@email.com

 If you make changes you think others would like, please 
 contact one of the authors or someone at the 
 www.j3d.org web site.
 **************************************************************/

import java.applet.Applet;
import java.awt.Button;
import java.awt.Checkbox;
import java.awt.CheckboxGroup;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Label;
import java.awt.TextField;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Vector;

import javax.media.j3d.Alpha;

import com.sun.j3d.utils.applet.MainFrame;

/**
 * Draws a simple plot of a parameterized Java 3D Alpha Function to an AWT
 * Window.
 */
public class AlphaTest extends Applet implements ActionListener {
  /**
   * default size of the window
   */
  private static int m_kWidth = 400;

  private static int m_kHeight = 400;

  /**
   * indexes into the UI components we create
   */
  private static final int m_knTrigger = 0;

  private static final int m_knPhaseDelay = 1;

  private static final int m_knIncreasingAlpha = 2;

  private static final int m_knIncreasingRamp = 3;

  private static final int m_knAtOne = 4;

  private static final int m_knDecreasingAlpha = 5;

  private static final int m_knDecreasingRamp = 6;

  private static final int m_knAtZero = 7;

  private static final int m_knLoopCount = 8;

  /**
   * controls how smooth a plot curve we create
   */
  private final static long m_kTimeStep = 10;

  /**
   * the Java 3D Alpha object we are parameterizing
   */
  private Alpha m_Alpha = null;

  /**
   * a Vector of Edit UI components
   */
  Vector m_EditFieldVector = null;

  /**
   * offsets and drawing information
   */
  int m_nMaxHeight = 0;

  int m_nMaxWidth = 0;

  int m_nInsetX = 0;

  int m_nInsetY = 0;

  int m_nGraphMaxWidth = 0;

  int m_nGraphMaxHeight = 0;

  int m_nGraphInsetX = 0;

  int m_nGraphInsetY = 0;

  double m_ScaleX = 0;

  /**
   * CheckboxGroup for INCREASING/DECREASING PHASE enable
   */
  private CheckboxGroup m_checkboxGrp;

  /**
   * Constructor
   */
  public AlphaTest() {
    m_Alpha = new Alpha(-1, Alpha.DECREASING_ENABLE
        | Alpha.INCREASING_ENABLE, 1000100050001000100010000,
        20004000);
    buildUi();
  }

  /**
   * Creates the UI components
   */
  protected void buildUi() {
    m_EditFieldVector = new Vector(10);

    addField("Trigger Time", m_knTrigger);
    addField("Phase Delay", m_knPhaseDelay);
    addField("Increasing Alpha", m_knIncreasingAlpha);
    addField("Increasing Ramp", m_knIncreasingRamp);
    addField("At One", m_knAtOne);
    addField("Decreasing Alpha", m_knDecreasingAlpha);
    addField("Decreasing Ramp", m_knDecreasingRamp);
    addField("At Zero", m_knAtZero);
    addField("Loop Count", m_knLoopCount);

    m_checkboxGrp = new CheckboxGroup();
    add(new Checkbox("INCREASING_ENABLE", m_checkboxGrp, false));
    add(new Checkbox("DECREASING_ENABLE", m_checkboxGrp, false));
    add(new Checkbox("BOTH", m_checkboxGrp, true));

    addButton("Update");

    updateUi();
  }

  /**
   * Handle events from the GUI components we created
   */
  public void actionPerformed(ActionEvent event) {
    if (event.getActionCommand().equals("Update"!= false) {
      updateAlpha();
      repaint();
    }
  }

  /**
   * Replots the Alpha function based on the contents of the UI
   */
  protected void updateAlpha() {
    m_Alpha.setTriggerTime(Long.parseLong(getField(m_knTrigger).getText()));
    m_Alpha.setPhaseDelayDuration(Long.parseLong(getField(m_knPhaseDelay)
        .getText()));
    m_Alpha.setIncreasingAlphaDuration(Long.parseLong(getField(
        m_knIncreasingAlpha).getText()));
    m_Alpha.setIncreasingAlphaRampDuration(Long.parseLong(getField(
        m_knIncreasingRamp).getText()));
    m_Alpha.setAlphaAtOneDuration(Long.parseLong(getField(m_knAtOne)
        .getText()));
    m_Alpha.setDecreasingAlphaDuration(Long.parseLong(getField(
        m_knDecreasingAlpha).getText()));
    m_Alpha.setDecreasingAlphaRampDuration(Long.parseLong(getField(
        m_knDecreasingRamp).getText()));
    m_Alpha.setAlphaAtZeroDuration(Long.parseLong(getField(m_knAtZero)
        .getText()));
    m_Alpha.setLoopCount(Integer
        .parseInt(getField(m_knLoopCount).getText()));

    Checkbox b = m_checkboxGrp.getSelectedCheckbox();
    if (b.getLabel().equals("INCREASING_ENABLE")) {
      m_Alpha.setMode(Alpha.INCREASING_ENABLE);
    else if (b.getLabel().equals("DECREASING_ENABLE")) {
      m_Alpha.setMode(Alpha.DECREASING_ENABLE);
    else // "BOTH"
    {
      m_Alpha.setMode(Alpha.INCREASING_ENABLE | Alpha.DECREASING_ENABLE);
    }

  }

  /**
   * Updates the UI based on the Alpha function
   */
  protected void updateUi() {
    getField(m_knTrigger).setText(String.valueOf(m_Alpha.getTriggerTime()));
    getField(m_knPhaseDelay).setText(
        String.valueOf(m_Alpha.getPhaseDelayDuration()));
    getField(m_knIncreasingAlpha).setText(
        String.valueOf(m_Alpha.getIncreasingAlphaDuration()));
    getField(m_knIncreasingRamp).setText(
        String.valueOf(m_Alpha.getIncreasingAlphaRampDuration()));
    getField(m_knAtOne).setText(
        String.valueOf(m_Alpha.getAlphaAtOneDuration()));
    getField(m_knDecreasingAlpha).setText(
        String.valueOf(m_Alpha.getDecreasingAlphaDuration()));
    getField(m_knDecreasingRamp).setText(
        String.valueOf(m_Alpha.getDecreasingAlphaRampDuration()));
    getField(m_knAtZero).setText(
        String.valueOf(m_Alpha.getAlphaAtZeroDuration()));
    getField(m_knLoopCount).setText(String.valueOf(m_Alpha.getLoopCount()));
  }

  /**
   * Helper method to add a TextField to the UI
   */
  protected void addField(final String szText, final int nIndex) {
    Label label = new Label(szText);
    TextField textField = new TextField(4);

    m_EditFieldVector.add(nIndex, (ObjecttextField);

    add(label);
    add(textField);
  }

  /**
   * Retrieves a TextField with a given index
   */
  protected TextField getField(final int nIndex) {
    return (TextFieldm_EditFieldVector.get(nIndex);
  }

  /**
   * Helper method to add a Button to the UI.
   */
  protected void addButton(final String szText) {
    Button button = new Button(szText);
    button.addActionListener(this);
    add(button);
  }

  /**
   * Computes the drawing scales based on the Alpha function and the size of
   * the Window.
   */
  protected void computeDrawScale(long lMaxTime) {
    m_nMaxHeight = (int) (getHeight() 0.7);
    m_nMaxWidth = (int) (getWidth() 0.9);

    m_nInsetX = (getWidth() - m_nMaxWidth2;
    m_nInsetY = (int) ((getHeight() - m_nMaxHeight1.1);

    m_nGraphMaxWidth = (int) (m_nMaxWidth * 0.80);
    m_nGraphMaxHeight = (int) (m_nMaxHeight * 0.80);

    m_nGraphInsetX = m_nInsetX + (m_nMaxWidth - m_nGraphMaxWidth2;
    m_nGraphInsetY = m_nInsetY + (m_nMaxHeight - m_nGraphMaxHeight2;

    m_ScaleX = ((doublem_nGraphMaxWidth((doublelMaxTime);
  }

  /**
   * Draws a rectangle into the display area for the plot.
   */
  protected void drawAreaRect(Graphics g, int x, int y, int width, int height) {
    g.drawRect(m_nInsetX + x, m_nInsetY + y, width, height);
  }

  /**
   * Draws a String into the display area for the plot.
   */
  protected void drawAreaString(Graphics g, int nLen, String szText,
      double x, double y) {
    if (nLen > && szText.length() > nLen)
      szText = szText.substring(0, nLen);

    g.drawString(szText, (int) (m_nInsetX + x)(int) (m_nMaxHeight
        + m_nInsetY - y));
  }

  /**
   * Draws a String into the graph area for the plot.
   */
  protected void drawGraphString(Graphics g, int nLen, String szText,
      double x, double y) {
    if (nLen > && szText.length() > nLen)
      szText = szText.substring(0, nLen);

    g.drawString(szText, (int) (m_nGraphInsetX + x)(int) (m_nGraphInsetY
        + m_nGraphMaxHeight - y));
  }

  /**
   * Draws a Line into the graph area for the plot.
   */
  protected void drawGraphLine(Graphics g, double x1, double y1, double x2,
      double y2) {
    g.drawLine((int) (m_nGraphInsetX + x1)(int) (m_nGraphInsetY
        + m_nGraphMaxHeight - y1)(int) (m_nGraphInsetX + x2),
        (int) (m_nGraphInsetY + m_nGraphMaxHeight - y2));
  }

  /**
   * Draws the axes for the graph.
   */
  protected void drawAxes(Graphics g, long lMaxTime) {
    drawGraphString(g, -1"Alpha vs. Time (ms)", m_nGraphMaxWidth / 2,
        m_nGraphMaxHeight + 20);

    // draw the frame
    drawAreaRect(g, 00, m_nMaxWidth, m_nMaxHeight);

    // draw the X axis
    drawGraphLine(g, 00, m_nGraphMaxWidth, 0);

    // draw the Y axis
    drawGraphLine(g, 000, m_nGraphMaxHeight);

    // draw the horizontal Y axis lines
    for (double yAxisTick = 0; yAxisTick <= 1.0; yAxisTick += 0.2) {
      double yTick = yAxisTick * m_nGraphMaxHeight;

      g.setColor(Color.gray);
      drawGraphLine(g, 0, yTick, m_nGraphMaxWidth, yTick);
      g.setColor(Color.black);

      drawGraphString(g, 3"" + yAxisTick, -20, yTick);
    }
  }

  /**
   * Draws vertical lines and labels to denote the various phases of the Alpha
   * function.
   */
  protected void drawPhases(Graphics g, long lMaxTime) {
    int nLoop = 1;

    if (m_Alpha.getLoopCount() 0)
      nLoop = m_Alpha.getLoopCount();

    double curTime = 0;

    g.setColor(Color.darkGray);

    curTime += m_Alpha.getTriggerTime();
    drawGraphLine(g, curTime * m_ScaleX, 0, curTime * m_ScaleX,
        m_nGraphMaxHeight);

    curTime += m_Alpha.getPhaseDelayDuration();
    drawGraphLine(g, curTime * m_ScaleX, 0, curTime * m_ScaleX,
        m_nGraphMaxHeight);

    double startPhaseTime = 0;

    for (int nIteration = 0; nIteration < nLoop; nIteration++) {
      startPhaseTime = curTime;

      g.setColor(Color.black);
      drawGraphString(g, -1"" + curTime, curTime * m_ScaleX, -20);
      g.setColor(Color.darkGray);

      if ((m_Alpha.getMode() & Alpha.INCREASING_ENABLE!= 0) {
        curTime += m_Alpha.getIncreasingAlphaRampDuration();
        drawGraphLine(g, curTime * m_ScaleX, 0, curTime * m_ScaleX,
            m_nGraphMaxHeight);

        curTime = startPhaseTime + m_Alpha.getIncreasingAlphaDuration()
            - m_Alpha.getIncreasingAlphaRampDuration();
        drawGraphLine(g, curTime * m_ScaleX, 0, curTime * m_ScaleX,
            m_nGraphMaxHeight);

        curTime = startPhaseTime + m_Alpha.getIncreasingAlphaDuration();
        drawGraphLine(g, curTime * m_ScaleX, 0, curTime * m_ScaleX,
            m_nGraphMaxHeight);

        curTime += m_Alpha.getAlphaAtOneDuration();
        drawGraphLine(g, curTime * m_ScaleX, 0, curTime * m_ScaleX,
            m_nGraphMaxHeight);
      }

      startPhaseTime = curTime;

      if ((m_Alpha.getMode() & Alpha.DECREASING_ENABLE!= 0) {
        curTime += m_Alpha.getDecreasingAlphaRampDuration();
        drawGraphLine(g, curTime * m_ScaleX, 0, curTime * m_ScaleX,
            m_nGraphMaxHeight);

        curTime = startPhaseTime + m_Alpha.getDecreasingAlphaDuration()
            - m_Alpha.getDecreasingAlphaRampDuration();
        drawGraphLine(g, curTime * m_ScaleX, 0, curTime * m_ScaleX,
            m_nGraphMaxHeight);

        curTime = startPhaseTime + m_Alpha.getDecreasingAlphaDuration();
        drawGraphLine(g, curTime * m_ScaleX, 0, curTime * m_ScaleX,
            m_nGraphMaxHeight);

        curTime += m_Alpha.getAlphaAtZeroDuration();
        drawGraphLine(g, curTime * m_ScaleX, 0, curTime * m_ScaleX,
            m_nGraphMaxHeight);
      }
    }

    g.setColor(Color.black);
  }

  /**
   * Plots the Alpha function into the graph area of the plot.
   */
  protected void drawAlpha(Graphics g, long lMaxTime) {
    g.setColor(Color.blue);

    float value = 0;

    m_Alpha.setStartTime(0);

    double x1 = 0;
    double y1 = 0;
    double x2 = 0;
    double y2 = 0;

    for (long lTime = 0; lTime <= lMaxTime; lTime += m_kTimeStep) {
      value = m_Alpha.value(lTime);

      x2 = lTime * m_ScaleX;
      y2 = value * m_nGraphMaxHeight;

      drawGraphLine(g, x1, y1, x2, y2);

      x1 = x2;
      y1 = y2;
    }

    g.setColor(Color.black);
  }

  /**
   * AWT paint method that can handle dynamic scale recomputation and graph
   * redraw.
   */
  public void paint(Graphics g) {
    super.paint(g);

    long lMaxTime = 0;

    if ((m_Alpha.getMode() & Alpha.INCREASING_ENABLE!= 0) {
      lMaxTime += m_Alpha.getIncreasingAlphaDuration()
          + m_Alpha.getAlphaAtOneDuration();
    }

    if ((m_Alpha.getMode() & Alpha.DECREASING_ENABLE!= 0) {
      lMaxTime += m_Alpha.getDecreasingAlphaDuration()
          + m_Alpha.getAlphaAtZeroDuration();
    }

    if (m_Alpha.getLoopCount() 0)
      lMaxTime *= m_Alpha.getLoopCount();

    lMaxTime += m_Alpha.getTriggerTime();
    lMaxTime += m_Alpha.getPhaseDelayDuration();
    computeDrawScale(lMaxTime);

    drawAxes(g, lMaxTime);
    drawPhases(g, lMaxTime);

    drawAlpha(g, lMaxTime);
  }

  /**
   * Simple main method that uses the Java 3D MainFrame helper class.
   */
  public static void main(String[] args) {
    AlphaTest alphaTest = new AlphaTest();
    new MainFrame(alphaTest, m_kWidth, m_kHeight);
  }
}



           
       
Related examples in the same category
1. 创建一个场景其中阿尔法地块自定义功能创建一个场景其中阿尔法地块自定义功能
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.