2016年5月3日 星期二

WEEK 11 鄭彥謙

HW1
打開CODE BLOCKS的貝殼專案
                               在桌面建立資料夾
將DO,RE,MI.wav檔複製到file
程式碼
                              #include <iostream>
                              #include <windows.h>
                              #include <mmsystem.h>

                              using namespace std;

                              int main()
                              {
                                cout << "Hello world!" << endl;
                                PlaySoundA("Do.wav", NULL, SND_SYNC);
                                PlaySoundA("Re.wav", NULL, SND_SYNC);
                                PlaySoundA("Mi.wav", NULL, SND_SYNC);



                                return 0;
                              }
                                                                            BUILD
                                                                    LINK輸入"winmm"


HW2
開貝殼專案

在Build Options加入咒語




把freeglut移到桌面 新增以下



打上程式碼
#include <GL/glut.h>
#include <windows.h>
#include <mmsystem.h>
void display()
{


}
void keyboard(unsigned char key, int x, int y)
{
    if(key=='1')PlaySoundA("Do.wav", NULL, SND_ASYNC);
    if(key=='2')PlaySoundA("Re.wav", NULL, SND_ASYNC);
    if(key=='3')PlaySoundA("Mi.wav", NULL, SND_ASYNC);
}
int main(int argc, char**argv)
{
    glutInit(&argc, argv);
    glutInitDisplayMode(GLUT_DOUBLE | GLUT_DEPTH);
    glutCreateWindow("3D and Sound");

    glutDisplayFunc(display);
    glutKeyboardFunc(keyboard);

    glutMainLoop();
    return 0;


}


把freeglut.dll移到專案資料夾裡


執行結果

HW3
\載一個MP3檔 丟入專案資料夾

youtube mp3 轉檔

將老師給的"CMP3_MCI"標頭檔也放入資料夾

















改寫程式#include <GL/glut.h>
#include <windows.h>
#include <mmsystem.h>
#include "CMP3_MCI.h"
CMP3_MCI myMP3;
using namespace std;
void display()
{

}
void keyboard(unsigned char key,int x,int y)
{
    if(key=='1') PlaySoundA("Do.wav",NULL,SND_ASYNC);
    if(key=='2') PlaySoundA("Re.wav",NULL,SND_ASYNC);
    if(key=='3') PlaySoundA("Mi.wav",NULL,SND_ASYNC);
    if(key=='4') PlaySoundA("Fa.wav",NULL,SND_ASYNC);
    if(key=='5') PlaySoundA("Sol.wav",NULL,SND_ASYNC);
    if(key=='6') PlaySoundA("La.wav",NULL,SND_ASYNC);
    if(key=='7') PlaySoundA("Si.wav",NULL,SND_ASYNC);
}
int main(int argc,char**argv)
{
    glutInit(&argc,argv);
    glutInitDisplayMode(GLUT_DOUBLE | GLUT_DEPTH);
    glutCreateWindow("3D sound version");
    glutDisplayFunc(display);
    glutKeyboardFunc(keyboard);
    myMP3.Load("music.mp3");
    myMP3.Play();
    glutMainLoop();
}


視窗跳出即有音樂播放且可伴隨鍵盤彈鋼琴



沒有留言:

張貼留言