搜尋
首頁Javajava教程Java實現打機小遊戲的範例程式碼分享

這篇文章主要介紹了Java實現打飛機小遊戲(附完整源碼),這裡整理了詳細的程式碼,具有一定的參考價值,有興趣的小夥伴們可以參考一下

#寫在前面

技術源自於分享,所以今天抽空把自己之前用java做過的小遊戲整理貼出來給大家參考學習。 java確實不適合寫桌面應用,這裡只是透過這個遊戲讓大家理解oop物件導向程式設計的過程,純屬娛樂。程式碼寫的很簡單,也很容易理解,註解寫的很清楚了,還有問題,自己私下去補課學習。

效果如下

#完整程式碼

敵飛機


import java.util.Random;


 敌飞机: 是飞行物,也是敌人

public class Airplane extends FlyingObject implements Enemy {
 private int speed = 3; //移动步骤

 /** 初始化数据 */
 public Airplane(){
  this.image = ShootGame.airplane;
  width = image.getWidth();
  height = image.getHeight();
  y = -height;   
  Random rand = new Random();
  x = rand.nextInt(ShootGame.WIDTH - width);
 }

 /** 获取分数 */
 @Override
 public int getScore() { 
  return 5;
 }

 /** //越界处理 */
 @Override
 public  boolean outOfBounds() { 
  return y>ShootGame.HEIGHT;
 }

 /** 移动 */
 @Override
 public void step() { 
  y += speed;
 }

}

分數獎勵


#
/** 
 * 奖励 
 */ 
public interface Award { 
 int DOUBLE_FIRE = 0; //双倍火力 
 int LIFE = 1; //1条命 
 /** 获得奖励类型(上面的0或1) */ 
 int getType(); 
}

蜜蜂


import java.util.Random; 

/** 蜜蜂 */ 
public class Bee extends FlyingObject implements Award{ 
 private int xSpeed = 1; //x坐标移动速度 
 private int ySpeed = 2; //y坐标移动速度 
 private int awardType; //奖励类型 

 /** 初始化数据 */ 
 public Bee(){ 
  this.image = ShootGame.bee; 
  width = image.getWidth(); 
  height = image.getHeight(); 
  y = -height; 
  Random rand = new Random(); 
  x = rand.nextInt(ShootGame.WIDTH - width); 
  awardType = rand.nextInt(2); //初始化时给奖励 
 } 

 /** 获得奖励类型 */ 
 public int getType(){ 
  return awardType; 
 } 

 /** 越界处理 */ 
 @Override 
 public boolean outOfBounds() { 
  return y>ShootGame.HEIGHT; 
 } 

 /** 移动,可斜着飞 */ 
 @Override 
 public void step() {  
  x += xSpeed; 
  y += ySpeed; 
  if(x > ShootGame.WIDTH-width){ 
   xSpeed = -1; 
  } 
  if(x < 0){ 
   xSpeed = 1; 
  } 
 } 
}

子彈類別:是飛行物件


/** 
 * 子弹类:是飞行物 
 */ 
public class Bullet extends FlyingObject { 
 private int speed = 3; //移动的速度 

 /** 初始化数据 */ 
 public Bullet(int x,int y){ 
  this.x = x; 
  this.y = y; 
  this.image = ShootGame.bullet; 
 } 

 /** 移动 */ 
 @Override 
 public void step(){  
  y-=speed; 
 } 

 /** 越界处理 */ 
 @Override 
 public boolean outOfBounds() { 
  return y<-height; 
 } 

}

敵人的分數


/** 
 * 敌人,可以有分数 
 */ 
public interface Enemy { 
 /** 敌人的分数 */ 
 int getScore(); 
}

飛行物(敵機,蜜蜂,子彈,英雄機)


#
import java.awt.image.BufferedImage; 

/** 
 * 飞行物(敌机,蜜蜂,子弹,英雄机) 
 */ 
