0
  • 聊天消息
  • 系統(tǒng)消息
  • 評(píng)論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會(huì)員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識(shí)你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

我的第一個(gè)鴻蒙手機(jī)小游戲 數(shù)字華容道

電子工程師 ? 來源:HarmonyOS技術(shù)社區(qū) ? 作者:HarmonyOS技術(shù)社區(qū) ? 2020-12-29 10:55 ? 次閱讀

12 月 16 號(hào) HarmonyOS 2.0 手機(jī)開發(fā)者 Beta 版已經(jīng)發(fā)布了,作為“1+8+N”戰(zhàn)略的重要入口和生態(tài)核心,怎么能少得了手機(jī)應(yīng)用開發(fā)呢?今天將由深鴻會(huì)深大學(xué)習(xí)小組從零基礎(chǔ)開發(fā)第一個(gè) HarmonyOS 手機(jī)小游戲——數(shù)字華容道(界面略丑陋,大佬別噴)。

本個(gè) demo 將從零基礎(chǔ)開始完成鴻蒙小游戲 APP 在手機(jī)上的編譯在項(xiàng)目中我們所使用到的軟件為 DevEco Studio,下載地址為:

DevEco Studio 下載:
https://developer.harmonyos.com/cn/develop/deveco-studio#download

DevEco Studio 安裝教程

https://developer.harmonyos.com/cn/docs/documentation/doc-guides/software_install-0000001053582415

在項(xiàng)目中我們要實(shí)現(xiàn)的內(nèi)容為數(shù)字華容道 APP 的開發(fā)。

打開引用首先為數(shù)字華容道的初始界面,點(diǎn)擊開始游戲即會(huì)切換到數(shù)字華容道的游戲界面。

進(jìn)入數(shù)字華容道的游戲界面顯示 4*4 的方陣,方陣中分布有隨意打亂的 1 至 15 的數(shù)字和一個(gè)空白方格。

方陣下方顯示一個(gè)“重新開始”的按鈕和一個(gè)“返回”按鈕,點(diǎn)擊“重新開始”按鈕即會(huì)重新生成隨意打亂的 1 至 15 的數(shù)字和一個(gè)空白方格的方陣。

點(diǎn)擊“返回”按鈕即會(huì)切換到數(shù)字華容道的初始界面,最下方有四個(gè)指示不同方向箭頭的按鈕,點(diǎn)擊任一按鈕或向上、下、左、右任一方向滑動(dòng),空白方格周圍對(duì)應(yīng)位置的方格便會(huì)隨之向?qū)?yīng)的方向移動(dòng)一格。

經(jīng)過若干次滑動(dòng)或點(diǎn)擊后,當(dāng)所有的數(shù)字按順序排列后,則會(huì)彈出游戲成功的界面,再滑動(dòng)或點(diǎn)擊也不會(huì)有任何變化。

01

創(chuàng)建項(xiàng)目

DevEco Studio 下載安裝成功后,打開 DevEco Studio,點(diǎn)擊左上角的 File,點(diǎn)擊 New,再選擇 New Project,選擇 Phone 選項(xiàng),選擇默認(rèn)的模板(Java 版),然后選擇保存路徑,將文件命名為 MyPhoneApplication(文件名不能出現(xiàn)中文或者特殊字符,否則將無法成功創(chuàng)建項(xiàng)目文件),最后點(diǎn)擊 Finish。

02

實(shí)現(xiàn)初始界面布局

首先,我們要先實(shí)現(xiàn)數(shù)字華容道的初始界面,點(diǎn)擊開始游戲即會(huì)切換到另一個(gè)空白的界面。

先在 entry>src>main>config.json 文件中最下方"launchType": "standard"的后面添加以下代碼。

并且將上方的“l(fā)abel”:“MyPhoneApplication”修改成"label": "數(shù)字華容道",這樣就實(shí)現(xiàn)去掉應(yīng)用上方的標(biāo)題欄和將應(yīng)用名稱改為數(shù)字華容道了。

config.json 最下面部分代碼:
"orientation":"unspecified",
"name":"com.example.myphoneapplication.MainAbility",
"icon":"$media:icon",
"description":"$string:mainability_description",
"label":"數(shù)字華容道",
"type":"page",
"launchType":"standard",
"metaData":{
"customizeData":[
{
"name":"hwc-theme",
"value":"androidhwext:style/Theme.Emui.Light.NoTitleBar",
"extra":""
}
]
}

	

