Package org.newdawn.slick.tests

Source Code of org.newdawn.slick.tests.AntiAliasTest

package org.newdawn.slick.tests;

import org.newdawn.slick.AppGameContainer;
import org.newdawn.slick.BasicGame;
import org.newdawn.slick.Color;
import org.newdawn.slick.GameContainer;
import org.newdawn.slick.Graphics;
import org.newdawn.slick.SlickException;

/**
* Test to view the effects of antialiasing on cirles
*
* @author kevin
*/
public class AntiAliasTest extends BasicGame {

  /**
   * Create the test
   */
  public AntiAliasTest() {
    super("AntiAlias Test");
  }

  /**
   * @see org.newdawn.slick.BasicGame#init(org.newdawn.slick.GameContainer)
   */
  public void init(GameContainer container) throws SlickException {
    container.getGraphics().setBackground(Color.green);
  }

  /**
   * @see org.newdawn.slick.BasicGame#update(org.newdawn.slick.GameContainer, int)
   */
  public void update(GameContainer container, int delta) throws SlickException {
  }

  /**
   * @see org.newdawn.slick.Game#render(org.newdawn.slick.GameContainer, org.newdawn.slick.Graphics)
   */
  public void render(GameContainer container, Graphics g) throws SlickException {
    g.setAntiAlias(true);
    g.setColor(Color.red);
    g.drawOval(100,100,100,100);
    g.fillOval(300,100,100,100);
    g.setAntiAlias(false);
    g.setColor(Color.red);
    g.drawOval(100,300,100,100);
    g.fillOval(300,300,100,100);
  }

  /**
   * Entry point to our test
   *
   * @param argv The arguments passed to the test
   */
  public static void main(String[] argv) {
    try {
      AppGameContainer container = new AppGameContainer(new AntiAliasTest());
      container.setDisplayMode(800,600,false);
      container.start();
    } catch (SlickException e) {
      e.printStackTrace();
    }
  }
}
TOP

Related Classes of org.newdawn.slick.tests.AntiAliasTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.