public abstract class FlyingObject { 
 protected int x; //x坐标 
 protected int y; //y坐标 
 protected int width; //宽 
 protected int height; //高 
 protected BufferedImage image; //图片 

 public int getX() { 
  return x; 
 } 

 public void setX(int x) { 
  this.x = x; 
 } 

 public int getY() { 
  return y; 
 } 

 public void setY(int y) { 
  this.y = y; 
 } 

 public int getWidth() { 
  return width; 
 } 

 public void setWidth(int width) { 
  this.width = width; 
 } 

 public int getHeight() { 
  return height; 
 } 

 public void setHeight(int height) { 
  this.height = height; 
 } 

 public BufferedImage getImage() { 
  return image; 
 } 

 public void setImage(BufferedImage image) { 
  this.image = image; 
 } 

 /** 
  * 检查是否出界 
  * @return true 出界与否 
  */ 
 public abstract boolean outOfBounds(); 

 /** 
  * 飞行物移动一步 
  */ 
 public abstract void step(); 

 /** 
  * 检查当前飞行物体是否被子弹(x,y)击(shoot)中 
  * @param Bullet 子弹对象 
  * @return true表示被击中了 
  */ 
 public boolean shootBy(Bullet bullet){ 
  int x = bullet.x; //子弹横坐标 
  int y = bullet.y; //子弹纵坐标 
  return this.x<x && x<this.x+width && this.y<y && y<this.y+height; 
 } 

}

英雄機


import java.awt.image.BufferedImage; 

/** 
 * 英雄机:是飞行物 Java学习交流QQ群:589809992 我们一起学Java!
 */ 
public class Hero extends FlyingObject{ 

 private BufferedImage[] images = {}; //英雄机图片 
 private int index = 0;    //英雄机图片切换索引 

 private int doubleFire; //双倍火力 
 private int life; //命 

 /** 初始化数据 */ 
 public Hero(){ 
  life = 3; //初始3条命 
  doubleFire = 0; //初始火力为0 
  images = new BufferedImage[]{ShootGame.hero0, ShootGame.hero1}; //英雄机图片数组 
  image = ShootGame.hero0; //初始为hero0图片 
  width = image.getWidth(); 
  height = image.getHeight(); 
  x = 150; 
  y = 400; 
 } 

 /** 获取双倍火力 */ 
 public int isDoubleFire() { 
  return doubleFire; 
 } 

 /** 设置双倍火力 */ 
 public void setDoubleFire(int doubleFire) { 
  this.doubleFire = doubleFire; 
 } 

 /** 增加火力 */ 
 public void addDoubleFire(){ 
  doubleFire = 40; 
 } 

 /** 增命 */ 
 public void addLife(){ //增命 
  life++; 
 } 

 /** 减命 */ 
 public void subtractLife(){ //减命 
  life--; 
 } 

 /** 获取命 */ 
 public int getLife(){ 
  return life; 
 } 

 /** 当前物体移动了一下,相对距离,x,y鼠标位置 */ 
 public void moveTo(int x,int y){  
  this.x = x - width/2; 
  this.y = y - height/2; 
 } 

 /** 越界处理 */ 
 @Override 
 public boolean outOfBounds() { 
  return false; 
 } 

 /** 发射子弹 */ 
 public Bullet[] shoot(){  
  int xStep = width/4;  //4半 
  int yStep = 20; //步 
  if(doubleFire>0){ //双倍火力 
   Bullet[] bullets = new Bullet[2]; 
   bullets[0] = new Bullet(x+xStep,y-yStep); //y-yStep(子弹距飞机的位置) 
   bullets[1] = new Bullet(x+3*xStep,y-yStep); 
   return bullets; 
  }else{  //单倍火力 
   Bullet[] bullets = new Bullet[1]; 
   bullets[0] = new Bullet(x+2*xStep,y-yStep); 
   return bullets; 
  } 
 } 