先將我們事先準(zhǔn)備好的圖片復(fù)制粘貼到 entry>src>main>resources>base>media 文件夾中(ctrl+c、ctrl+v 復(fù)制粘貼),并且命名為 game,點(diǎn)擊 OK。

在 entry>src>main>resources>base>layout>ability_main.xml 中添加布局。

先將事先存在的 Text 組件刪去,添加 Image 圖片組件,引入我們剛才復(fù)制粘貼的圖片,再添加一個(gè) Button 按鈕組件,加入唯一標(biāo)識(shí)符 id 并配置好其他相應(yīng)的屬性:

<DirectionalLayout
xmlns:ohos="http://schemas.huawei.com/res/ohos"
ohos:height="match_parent"
ohos:width="match_parent"
ohos:orientation="vertical">

<Image
ohos:height="match_parent"
ohos:width="match_parent"
ohos:image_src="$media:game"
ohos:layout_alignment="center"
/>

<Button
ohos:id="$+id:button_game"
ohos:height="150"
ohos:width="515"
ohos:text_alignment="center"
ohos:top_margin="-810"
ohos:left_margin="250"
/>

DirectionalLayout>

在 entry>src>main>java>com.example.myphoneapplication>slice 中右鍵選擇 New>Java Class 增加一個(gè)空白的類以用來后面編寫數(shù)字華容道的游戲界面,并且命名為 SecondAbilitySlice。

將 entry>src>main>java>com.example.myphoneapplication>slice>SecondAbilitySlice 中的代碼修改成如下:

packagecom.example.myphoneapplication.slice;

importcom.example.myphoneapplication.ResourceTable;
importohos.aafwk.ability.AbilitySlice;
importohos.aafwk.content.Intent;

publicclassSecondAbilitySliceextendsAbilitySlice{

publicvoidonStart(Intentintent){
super.onStart(intent);

}

@Override
publicvoidonActive(){
super.onActive();
}

@Override
publicvoidonForeground(Intentintent){
super.onForeground(intent);
}
}

	
		④entry>src>main>java>com.example.myphoneapplication>slice>MainAbilitySlice 中的 onStart 函數(shù)中添加一個(gè)按鈕指向我們(2)中添加的按鈕。
		

添加一個(gè)響應(yīng)點(diǎn)擊事件的函數(shù),用 parsent 函數(shù)跳轉(zhuǎn)到 SecondAbilitySlice:

packagecom.example.myphoneapplication.slice;

importcom.example.myphoneapplication.ResourceTable;
importohos.aafwk.content.Intent;
importohos.agp.components.Button;
importohos.agp.components.Component;

publicclassMainAbilitySliceextendsohos.aafwk.ability.AbilitySlice{
@Override
publicvoidonStart(Intentintent){
super.onStart(intent);
super.setUIContent(ResourceTable.Layout_ability_main);

Buttonbutton=(Button)findComponentById(ResourceTable.Id_button_game);
button.setClickedListener(newComponent.ClickedListener(){
@Override
publicvoidonClick(Componentcomponent){
present(newSecondAbilitySlice(),newIntent());
}
});

}

@Override
publicvoidonActive(){
super.onActive();
}

@Override
publicvoidonForeground(Intentintent){
super.onForeground(intent);
}
}

	

至此,這一部分就完成了。

03

實(shí)現(xiàn)數(shù)字的隨機(jī)打亂

然后我們要在數(shù)字華容道的游戲界面生成隨意打亂的1至15的數(shù)字和一個(gè)空白方格的方陣。

在 entry>src>main>java>com.example.myphoneapplication>slice>SecondAbilitySlice 編寫代碼。

先定義個(gè)一個(gè)位置布局 layout 和一個(gè)二維數(shù)組 grids,創(chuàng)建函數(shù) initializeinitialize() 分別對(duì)其初始化,在 onStart 函數(shù)中調(diào)用函數(shù) initializeinitialize():

privatefloatstarX,starY,distanceX,distanceY;
privateDirectionalLayoutlayout;
privateint[][]grids;

