最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

Processing G空戰(zhàn)v1.0

2021-08-16 14:28 作者:KK_CSKcreater  | 我要投稿

? ? 記錄和公布processing語言編程游戲的情況及全部代碼。資源由PPT繪制,存放pde程序的同目錄data文件夾中。

20210816 游戲界面記錄
20210816 游戲資源記錄

下面是全部代碼:(有問題評論區(qū)@up主)


PImage flyplan1;

PImage flyplan2;

PImage flyplan3;

PImage boss;

PImage BG;

PImage planhp;

PImage boshp;

PImage losthp;

PImage bosatk;

PImage attack;

PImage effect;

PImage win;

PImage end;

int bxpos1 = 200;

int bxpos2 = 400;

int xpos = 0;

float attackd1;

float attackd2;

int count1;

float attackd3;

float attackd4;

float attackd5;

float attackd6;

float attackd7;

float attackd8;

int count2;

int ypos = 400;

int ypos1 = 10;

int X1 = 0;

int Y1 = 0;

boolean attackbool = false;

void setup(){

size(600,800,P2D);

flyplan1=loadImage("flyplan1.png");

flyplan2=loadImage("flyplan2.png");

flyplan3=loadImage("flyplan3.png");

boss=loadImage("boss.png");

BG=loadImage("BG.png");

planhp=loadImage("planhp.png");

boshp=loadImage("boshp.png");

losthp=loadImage("losthp.png");

bosatk=loadImage("bosatk.png");

attack=loadImage("attack.png");

effect=loadImage("effect.png");

win=loadImage("win.png");

end=loadImage("end.png");}

void draw(){

? background(255,255,255);

? imageMode(CORNER);

? image(BG,0,0,600,800);

? if(mouseX>300){xpos=300-mouseX;}

? else xpos=mouseX-300;

? ypos1=ypos1-10;

? imageMode(CENTER);

? image(boss,bxpos1,100-xpos/5,275,175);

? image(boss,bxpos2,100+xpos/5,275,175);

? image(bosatk,bxpos1+50,200-xpos/5-ypos1,25,25);

? image(bosatk,bxpos2+50,200+xpos/5-ypos1,25,25);

? image(bosatk,bxpos1,200-xpos/5-ypos1,30,30);

? image(bosatk,bxpos2,200+xpos/5-ypos1,30,30);

? image(bosatk,bxpos1-50,200-xpos/5-ypos1,25,25);

? image(bosatk,bxpos2-50,200+xpos/5-ypos1,25,25);

? if(200-xpos/5-ypos1>1000){ypos1=0;}

? if(200+xpos/5-ypos1>1000){ypos1=0;}

? bxpos1=bxpos1+4;

? if(bxpos1>400){bxpos1=200;}

? bxpos2=bxpos2-4;

? if(bxpos2<200){bxpos2=400;}

? if(mouseX>=200&&mouseX<=400)

? {imageMode(CENTER);

? image(flyplan1,mouseX,mouseY,120,120); }

? if(mouseX>=0&&mouseX<=200)

? {imageMode(CENTER);

? image(flyplan2,mouseX,mouseY,120,125); }

? if(mouseX>=400&&mouseX<=600)

? {imageMode(CENTER);

? image(flyplan3,mouseX,mouseY,120,125); }

? image(attack,mouseX+40,mouseY-ypos-50,18,80);

? image(attack,mouseX-40,mouseY-ypos-50,18,80);

? attackd1=dist(mouseX+40,mouseY-ypos-50,bxpos1,100-xpos/5);

? if(attackd1<50){image(effect,mouseX+40,mouseY-ypos-50,150,150);count1++;}

? attackd2=dist(mouseX-40,mouseY-ypos-50,bxpos1,100+xpos/5);

? if(attackd2<50){image(effect,mouseX-40,mouseY-ypos-50,150,150);count1++;}

? attackd3=dist(bxpos1+50,200-xpos/5-ypos1,mouseX,mouseY);

? if(attackd3<50){image(effect,mouseX,mouseY,100,100);count2++;}

? attackd4=dist(bxpos1+50,200+xpos/5-ypos1,mouseX,mouseY);

? if(attackd4<50){image(effect,mouseX,mouseY,100,100);count2++;}

? attackd5=dist(bxpos1,200-xpos/5-ypos1,mouseX,mouseY);

? if(attackd5<50){image(effect,mouseX,mouseY,100,100);count2++;}

? attackd6=dist(bxpos1,200+xpos/5-ypos1,mouseX,mouseY);

? if(attackd6<50){image(effect,mouseX,mouseY,100,100);count2++;}

? attackd7=dist(bxpos1-50,200-xpos/5-ypos1,mouseX,mouseY);

? if(attackd7<50){image(effect,mouseX,mouseY,100,100);count2++;}

? attackd8=dist(bxpos1-50,200+xpos/5-ypos1,mouseX,mouseY);

? if(attackd8<50){image(effect,mouseX,mouseY,100,100);count2++;}

? ypos=ypos+12;

? if(ypos>600){ypos=0;}

? image(boshp,25,25,35,35);

? image(planhp,540,740,35,35);

? if(count2>=18){image(losthp,540,740,35,35);}

? image(planhp,495,740,35,35);

? if(count2>=36){image(losthp,495,740,35,35);}

? image(planhp,445,740,35,35);

? image(boshp,70,25,35,35);

? if(count1>=20){image(losthp,70,25,35,35);}

? image(boshp,115,25,35,35);

? if(count1>=16){image(losthp,115,25,35,35);}

? image(boshp,160,25,35,35);

? if(count1>=12){image(losthp,160,25,35,35);}

? image(boshp,205,25,35,35);

? if(count1>=8){image(losthp,205,25,35,35);}

? image(boshp,250,25,35,35);

? if(count1>=4){image(losthp,250,25,35,35);}

? if(count1>=24){image(losthp,25,25,35,35);

? imageMode(CORNER);

? image(win,0,0,600,800);count2=0;}

? if(count2>=72){image(losthp,445,740,35,35);

? imageMode(CORNER);

? image(end,0,0,600,800);count1=0;}

}


Processing G空戰(zhàn)v1.0的評論 (共 條)

分享到微博請遵守國家法律
济阳县| 延吉市| 博白县| 林口县| 华安县| 双桥区| 贞丰县| 宁海县| 腾冲县| 疏附县| 麻阳| 兴城市| 壶关县| 贞丰县| 汉寿县| 康马县| 浦县| 丹东市| 洪江市| 泸水县| 高唐县| 谷城县| 湘阴县| 蕲春县| 西华县| 成安县| 泌阳县| 福清市| 建德市| 长武县| 行唐县| 建水县| 嵊泗县| 华宁县| 乌拉特前旗| 招远市| 吴旗县| 陇南市| 焦作市| 古交市| 鄂托克前旗|