 /** 移动 */ 
 @Override 
 public void step() { 
  if(images.length>0){ 
   image = images[index++/10%images.length]; //切换图片hero0,hero1 
  } 
 } 

 /** 碰撞算法 */ 
 public boolean hit(FlyingObject other){ 

  int x1 = other.x - this.width/2;     //x坐标最小距离 
  int x2 = other.x + this.width/2 + other.width; //x坐标最大距离 
  int y1 = other.y - this.height/2;    //y坐标最小距离 
  int y2 = other.y + this.height/2 + other.height; //y坐标最大距离 

  int herox = this.x + this.width/2;    //英雄机x坐标中心点距离 
  int heroy = this.y + this.height/2;    //英雄机y坐标中心点距离 

  return herox>x1 && herox<x2 && heroy>y1 && heroy<y2; //区间范围内为撞上了 
 } 

}

遊戲啟動主類別


import java.awt.Font; 
import java.awt.Color; 
import java.awt.Graphics; 
import java.awt.event.MouseAdapter; 
import java.awt.event.MouseEvent; 
import java.util.Arrays; 
import java.util.Random; 
import java.util.Timer; 
import java.util.TimerTask; 
import java.awt.image.BufferedImage; 

import javax.imageio.ImageIO; 
import javax.swing.ImageIcon; 
import javax.swing.JFrame; 
import javax.swing.JPanel; 
/**
 * Java学习交流QQ群:589809992 我们一起学Java!
 */
public class ShootGame extends JPanel { 
 public static final int WIDTH = 400; // 面板宽 
 public static final int HEIGHT = 654; // 面板高 
 /** 游戏的当前状态: START RUNNING PAUSE GAME_OVER */ 
 private int state; 
 private static final int START = 0; 
 private static final int RUNNING = 1; 
 private static final int PAUSE = 2; 
 private static final int GAME_OVER = 3; 

 private int score = 0; // 得分 
 private Timer timer; // 定时器 
 private int intervel = 1000 / 100; // 时间间隔(毫秒) 

 public static BufferedImage background; 
 public static BufferedImage start; 
 public static BufferedImage airplane; 
 public static BufferedImage bee; 
 public static BufferedImage bullet; 
 public static BufferedImage hero0; 
 public static BufferedImage hero1; 
 public static BufferedImage pause; 
 public static BufferedImage gameover; 

 private FlyingObject[] flyings = {}; // 敌机数组 
 private Bullet[] bullets = {}; // 子弹数组 
 private Hero hero = new Hero(); // 英雄机 

 static { // 静态代码块,初始化图片资源 
  try { 
   background = ImageIO.read(ShootGame.class 
     .getResource("background.png")); 
   start = ImageIO.read(ShootGame.class.getResource("start.png")); 
   airplane = ImageIO 
     .read(ShootGame.class.getResource("airplane.png")); 
   bee = ImageIO.read(ShootGame.class.getResource("bee.png")); 
   bullet = ImageIO.read(ShootGame.class.getResource("bullet.png")); 
   hero0 = ImageIO.read(ShootGame.class.getResource("hero0.png")); 
   hero1 = ImageIO.read(ShootGame.class.getResource("hero1.png")); 
   pause = ImageIO.read(ShootGame.class.getResource("pause.png")); 
   gameover = ImageIO 
     .read(ShootGame.class.getResource("gameover.png")); 
  } catch (Exception e) { 
   e.printStackTrace(); 
  } 
 } 

 /** 画 */ 
 @Override 
 public void paint(Graphics g) { 
  g.drawImage(background, 0, 0, null); // 画背景图 
  paintHero(g); // 画英雄机 
  paintBullets(g); // 画子弹 
  paintFlyingObjects(g); // 画飞行物 
  paintScore(g); // 画分数 
  paintState(g); // 画游戏状态 
 } 

 /** 画英雄机 */ 
 public void paintHero(Graphics g) { 
  g.drawImage(hero.getImage(), hero.getX(), hero.getY(), null); 
 } 