publicvoidonStart(Intentintent){
super.onStart(intent);

initialize();
}

publicvoidinitialize(){
layout=newDirectionalLayout(this);
grids=newint[][]{{1,2,3,4},{5,6,7,8,},{9,10,11,12},{13,14,15,0}};
}

然后定義函數(shù) drawGrids(int[][] grids) 用于繪制 4*4 方陣和其二維數(shù)組對(duì)應(yīng)的數(shù)字:

publicvoiddrawGrids(int[][]grids){
layout.setLayoutConfig((newComponentContainer.LayoutConfig(ComponentContainer.LayoutConfig.MATCH_PARENT,ComponentContainer.LayoutConfig.MATCH_PARENT)));

Component.DrawTasktask=newComponent.DrawTask(){
publicvoidonDraw(Componentcomponent,Canvascanvas){
PaintmPaint=newPaint();

mPaint.setColor(Color.GRAY);
RectFloatrect=newRectFloat(2,230,1078,1306);
canvas.drawRect(rect,mPaint);

for(introw=0;row4;row++){
for(intcolumn=0;column4;column++){
mPaint.setColor(Color.CYAN);
RectFloatrectFloat=newRectFloat(22+column*262,250+row*262,272+column*262,500+row*262);
canvas.drawRect(rectFloat,mPaint);

mPaint.setColor(Color.YELLOW);
mPaint.setTextSize(125);
if(grids[row][column]!=0){
if(grids[row][column]<10){
canvas.drawText(mPaint,String.valueOf(grids[row][column]),105+column*262,425+row*262);
}
else{
canvas.drawText(mPaint,String.valueOf(grids[row][column]),65+column*262,425+row*262);
}
}
}
}
}
};
layout.addDrawTask(task);
setUIContent(layout);
}

再定義函數(shù) changeGrids(int[][] grids,int direction),每次接收一個(gè)方向,2 表示上移,-1 表示左移,1 表示右移,-2 表示下移,找出空白方格所在位置對(duì)應(yīng)的二維數(shù)組下標(biāo),對(duì)應(yīng)的方格和空白方格對(duì)應(yīng)的二維數(shù)組的數(shù)值對(duì)調(diào):

publicvoidchangeGrids(int[][]grids,intdirection){
introw_0=3;
intcolumn_0=3;
inttemp;
for(introw=0;row4;row++){
for(intcolumn=0;column4;column++){
if(grids[row][column]==0){
row_0=row;
column_0=column;
}
}
}
if(direction==-1&&(column_0+1)<=?3){
temp=grids[row_0][column_0+1];
grids[row_0][column_0+1]=grids[row_0][column_0];
grids[row_0][column_0]=temp;
}elseif(direction==1&&(column_0-1)>=0){
temp=grids[row_0][column_0-1];
grids[row_0][column_0-1]=grids[row_0][column_0];
grids[row_0][column_0]=temp;
}elseif(direction==2&&(row_0+1)<=3){
temp=grids[row_0+1][column_0];
grids[row_0+1][column_0]=grids[row_0][column_0];
grids[row_0][column_0]=temp;
}elseif(direction==-2&&(row_0-1)>=0){
temp=grids[row_0-1][column_0];
grids[row_0-1][column_0]=grids[row_0][column_0];
grids[row_0][column_0]=temp;
}
}

定義函數(shù) createGrids(int[][] grids) 用于隨機(jī)生成一個(gè)表示方向的數(shù)字,循環(huán)調(diào)用函數(shù) changeGrids(grids,direction) 用于隨機(jī)打亂二維數(shù)組對(duì)應(yīng)的數(shù)字:

publicvoidcreateGrids(int[][]grids){
int[]array={-1,-2,1,2};

for(inti=0;i100;i++){
intrandom=(int)Math.floor(Math.random()*4);
intdirection=array[random];
changeGrids(grids,direction);
}
}

最后在 initialize() 函數(shù)中調(diào)用 createGrids(grids) 函數(shù)和 drawGrids(grids) 函數(shù):

publicvoidinitialize(){
layout=newDirectionalLayout(this);
grids=newint[][]{{1,2,3,4},{5,6,7,8,},{9,10,11,12},{13,14,15,0}};
createGrids(grids);
drawGrids(grids);
}

至此,這一部分完成了。

04

