2016-07-17 18:27:49 +03:00
|
|
|
/*******************************************************************************************
|
|
|
|
*
|
|
|
|
* raylib [audio] example - Module playing (streaming)
|
|
|
|
*
|
|
|
|
* NOTE: This example requires OpenAL Soft library installed
|
|
|
|
*
|
|
|
|
* This example has been created using raylib 1.5 (www.raylib.com)
|
|
|
|
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016 Ramon Santamaria (@raysan5)
|
|
|
|
*
|
|
|
|
********************************************************************************************/
|
|
|
|
|
|
|
|
#include "raylib.h"
|
|
|
|
|
|
|
|
#define MAX_CIRCLES 64
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
Vector2 position;
|
|
|
|
float radius;
|
|
|
|
float alpha;
|
|
|
|
float speed;
|
|
|
|
Color color;
|
|
|
|
} CircleWave;
|
|
|
|
|
2019-05-20 17:36:42 +03:00
|
|
|
int main(void)
|
2016-07-17 18:27:49 +03:00
|
|
|
{
|
|
|
|
// Initialization
|
|
|
|
//--------------------------------------------------------------------------------------
|
2019-05-20 17:36:42 +03:00
|
|
|
const int screenWidth = 800;
|
|
|
|
const int screenHeight = 450;
|
2016-07-17 18:27:49 +03:00
|
|
|
|
2018-12-25 17:18:35 +03:00
|
|
|
SetConfigFlags(FLAG_MSAA_4X_HINT); // NOTE: Try to enable MSAA 4X
|
2019-05-20 17:36:42 +03:00
|
|
|
|
2016-07-17 18:27:49 +03:00
|
|
|
InitWindow(screenWidth, screenHeight, "raylib [audio] example - module playing (streaming)");
|
|
|
|
|
2018-12-25 17:18:35 +03:00
|
|
|
InitAudioDevice(); // Initialize audio device
|
2019-05-20 17:36:42 +03:00
|
|
|
|
2016-07-17 18:27:49 +03:00
|
|
|
Color colors[14] = { ORANGE, RED, GOLD, LIME, BLUE, VIOLET, BROWN, LIGHTGRAY, PINK,
|
|
|
|
YELLOW, GREEN, SKYBLUE, PURPLE, BEIGE };
|
2019-05-20 17:36:42 +03:00
|
|
|
|
2016-07-17 18:27:49 +03:00
|
|
|
// Creates ome circles for visual effect
|
|
|
|
CircleWave circles[MAX_CIRCLES];
|
2019-05-20 17:36:42 +03:00
|
|
|
|
2016-07-17 18:27:49 +03:00
|
|
|
for (int i = MAX_CIRCLES - 1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
circles[i].alpha = 0.0f;
|
|
|
|
circles[i].radius = GetRandomValue(10, 40);
|
|
|
|
circles[i].position.x = GetRandomValue(circles[i].radius, screenWidth - circles[i].radius);
|
|
|
|
circles[i].position.y = GetRandomValue(circles[i].radius, screenHeight - circles[i].radius);
|
|
|
|
circles[i].speed = (float)GetRandomValue(1, 100)/20000.0f;
|
|
|
|
circles[i].color = colors[GetRandomValue(0, 13)];
|
|
|
|
}
|
|
|
|
|
2018-12-25 17:18:35 +03:00
|
|
|
Music xm = LoadMusicStream("resources/chiptun1.mod");
|
2019-05-20 17:36:42 +03:00
|
|
|
|
2016-08-01 13:49:17 +03:00
|
|
|
PlayMusicStream(xm);
|
2016-07-17 18:27:49 +03:00
|
|
|
|
|
|
|
float timePlayed = 0.0f;
|
2016-09-15 12:53:16 +03:00
|
|
|
bool pause = false;
|
2016-07-17 18:27:49 +03:00
|
|
|
|
|
|
|
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
|
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Main game loop
|
|
|
|
while (!WindowShouldClose()) // Detect window close button or ESC key
|
|
|
|
{
|
|
|
|
// Update
|
|
|
|
//----------------------------------------------------------------------------------
|
2016-09-15 12:53:16 +03:00
|
|
|
UpdateMusicStream(xm); // Update music buffer with new stream data
|
2019-05-20 17:36:42 +03:00
|
|
|
|
2016-09-15 12:53:16 +03:00
|
|
|
// Restart music playing (stop and play)
|
2019-05-20 17:36:42 +03:00
|
|
|
if (IsKeyPressed(KEY_SPACE))
|
2016-09-15 12:53:16 +03:00
|
|
|
{
|
|
|
|
StopMusicStream(xm);
|
|
|
|
PlayMusicStream(xm);
|
|
|
|
}
|
2019-05-20 17:36:42 +03:00
|
|
|
|
|
|
|
// Pause/Resume music playing
|
2016-09-15 12:53:16 +03:00
|
|
|
if (IsKeyPressed(KEY_P))
|
|
|
|
{
|
|
|
|
pause = !pause;
|
2019-05-20 17:36:42 +03:00
|
|
|
|
2016-09-15 12:53:16 +03:00
|
|
|
if (pause) PauseMusicStream(xm);
|
|
|
|
else ResumeMusicStream(xm);
|
|
|
|
}
|
2019-05-20 17:36:42 +03:00
|
|
|
|
2016-09-15 12:53:16 +03:00
|
|
|
// Get timePlayed scaled to bar dimensions
|
2016-12-25 03:58:56 +03:00
|
|
|
timePlayed = GetMusicTimePlayed(xm)/GetMusicTimeLength(xm)*(screenWidth - 40);
|
2019-05-20 17:36:42 +03:00
|
|
|
|
2016-09-15 12:53:16 +03:00
|
|
|
// Color circles animation
|
|
|
|
for (int i = MAX_CIRCLES - 1; (i >= 0) && !pause; i--)
|
2016-07-17 18:27:49 +03:00
|
|
|
{
|
|
|
|
circles[i].alpha += circles[i].speed;
|
|
|
|
circles[i].radius += circles[i].speed*10.0f;
|
2019-05-20 17:36:42 +03:00
|
|
|
|
2016-07-17 18:27:49 +03:00
|
|
|
if (circles[i].alpha > 1.0f) circles[i].speed *= -1;
|
2019-05-20 17:36:42 +03:00
|
|
|
|
2016-07-17 18:27:49 +03:00
|
|
|
if (circles[i].alpha <= 0.0f)
|
|
|
|
{
|
|
|
|
circles[i].alpha = 0.0f;
|
|
|
|
circles[i].radius = GetRandomValue(10, 40);
|
|
|
|
circles[i].position.x = GetRandomValue(circles[i].radius, screenWidth - circles[i].radius);
|
|
|
|
circles[i].position.y = GetRandomValue(circles[i].radius, screenHeight - circles[i].radius);
|
|
|
|
circles[i].color = colors[GetRandomValue(0, 13)];
|
|
|
|
circles[i].speed = (float)GetRandomValue(1, 100)/20000.0f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Draw
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
BeginDrawing();
|
|
|
|
|
2016-11-25 00:41:22 +03:00
|
|
|
ClearBackground(RAYWHITE);
|
2019-05-20 17:36:42 +03:00
|
|
|
|
2016-11-21 21:50:31 +03:00
|
|
|
for (int i = MAX_CIRCLES - 1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
DrawCircleV(circles[i].position, circles[i].radius, Fade(circles[i].color, circles[i].alpha));
|
|
|
|
}
|
2019-05-20 17:36:42 +03:00
|
|
|
|
2016-07-17 18:27:49 +03:00
|
|
|
// Draw time bar
|
|
|
|
DrawRectangle(20, screenHeight - 20 - 12, screenWidth - 40, 12, LIGHTGRAY);
|
|
|
|
DrawRectangle(20, screenHeight - 20 - 12, (int)timePlayed, 12, MAROON);
|
2016-11-21 21:50:31 +03:00
|
|
|
DrawRectangleLines(20, screenHeight - 20 - 12, screenWidth - 40, 12, GRAY);
|
2016-07-17 18:27:49 +03:00
|
|
|
|
|
|
|
EndDrawing();
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
}
|
|
|
|
|
|
|
|
// De-Initialization
|
|
|
|
//--------------------------------------------------------------------------------------
|
2016-08-01 13:49:17 +03:00
|
|
|
UnloadMusicStream(xm); // Unload music stream buffers from RAM
|
2019-05-20 17:36:42 +03:00
|
|
|
|
2016-07-17 18:27:49 +03:00
|
|
|
CloseAudioDevice(); // Close audio device (music streaming is automatically stopped)
|
|
|
|
|
|
|
|
CloseWindow(); // Close window and OpenGL context
|
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|