 /** 画子弹 */ 
 public void paintBullets(Graphics g) { 
  for (int i = 0; i < bullets.length; i++) { 
   Bullet b = bullets[i]; 
   g.drawImage(b.getImage(), b.getX() - b.getWidth() / 2, b.getY(), 
     null); 
  } 
 } 

 /** 画飞行物 */ 
 public void paintFlyingObjects(Graphics g) { 
  for (int i = 0; i < flyings.length; i++) { 
   FlyingObject f = flyings[i]; 
   g.drawImage(f.getImage(), f.getX(), f.getY(), null); 
  } 
 } 

 /** 画分数 */ 
 public void paintScore(Graphics g) { 
  int x = 10; // x坐标 
  int y = 25; // y坐标 
  Font font = new Font(Font.SANS_SERIF, Font.BOLD, 22); // 字体 
  g.setColor(new Color(0xFF0000)); 
  g.setFont(font); // 设置字体 
  g.drawString("SCORE:" + score, x, y); // 画分数 
  y=y+20; // y坐标增20 
  g.drawString("LIFE:" + hero.getLife(), x, y); // 画命 
 } 

 /** 画游戏状态 */ 
 public void paintState(Graphics g) { 
  switch (state) { 
  case START: // 启动状态 
   g.drawImage(start, 0, 0, null); 
   break; 
  case PAUSE: // 暂停状态 
   g.drawImage(pause, 0, 0, null); 
   break; 
  case GAME_OVER: // 游戏终止状态 
   g.drawImage(gameover, 0, 0, null); 
   break; 
  } 
 } 

 public static void main(String[] args) { 
  JFrame frame = new JFrame("Fly"); 
  ShootGame game = new ShootGame(); // 面板对象 
  frame.add(game); // 将面板添加到JFrame中 
  frame.setSize(WIDTH, HEIGHT); // 设置大小 
  frame.setAlwaysOnTop(true); // 设置其总在最上 
  frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // 默认关闭操作 
  frame.setIconImage(new ImageIcon("images/icon.jpg").getImage()); // 设置窗体的图标 
  frame.setLocationRelativeTo(null); // 设置窗体初始位置 
  frame.setVisible(true); // 尽快调用paint 

  game.action(); // 启动执行 
 } 

 /** 启动执行代码 */ 
 public void action() { 
  // 鼠标监听事件 
  MouseAdapter l = new MouseAdapter() { 
   @Override 
   public void mouseMoved(MouseEvent e) { // 鼠标移动 
    if (state == RUNNING) { // 运行状态下移动英雄机--随鼠标位置 
     int x = e.getX(); 
     int y = e.getY(); 
     hero.moveTo(x, y); 
    } 
   } 

   @Override 
   public void mouseEntered(MouseEvent e) { // 鼠标进入 
    if (state == PAUSE) { // 暂停状态下运行 
     state = RUNNING; 
    } 
   } 

   @Override 
   public void mouseExited(MouseEvent e) { // 鼠标退出 
    if (state == RUNNING) { // 游戏未结束,则设置其为暂停 
     state = PAUSE; 
    } 
   } 

   @Override 
   public void mouseClicked(MouseEvent e) { // 鼠标点击 
    switch (state) { 
    case START: 
     state = RUNNING; // 启动状态下运行 
     break; 
    case GAME_OVER: // 游戏结束,清理现场 
     flyings = new FlyingObject[0]; // 清空飞行物 
     bullets = new Bullet[0]; // 清空子弹 
     hero = new Hero(); // 重新创建英雄机 
     score = 0; // 清空成绩 
     state = START; // 状态设置为启动 
     break; 
    } 
   } 
  }; 
  this.addMouseListener(l); // 处理鼠标点击操作 
  this.addMouseMotionListener(l); // 处理鼠标滑动操作 

  timer = new Timer(); // 主流程控制 
  timer.schedule(new TimerTask() { 
   @Override 
   public void run() { 
    if (state == RUNNING) { // 运行状态 
     enterAction(); // 飞行物入场 
     stepAction(); // 走一步 
     shootAction(); // 英雄机射击 
     bangAction(); // 子弹打飞行物 
     outOfBoundsAction(); // 删除越界飞行物及子弹 
     checkGameOverAction(); // 检查游戏结束 
    } 
    repaint(); // 重绘,调用paint()方法 
   } 

  }, intervel, intervel); 
 } 