實(shí)現(xiàn)滑動(dòng)或點(diǎn)擊調(diào)換數(shù)字

添加“重新開始”和“返回”按鈕,在最下方添加四個(gè)指示不同方向箭頭的按鈕,點(diǎn)擊任一按鈕或向上、下、左、右任一方向滑動(dòng),空白方格周圍對(duì)應(yīng)位置的方格便會(huì)隨之向?qū)?yīng)的方向移動(dòng)一格。

在 entry>src>main>java>com.example.myphoneapplication>slice>SecondAbilitySlice 編寫代碼。

先定義一個(gè)函數(shù) drawButton() 用于繪制所有的按鈕,四個(gè)指示不同方向箭頭的按鈕分別添加四個(gè)響應(yīng)點(diǎn)擊事件的函數(shù)。

分別調(diào)用對(duì)應(yīng)的 changeGrids(grids,direction) 函數(shù)實(shí)現(xiàn)空白方格周圍對(duì)應(yīng)位置的方格便會(huì)隨之向?qū)?yīng)的方向移動(dòng)一格,并調(diào)用 drawGrids(grids) 函數(shù)用于繪制新的方陣:
publicvoiddrawButton(){

Buttonbutton=newButton(this);
button.setText("重新開始");
button.setTextSize(100);
button.setTextAlignment(TextAlignment.CENTER);
button.setTextColor(Color.WHITE);
button.setMarginTop(1400);
button.setMarginLeft(80);
button.setPadding(20,20,20,20);
ShapeElementbackground=newShapeElement();
background.setRgbColor(newRgbColor(174,158,143));
background.setCornerRadius(100);
button.setBackground(background);
layout.addComponent(button);

Buttonbutton0=newButton(this);
button0.setText("返回");
button0.setTextSize(100);
button0.setTextAlignment(TextAlignment.CENTER);
button0.setTextColor(Color.WHITE);
button0.setMarginTop(-170);
button0.setMarginLeft(680);
button0.setPadding(20,20,20,20);
button0.setBackground(background);
layout.addComponent(button0);


ShapeElementbackground0=newShapeElement();
background0.setRgbColor(newRgbColor(174,158,143));
background0.setCornerRadius(100);

Buttonbutton1=newButton(this);
button1.setText("↑");
button1.setTextAlignment(TextAlignment.CENTER);
button1.setTextColor(Color.WHITE);
button1.setTextSize(100);
button1.setMarginLeft(500);
button1.setMarginTop(70);
button1.setPadding(10,0,10,0);
button1.setBackground(background0);
button1.setClickedListener(newComponent.ClickedListener(){
@Override
publicvoidonClick(Componentcomponent){
changeGrids(grids,2);
}
});
layout.addComponent(button1);

Buttonbutton2=newButton(this);
button2.setText("←");
button2.setTextAlignment(TextAlignment.CENTER);
button2.setTextColor(Color.WHITE);
button2.setTextSize(100);
button2.setMarginTop(10);
button2.setMarginLeft(400);
button2.setPadding(10,0,10,0);
button2.setBackground(background0);
button2.setClickedListener(newComponent.ClickedListener(){
@Override
publicvoidonClick(Componentcomponent){
changeGrids(grids,-1);
}
});
layout.addComponent(button2);

Buttonbutton3=newButton(this);
button3.setText("→");
button3.setTextAlignment(TextAlignment.CENTER);
button3.setTextColor(Color.WHITE);
button3.setTextSize(100);
button3.setMarginLeft(600);
button3.setMarginTop(-130);
button3.setPadding(10,0,10,0);
button3.setBackground(background0);
button3.setClickedListener(newComponent.ClickedListener(){
@Override
publicvoidonClick(Componentcomponent){
changeGrids(grids,1);
}
});
layout.addComponent(button3);

Buttonbutton4=newButton(this);
button4.setText("↓");
button4.setTextAlignment(TextAlignment.CENTER);
button4.setTextColor(Color.WHITE);
button4.setTextSize(100);
button4.setMarginLeft(500);
button4.setMarginTop(10);
button4.setPadding(10,0,10,0);
button4.setBackground(background0);
button4.setClickedListener(newComponent.ClickedListener(){
@Override
publicvoidonClick(Componentcomponent){
changeGrids(grids,-2);
}
});
layout.addComponent(button4);

drawGrids(grids);
}

