2017年4月24日 星期一

David_Sprite notes

玩遊戲射擊   google: NeHe Lesson 32
下載 Lesson32   最下面有visual c++ 範例

解壓縮 \Lesson32\lesson32.exe
ESC 退出遊戲

加入聲音:
GLUT 程式寫入

#include <mmsystem.h>

void mouse(int button,int state,int x,int y)
{
    PlaySound("C;\\Users\\user\\Desktop\\Lesson32\\data/shot.way",NULL,SND_ASYNC);
}

int main()裡面 加入  glutMouseFunc(mouse);
加入 keybroad(小鋼琴)
int keyboard(unsigned char key,int x,int y)
{
    if(key=='1')PlaySound("DO.WAV",NULL,SND_ASYNC);
    if(key=='2')PlaySound("RE.WAV",NULL,SND_ASYNC);
    if(key=='3')PlaySound("MI.WAV",NULL,SND_ASYNC);
    if(key=='4')PlaySound("FA.WAV",NULL,SND_ASYNC);
    if(key=='5')PlaySound("SO.WAV",NULL,SND_ASYNC);
}

int main() 加入
    myMP3.Load("C:\\Users\\user\\Desktop\\music\\XXXXXX.mp3"); \\\路徑
    myMP3.Play(); \\\開啟後 直接撥放




沒有留言:

張貼留言