 int flyEnteredIndex = 0; // 飞行物入场计数 

 /** 飞行物入场 */ 
 public void enterAction() { 
  flyEnteredIndex++; 
  if (flyEnteredIndex % 40 == 0) { // 400毫秒生成一个飞行物--10*40 
   FlyingObject obj = nextOne(); // 随机生成一个飞行物 
   flyings = Arrays.copyOf(flyings, flyings.length + 1); 
   flyings[flyings.length - 1] = obj; 
  } 
 } 

 /** 走一步 */ 
 public void stepAction() { 
  for (int i = 0; i < flyings.length; i++) { // 飞行物走一步 
   FlyingObject f = flyings[i]; 
   f.step(); 
  } 

  for (int i = 0; i < bullets.length; i++) { // 子弹走一步 
   Bullet b = bullets[i]; 
   b.step(); 
  } 
  hero.step(); // 英雄机走一步 
 } 

 /** 飞行物走一步 */ 
 public void flyingStepAction() { 
  for (int i = 0; i < flyings.length; i++) { 
   FlyingObject f = flyings[i]; 
   f.step(); 
  } 
 } 

 int shootIndex = 0; // 射击计数 

 /** 射击 */ 
 public void shootAction() { 
  shootIndex++; 
  if (shootIndex % 30 == 0) { // 300毫秒发一颗 
   Bullet[] bs = hero.shoot(); // 英雄打出子弹 
   bullets = Arrays.copyOf(bullets, bullets.length + bs.length); // 扩容 
   System.arraycopy(bs, 0, bullets, bullets.length - bs.length, 
     bs.length); // 追加数组 
  } 
 } 

 /** 子弹与飞行物碰撞检测 */ 
 public void bangAction() { 
  for (int i = 0; i < bullets.length; i++) { // 遍历所有子弹 
   Bullet b = bullets[i]; 
   bang(b); // 子弹和飞行物之间的碰撞检查 
  } 
 } 

 /** 删除越界飞行物及子弹 */ 
 public void outOfBoundsAction() { 
  int index = 0; // 索引 
  FlyingObject[] flyingLives = new FlyingObject[flyings.length]; // 活着的飞行物 
  for (int i = 0; i < flyings.length; i++) { 
   FlyingObject f = flyings[i]; 
   if (!f.outOfBounds()) { 
    flyingLives[index++] = f; // 不越界的留着 
   } 
  } 
  flyings = Arrays.copyOf(flyingLives, index); // 将不越界的飞行物都留着 

  index = 0; // 索引重置为0 
  Bullet[] bulletLives = new Bullet[bullets.length]; 
  for (int i = 0; i < bullets.length; i++) { 
   Bullet b = bullets[i]; 
   if (!b.outOfBounds()) { 
    bulletLives[index++] = b; 
   } 
  } 
  bullets = Arrays.copyOf(bulletLives, index); // 将不越界的子弹留着 
 } 

 /** 检查游戏结束 */ 
 public void checkGameOverAction() { 
  if (isGameOver()==true) { 
   state = GAME_OVER; // 改变状态 
  } 
 } 