然后添加一個(gè)函數(shù) slideGrids() 為布局 layout 添加一個(gè)滑動(dòng)事件,并獲取滑動(dòng)開始與結(jié)束的坐標(biāo),并計(jì)算出大致的滑動(dòng)方向,分別調(diào)用對(duì)應(yīng)的 changeGrids(grids,direction) 函數(shù)實(shí)現(xiàn)空白方格周圍對(duì)應(yīng)位置的方格便會(huì)隨之向?qū)?yīng)的方向移動(dòng)一格,并調(diào)用 drawGrids(grids) 函數(shù)用于繪制新的方陣,并在開頭添加相應(yīng)的變量:

privatefloatstarX,starY,distanceX,distanceY;

publicvoidslideGrids(){
layout.setTouchEventListener(newComponent.TouchEventListener(){
@Override
publicbooleanonTouchEvent(Componentcomponent,TouchEventtouchEvent){
MmiPointpoint=touchEvent.getPointerScreenPosition(0);

switch(touchEvent.getAction()){
caseTouchEvent.PRIMARY_POINT_DOWN:
starX=point.getX();
starY=point.getY();
break;
caseTouchEvent.PRIMARY_POINT_UP:
distanceX=point.getX()-starX;
distanceY=point.getY()-starY;
break;
}
if(gameover()==false){
if(Math.abs(distanceX)>Math.abs(distanceY)){
if(distanceX>200){
changeGrids(grids,1);
}elseif(distanceX-200){
changeGrids(grids,-1);

}
}elseif(Math.abs(distanceX)abs(distanceY)){
if(distanceY>200){
changeGrids(grids,-2);
}elseif(distanceY-200){
changeGrids(grids,2);
}
}
}
drawGrids(grids);

returnfalse;
}
});
}

最后在 initialize() 函數(shù)中調(diào)用 slideGrids() 函數(shù)和 drawButton() 函數(shù):

publicvoidinitialize(){
layout=newDirectionalLayout(this);
grids=newint[][]{{1,2,3,4},{5,6,7,8,},{9,10,11,12},{13,14,15,0}};
createGrids(grids);
slideGrids();
drawButton();
drawGrids(grids);
}

至此,這一部分完成了

05

實(shí)現(xiàn)游戲成功界面

點(diǎn)擊“重新開始”按鈕即會(huì)重新生成隨意打亂的 1 至 15 的數(shù)字和一個(gè)空白方格的方陣,點(diǎn)擊“返回”按鈕即會(huì)切換到數(shù)字華容道的初始界面,經(jīng)過若干次滑動(dòng)或點(diǎn)擊后,當(dāng)所有的數(shù)字按順序排列后,則會(huì)彈出游戲成功的界面,再滑動(dòng)或點(diǎn)擊也不會(huì)有任何變化。

在 entry>src>main>java>com.example.myphoneapplication>slice>SecondAbilitySlice 編寫代碼。

首先定義一個(gè)函數(shù) drawText() 用于繪制游戲成功字樣:

publicvoiddrawText(){
Texttext=newText(this);
text.setText("游戲成功");
text.setTextSize(100);
text.setTextColor(Color.BLUE);
text.setTextAlignment(TextAlignment.CENTER);
text.setMarginsTopAndBottom(-2000,0);
text.setMarginsLeftAndRight(350,0);
layout.addComponent(text);
setUIContent(layout);

}

然后定義一個(gè)函數(shù) gameover() 用于判斷二維數(shù)組的數(shù)字是否按順序排列,當(dāng)二維數(shù)組的數(shù)字按順序排列時(shí)返回 true,否則返回 false:

publicbooleangameover(){
int[][]gameoverGrids={{1,2,3,4},{5,6,7,8,},{9,10,11,12},{13,14,15,0}};
for(introw=0;row4;row++){
for(intcolumn=0;column4;column++){
if(grids[row][column]!=gameoverGrids[row][column]){
returnfalse;
}
}
}

returntrue;
}

