Presentation is loading. Please wait.

Presentation is loading. Please wait.

Podsumowanie Nguyen Hung Son Uniwersytet Warszawski.

Similar presentations


Presentation on theme: "Podsumowanie Nguyen Hung Son Uniwersytet Warszawski."— Presentation transcript:

1 Podsumowanie Nguyen Hung Son Uniwersytet Warszawski

2 Spis rzeczy Znacznik APPLET: Pobieranie parametrów dla Appletów Zdarzenia w Appletach Pisanie tekstów w Appletach Rysowanie: linii, owale, prostokątów i kolorawanie Wątki Interakcja z użytkownikiem: Myszka i Klawisze –Myszka: Java Doodle –Klawisze: TypeWriter

3 Znacznik APPLET...... import java.applet.Applet; import java.awt.Graphics; public class MyApplet extends Applet { String dane; public void init() { dane = getParameter(Powitanie"); } public void paint(Graphics g) { g.drawString(dane, 50, 25); }

4 Zdarzenia w Appletach import java.applet.Applet; import java.awt.*; public class EventTutor extends Applet { public void init() { System.out.println("init event"); } public void start() { System.out.println("start event"); } public void destroy() { System.out.println("destroy event"); } public void paint(Graphics g) { System.out.println("paint event"); } public void update(Graphics g) { System.out.println("update event"); } public boolean keyDown(Event e, int x) { System.out.println("The " + (char) x + " key was pressed."); return true; }

5 Zdarzenia public boolean mouseUp(Event e, int x, int y) { System.out.println("mouseUp event"); return false; } public boolean mouseDown(Event e, int x, int y) { System.out.println("mouseDown event"); return false; } public boolean mouseDrag(Event e, int x, int y) { System.out.println("mouseDrag event"); return false; } public boolean mouseMove(Event e, int x, int y) { System.out.println("mouseMove event"); return false; } public boolean mouseEnter(Event e, int x, int y) { System.out.println("mouseEnter event"); return false; } public boolean mouseExit(Event e, int x, int y) { System.out.println("mouseExit event"); return false; } public void getFocus() { System.out.println("getFocus event"); } public void gotFocus() { System.out.println("gotFocus event"); } public void lostFocus() { System.out.println("lostFocus event"); }

6 lOsO w a n iE W klasie java.lang.Math jest metoda Math.random(), która zwraca losową liczbę między 0.0 a 1.0 Funkcja losująca liczbę od 0 do range private int Randomize( int range ) { double rawResult; rawResult = Math.random(); return (int) (rawResult * range); }

7 Rysowanie import java.applet.Applet; import java.awt.*; public class abc extends Applet { int RectHeight, RectWidth, RectTop, RectLeft, AppletWidth, AppletHeight ; public void init() { Dimension d = size(); AppletHeight = d.height; AppletWidth = d.width; RectTop = Randomize(AppletHeight); RectLeft= Randomize(AppletWidth); RectHeight = Randomize(AppletHeight - RectTop); RectWidth = Randomize(AppletWidth - RectLeft); RectColor = new Color(Randomize(255),Randomize(255),Randomize(255)); repaint(); } public void paint(Graphics g) { g.setColor(RectColor); g.drawRect(0, 0, AppletWidth-1, AppletHeight-1); g.fillRect(RectLeft, RectTop, RectWidth-1, RectHeight-1); }

8 Rysowanie linii import java.applet.*; import java.awt.*; public class GraphApplet extends Applet { int x0, xN, y0, yN; public void init() { Dimension d = size(); x0 = 0; xN = d.width-1; y0=0; yN=d.height-1; } public void paint(Graphics g) { for (int x = x0; x < xN; x++) { g.drawLine(x,(int) (yN*Math.sin(x)),x+1, (int) (yN*Math.sin(x+1))); }

9 Wątki w akcji(w animacji) Przykład rysowania wielu prostokątów Przykład FlyingLines Zasada: –implementowanie interfejsu Runnable –Run –Start –Stop

10 Interakcja - przykład rysownika import java.applet.Applet; import java.awt.*; import java.util.Vector; public class Rysownik extends Applet { Vector points = new Vector(); public void paint(Graphics g) { int x1, y1, x2, y2; Point tempPoint; if (points.size() > 1) { tempPoint = (Point) points.elementAt(0); x1 = tempPoint.x; y1 = tempPoint.y; for (int i = 1; i < points.size(); i++) { tempPoint = (Point)points.elementAt(i); x2 = tempPoint.x; y2 = tempPoint.y; g.drawLine(x1, y1, x2, y2); x1 = x2; y1 = y2; } // end for } // end if } public boolean mouseDown(Event e, int x, int y) { points.addElement(new Point(x, y)); return true; } public boolean mouseDrag(Event e, int x, int y) { points.addElement(new Point(x, y)); repaint(); return true; } public boolean mouseUp(Event e, int x, int y) { points.addElement(new Point(x, y)); repaint(); return true; }

11 Interakcja - przykład TypeWriter import java.applet.Applet; import java.awt.Event; import java.awt.Graphics; public class typewriter extends Applet { int numcols = 80; int numrows = 25; int row = 0; int col = 0; char page[][] = new char[numrows][]; public void init() { for (int i = 0; i < numrows; i++) { page[i] = new char[numcols]; } for (int i = 0; i < numrows; i++) { for (int j = 0; j < numcols; j++) { page[i][j] = '\0'; } public void paint(Graphics g) { for (int i=0; i < numrows; i++) { String tempString = new String(page[i] g.drawString(tempString, 5, 15*(i+1)); } public boolean keyDown(Event e, int key) { char c = (char) key; switch (key) { case Event.HOME: row = 0; col = 0; break; case Event.END: row = numrows-1; col = numcols-1; break; case Event.UP: if (row > 0) row--;break;

12 TypeWriter case Event.DOWN: if (row < numrows-1) row++; break; case Event.LEFT: if (col > 0) col--; else if (col == 0 && row > 0) { row--; col=numcols-1; } break; case Event.RIGHT: if (col < numcols-1) col++; else if (col == numcols-1 && row < numrows-1) { row++; col=0; } break; default: if (c == '\n' || c == '\r') { row++; col = 0; } else if (row < numrows) { if (col >= numcols) { col = 0; row++; } page[row][col] = c; col++; } else { // row >= numrows col++; } repaint(); return true; }


Download ppt "Podsumowanie Nguyen Hung Son Uniwersytet Warszawski."

Similar presentations


Ads by Google