 /** 检查游戏是否结束 */ 
 public boolean isGameOver() { 

  for (int i = 0; i < flyings.length; i++) { 
   int index = -1; 
   FlyingObject obj = flyings[i]; 
   if (hero.hit(obj)) { // 检查英雄机与飞行物是否碰撞 
    hero.subtractLife(); // 减命 
    hero.setDoubleFire(0); // 双倍火力解除 
    index = i; // 记录碰上的飞行物索引 
   } 
   if (index != -1) { 
    FlyingObject t = flyings[index]; 
    flyings[index] = flyings[flyings.length - 1]; 
    flyings[flyings.length - 1] = t; // 碰上的与最后一个飞行物交换 

    flyings = Arrays.copyOf(flyings, flyings.length - 1); // 删除碰上的飞行物 
   } 
  } 

  return hero.getLife() <= 0; 
 } 

 /** 子弹和飞行物之间的碰撞检查 */ 
 public void bang(Bullet bullet) { 
  int index = -1; // 击中的飞行物索引 
  for (int i = 0; i < flyings.length; i++) { 
   FlyingObject obj = flyings[i]; 
   if (obj.shootBy(bullet)) { // 判断是否击中 
    index = i; // 记录被击中的飞行物的索引 
    break; 
   } 
  } 
  if (index != -1) { // 有击中的飞行物 
   FlyingObject one = flyings[index]; // 记录被击中的飞行物 

   FlyingObject temp = flyings[index]; // 被击中的飞行物与最后一个飞行物交换 
   flyings[index] = flyings[flyings.length - 1]; 
   flyings[flyings.length - 1] = temp; 

   flyings = Arrays.copyOf(flyings, flyings.length - 1); // 删除最后一个飞行物(即被击中的) 

   // 检查one的类型(敌人加分,奖励获取) 
   if (one instanceof Enemy) { // 检查类型,是敌人,则加分 
    Enemy e = (Enemy) one; // 强制类型转换 
    score += e.getScore(); // 加分 
   } else { // 若为奖励,设置奖励 
    Award a = (Award) one; 
    int type = a.getType(); // 获取奖励类型 
    switch (type) { 
    case Award.DOUBLE_FIRE: 
     hero.addDoubleFire(); // 设置双倍火力 
     break; 
    case Award.LIFE: 
     hero.addLife(); // 设置加命 
     break; 
    } 
   } 
  } 
 } 

 /** 
  * 随机生成飞行物 
  * 
  * @return 飞行物对象 
  */ 
 public static FlyingObject nextOne() { 
  Random random = new Random(); 
  int type = random.nextInt(20); // [0,20) 
  if (type < 4) { 
   return new Bee(); 
  } else { 
   return new Airplane(); 
  } 
 } 

}

寫在最後

以上就是這個遊戲我整理的完整程式碼,最後,我做了一個心智圖貼出來讓大家更好的理解OOP物件導向程式的過程。

以上是Java實現打機小遊戲的範例程式碼分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

归纳整理JAVA装饰器模式(实例详解)归纳整理JAVA装饰器模式(实例详解)May 05, 2022 pm 06:48 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于设计模式的相关问题,主要将装饰器模式的相关内容,指在不改变现有对象结构的情况下,动态地给该对象增加一些职责的模式,希望对大家有帮助。

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

AI Hentai Generator

AI Hentai Generator

免費產生 AI 無盡。

熱門文章

R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
2 週前By尊渡假赌尊渡假赌尊渡假赌
倉庫:如何復興隊友
4 週前By尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒險:如何獲得巨型種子
4 週前By尊渡假赌尊渡假赌尊渡假赌

熱工具

DVWA

DVWA

Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中

PhpStorm Mac 版本

PhpStorm Mac 版本

最新(2018.2.1 )專業的PHP整合開發工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

這個專案正在遷移到osdn.net/projects/mingw的過程中,你可以繼續在那裡關注我們。 MinGW:GNU編譯器集合(GCC)的本機Windows移植版本,可自由分發的導入函式庫和用於建置本機Windows應用程式的頭檔;包括對MSVC執行時間的擴展,以支援C99功能。 MinGW的所有軟體都可以在64位元Windows平台上運作。

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

強大的PHP整合開發環境