再在 drawButton() 函數(shù)中重新開始按鈕中添加一個(gè)響應(yīng)點(diǎn)擊事件的函數(shù),用于調(diào)用函數(shù) initialize() 實(shí)現(xiàn)重新生成隨意打亂的 1 至 15 的數(shù)字和一個(gè)空白方格的方陣,返回按鈕中添加一個(gè)響應(yīng)點(diǎn)擊事件的函數(shù),用 parsen 函數(shù)返回?cái)?shù)字華容道的初始界面,四個(gè)指示不同方向箭頭的按鈕的響應(yīng)點(diǎn)擊事件的函數(shù)中增加一個(gè)判斷,當(dāng)函數(shù) gameover() 返回為 false 時(shí)才調(diào)用各自的 changeGrids(grids,direction) 函數(shù),最后增加一個(gè)判斷,當(dāng)函數(shù) gameover() 返回為 true 時(shí)調(diào)用函數(shù) drawText():

publicvoiddrawButton(){//部分代碼沒有貼出,可自行下載源代碼查看

button.setClickedListener(newComponent.ClickedListener(){
@Override
publicvoidonClick(Componentcomponent){
initialize();
}
});

button0.setClickedListener(newComponent.ClickedListener(){
@Override
publicvoidonClick(Componentcomponent){
present(newSecondAbilitySlice(),newIntent());
}
});

button1.setClickedListener(newComponent.ClickedListener(){
@Override
publicvoidonClick(Componentcomponent){
if(gameover()==false){
changeGrids(grids,2);
}
}
});

button2.setClickedListener(newComponent.ClickedListener(){
@Override
publicvoidonClick(Componentcomponent){
if(gameover()==false){
changeGrids(grids,-1);
}
}
});

button3.setClickedListener(newComponent.ClickedListener(){
@Override
publicvoidonClick(Componentcomponent){
if(gameover()==false){
changeGrids(grids,1);
}
}
});

button4.setClickedListener(newComponent.ClickedListener(){
@Override
publicvoidonClick(Componentcomponent){
if(gameover()==false){
changeGrids(grids,-2);
}
}
});

if(gameover()){
drawText();
}
}

在函數(shù) slideGrids() 函數(shù)中增加一個(gè)判斷,當(dāng)函數(shù) gameover() 返回為 false 時(shí)才調(diào)用 changeGrids(grids,direction) 函數(shù),最后增加一個(gè)判斷,當(dāng)函數(shù) gameover() 返回為 true 時(shí)調(diào)用函數(shù) drawText():

publicvoidslideGrids(){//部分代碼沒有貼出,可自行下載源代碼查看
if(gameover()==false){
//{...}
}
if(gameover()){
drawText();
}
}

至此,整個(gè) demo 全部完成了。

06

結(jié)語

以上就是數(shù)字華容道小游戲在手機(jī)的主要編寫思路以及代碼,源碼將放在附件中,歡迎大家下載,感興趣的讀者可以自行跟著編寫學(xué)習(xí),相信你們也能夠完成的。

此前已經(jīng)在運(yùn)動(dòng)手表上成功開發(fā)了:HarmonyOS 運(yùn)動(dòng)手表游戲合并、HarmonyOS 手表游戲——數(shù)字華容道,同樣是深鴻會(huì)深大小組學(xué)習(xí)完 HarmonyOS 后自行開發(fā)的一個(gè)鴻蒙 demo,詳細(xì)講述了數(shù)字華容道在鴻蒙手機(jī)上開發(fā)思路。

深鴻會(huì)深大學(xué)習(xí)小組是一群熱衷于學(xué)習(xí)鴻蒙相關(guān)知識(shí)和開發(fā)鴻蒙相關(guān)應(yīng)用的開發(fā)者們,我們的學(xué)習(xí)項(xiàng)目為:荔園 Harmony、Awesome-HarmonyOS_木棉花,同時(shí)也歡迎與各位感興趣的讀者一起學(xué)習(xí) HarmonyOS 開發(fā),相互交流、共同進(jìn)步。

責(zé)任編輯:xj

原文標(biāo)題:我的第一個(gè)鴻蒙手機(jī)小游戲?。ǜ皆创a)

文章出處:【微信公眾號(hào):HarmonyOS技術(shù)社區(qū)】歡迎添加關(guān)注!文章轉(zhuǎn)載請(qǐng)注明出處。


聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場(chǎng)。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請(qǐng)聯(lián)系本站處理。 舉報(bào)投訴
  • 手機(jī)游戲
    +關(guān)注

    關(guān)注

    0

    文章

    18

    瀏覽量

    8953
  • 鴻蒙系統(tǒng)
    +關(guān)注

    關(guān)注

    183

    文章

    2634

    瀏覽量

    66348
  • OpenHarmony
    +關(guān)注

    關(guān)注

    25

    文章

    3722

    瀏覽量

    16320

原文標(biāo)題:我的第一個(gè)鴻蒙手機(jī)小游戲?。ǜ皆创a)

文章出處:【微信號(hào):gh_834c4b3d87fe,微信公眾號(hào):OpenHarmony技術(shù)社區(qū)】歡迎添加關(guān)注!文章轉(zhuǎn)載請(qǐng)注明出處。

收藏 人收藏

    評(píng)論

    相關(guān)推薦

    ADS1299在DAISY-CHAIN模式下只能配置第一個(gè)AD嗎,那后面幾個(gè)都是要怎么配置寄存器,都和第一個(gè)樣嗎?

    各位朋友大家好,現(xiàn)在準(zhǔn)備用STM32和5片ADS1299組成個(gè)40通的EEG 采樣系統(tǒng),計(jì)劃使用ADS1299的DAISY-CHAIN 功能,
    發(fā)表于 12-20 06:47

    DAC8734只能把第一個(gè)接收到的數(shù)字數(shù)據(jù)輸出,有哪些原因?qū)е碌哪兀?/a>

    一個(gè)發(fā)送的數(shù)據(jù)時(shí)序沒問題。但DAC8734只能把第一個(gè)接收到的數(shù)字數(shù)據(jù)輸出,用的是TI公司自己的DAC8734EVM??赡苡心男┰?qū)е碌哪??是上電順序的原因嗎?
    發(fā)表于 12-19 09:17

    FPGA打磚塊小游戲設(shè)計(jì)思路

    ? 交流問題 ? Q :FPGA打磚塊小游戲,如何基于FPGA用verilog語言在Vivado平臺(tái)上寫打磚塊小游戲,最好能用到PS2與VGA。 A :以下是個(gè)基于 FPGA? Ve
    的頭像 發(fā)表于 12-09 16:57 ?199次閱讀

    LMK1C1104第一個(gè)cycle在CLKOUT中丟失,為什么?

    LMK1C1104: CLKIN的第一個(gè)cycle在CLKOUT中丟失,詳情請(qǐng)參照關(guān)聯(lián)問題
    發(fā)表于 11-11 07:12

    拿下多個(gè)“世界第一”,TDK InvenSense 陀螺儀大有來頭

    面向智能手機(jī)的集成三軸運(yùn)動(dòng)處理解決方案; 2010年,推出世界上第一個(gè)單芯片集成六軸MotionTracking?(運(yùn)動(dòng)追蹤)設(shè)備; 2012年,推出世界上第一個(gè)集成九軸
    的頭像 發(fā)表于 07-15 09:46 ?802次閱讀
    拿下多個(gè)“世界<b class='flag-5'>第一</b>”,TDK InvenSense 陀螺儀大有來頭

    與屏幕起發(fā)送的第一個(gè)UART數(shù)據(jù)時(shí)出現(xiàn)初始崩潰,但僅在第一次閃存時(shí)出現(xiàn),為什么?

    其他人在閃爍并發(fā)送個(gè) UART 數(shù)據(jù)字符后遇到此問題,導(dǎo)致以下問題,在刷新芯片并崩潰后,在手動(dòng)重置它后,它工作正常,完全沒有問題,但是
    發(fā)表于 07-09 07:39

    學(xué)鴻蒙的1萬個(gè)理由,北京中關(guān)村現(xiàn)大幅鴻蒙海報(bào)

    ,學(xué)習(xí)鴻蒙已成為高校和企業(yè)的熱門趨勢(shì)。隨鴻蒙生態(tài)的飛速發(fā)展,正如張朝陽所說,現(xiàn)在是學(xué)習(xí)鴻蒙的黃金時(shí)期。 最后 如果大家覺得這篇內(nèi)容對(duì)學(xué)習(xí)鴻蒙開發(fā)有幫助,
    發(fā)表于 05-08 20:31

    實(shí)錘!騰訊終于擁抱鴻蒙生態(tài),微信鴻蒙原生版本即將上線

    第一個(gè),也是唯個(gè)手機(jī)操作系統(tǒng)有多么的喜歡。 最后 如果大家覺得這篇內(nèi)容對(duì)學(xué)習(xí)鴻蒙開發(fā)有幫助
    發(fā)表于 04-30 21:14

    求助,用CubeMX配置占空比30%的PWM輸出第一個(gè)波形不準(zhǔn)確是為什么?

    用的是G0的芯片配置,通過抓波發(fā)現(xiàn)第一個(gè)波形永遠(yuǎn)與我配置的占空比不準(zhǔn)確,但是除了第一個(gè)周期不準(zhǔn)確外,后面的都沒問題。
    發(fā)表于 03-18 07:55

    網(wǎng)易首款鴻蒙原生游戲《倩女幽魂》手游完成開發(fā),商業(yè)化版本已就緒

    2023年華為開發(fā)者大會(huì)上,網(wǎng)易游戲不但宣布率先完成《倩女幽魂》開源鴻蒙適配,還作為第一游戲廠商參加了鴻蒙生態(tài)
    的頭像 發(fā)表于 03-13 11:37 ?498次閱讀

    使用 Taro 開發(fā)鴻蒙原生應(yīng)用 —— 快速上手,鴻蒙應(yīng)用開發(fā)指南

    鴻蒙原生應(yīng)用。 在 《使用 Taro 開發(fā)鴻蒙原生應(yīng)用》 系列文章中,我們已經(jīng)介紹了 鴻蒙的基本概念 和 Taro 適配鴻蒙的原理。本文作為該系列的第三篇,將正式為開發(fā)者提供
    的頭像 發(fā)表于 02-02 16:09 ?879次閱讀
    使用 Taro 開發(fā)<b class='flag-5'>鴻蒙</b>原生應(yīng)用 —— 快速上手,<b class='flag-5'>鴻蒙</b>應(yīng)用開發(fā)指南

    招就行—鴻蒙OS 編寫第一個(gè)頁面

    在 Java UI 框架中,提供了兩種編寫布局的方式:在XML中聲明UI布局和在代碼中創(chuàng)建布局。這兩種方式創(chuàng)建出的布局沒有本質(zhì)差別,為了熟悉兩種方式,我們將通過 XML 的方式編寫第一個(gè)頁面,通過
    的頭像 發(fā)表于 01-26 18:01 ?775次閱讀
    <b class='flag-5'>一</b>招就行—<b class='flag-5'>鴻蒙</b>OS 編寫<b class='flag-5'>第一個(gè)</b>頁面

    Harvard FairSeg:第一個(gè)用于醫(yī)學(xué)分割的公平性數(shù)據(jù)集

    為了解決這些挑戰(zhàn),我們提出了第一個(gè)大規(guī)模醫(yī)學(xué)分割領(lǐng)域的公平性數(shù)據(jù)集, Harvard-FairSeg。該數(shù)據(jù)集旨在用于研究公平性的cup-disc segmentation,從SLO眼底圖像中診斷青光眼,如圖1所示。
    的頭像 發(fā)表于 01-25 16:52 ?556次閱讀
    Harvard FairSeg:<b class='flag-5'>第一個(gè)</b>用于醫(yī)學(xué)分割的公平性數(shù)據(jù)集

    世界上第一個(gè)石墨烯半導(dǎo)體的“石墨烯”究竟是什么?

    有媒體報(bào)道稱有研究團(tuán)隊(duì)創(chuàng)造了世界上第一個(gè)由石墨烯制成的功能半導(dǎo)體(Functional Graphene Semiconductor)。
    的頭像 發(fā)表于 01-23 11:26 ?1247次閱讀

    鴻蒙千帆起】《開心消消樂》完成鴻蒙原生應(yīng)用開發(fā),創(chuàng)新多端聯(lián)動(dòng)用戶體驗(yàn)

    《開心消消樂》已經(jīng)完成鴻蒙原生應(yīng)用開發(fā),樂元素成為率先完成鴻蒙原生應(yīng)用開發(fā)的 20+游戲廠商之。作為款經(jīng)典
    發(fā)表于 01-03 10:22