gosu 1.0.0 → 1.1.0.pre1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,82 +0,0 @@
1
- #pragma once
2
-
3
- #ifdef __cplusplus
4
- extern "C" {
5
- #endif
6
-
7
- #include <Gosu/Window.h>
8
- #include <Gosu/Image.h>
9
- #include <Gosu/Font.h>
10
- #include <Gosu/Color.h>
11
- #include <Gosu/TextInput.h>
12
- #include <Gosu/Sample.h>
13
- #include <Gosu/Song.h>
14
- #include <Gosu/Channel.h>
15
-
16
- // Graphics operations
17
- void Gosu_gl_z(double z, void function(void *data), void* data);
18
- void Gosu_gl(void function(void *data), void* data);
19
- void Gosu_flush();
20
- Gosu_Image* Gosu_render(int width, int height, void function(void *data), void* data, unsigned image_flags);
21
- Gosu_Image* Gosu_record(int width, int height, void function(void *data), void* data);
22
- void Gosu_clip_to(double x, double y, double width, double height, void function(void *data), void* data);
23
-
24
- // Transformations
25
- void Gosu_transform(double m0, double m1, double m2, double m3, double m4, double m5, double m6,
26
- double m7, double m8, double m9, double m10, double m11, double m12, double m13,
27
- double m14, double m15, void function(void *data), void* data);
28
- void Gosu_translate(double x, double y, void function(void *data), void* data);
29
- void Gosu_scale(double scale_x, double scale_y, double around_x, double around_y, void function(void *data), void* data);
30
- void Gosu_rotate(double angle, double around_x, double around_y, void function(void *data), void* data);
31
-
32
- void Gosu_clip_to(double x, double y, double width, double height, void function(void *data), void* data);
33
-
34
- // Rendering
35
- void Gosu_draw_line(double x1, double y1, unsigned c1,
36
- double x2, double y2, unsigned c2,
37
- double z, unsigned mode);
38
- void Gosu_draw_triangle(double x1, double y1, unsigned c1,
39
- double x2, double y2, unsigned c2,
40
- double x3, double y3, unsigned c3,
41
- double z, unsigned mode);
42
- void Gosu_draw_rect(double x, double y, double width, double height, unsigned c, double z, unsigned mode);
43
- void Gosu_draw_quad(double x1, double y1, unsigned c1,
44
- double x2, double y2, unsigned c2,
45
- double x3, double y3, unsigned c3,
46
- double x4, double y4, unsigned c4,
47
- double z, unsigned mode);
48
-
49
- // Math functions
50
- double Gosu_distance(double x1, double y1, double x2, double y2);
51
-
52
- double Gosu_angle(double from_x, double from_y, double to_x, double to_y);
53
- double Gosu_angle_diff(double from, double to);
54
-
55
- double Gosu_offset_x(double angle, double radius);
56
- double Gosu_offset_y(double angle, double radius);
57
-
58
- double Gosu_random(double min, double max);
59
-
60
- // Window/Screen information
61
- unsigned Gosu_available_width(Gosu_Window* window);
62
- unsigned Gosu_available_height(Gosu_Window* window);
63
- unsigned Gosu_screen_width(Gosu_Window* window);
64
- unsigned Gosu_screen_height(Gosu_Window* window);
65
-
66
- // Button querying
67
- int Gosu_button_down(int id);
68
- const char* Gosu_button_id_to_char(int id);
69
- unsigned Gosu_button_char_to_id(const char* character);
70
- const char *Gosu_button_name(int id);
71
- const char *Gosu_gamepad_name(int id);
72
- double Gosu_axis(int id);
73
-
74
- // Misc
75
- int Gosu_fps();
76
- const char* Gosu_language();
77
- long Gosu_milliseconds();
78
- const char* Gosu_default_font_name();
79
-
80
- #ifdef __cplusplus
81
- }
82
- #endif
@@ -1,54 +0,0 @@
1
- #pragma once
2
-
3
- #ifdef __cplusplus
4
- extern "C" {
5
- #endif
6
-
7
- typedef struct Gosu_Image Gosu_Image;
8
-
9
- typedef struct Gosu_GLTexInfo {
10
- int tex_name;
11
- double left, right, top, bottom;
12
- } Gosu_GLTexInfo;
13
-
14
- // Constructor
15
- Gosu_Image* Gosu_Image_create(const char *filename, unsigned image_flags);
16
- Gosu_Image *Gosu_Image_create_from_blob(unsigned char *blob, int byte_count, int width, int height, unsigned image_flags); // support for RMagick blob objects
17
- Gosu_Image *Gosu_Image_create_from_markup(const char *markup, const char *font, double font_height,
18
- int width, double spacing, unsigned align, unsigned font_flags, unsigned image_flags);
19
- Gosu_Image* Gosu_Image_create_from_text(const char *text, const char *font, double font_height,
20
- int width, double spacing, unsigned align, unsigned font_flags, unsigned image_flags);
21
- Gosu_Image* Gosu_Image_create_from_subimage(Gosu_Image *source, int left, int top, int width, int height);
22
-
23
- void Gosu_Image_create_from_tiles(const char *source, int tile_width, int tile_height, void function(void* data, Gosu_Image* image), void *data, unsigned image_flags);
24
- void Gosu_Image_create_tiles_from_image(Gosu_Image *image, int tile_width, int tile_height, void function(void *data, Gosu_Image *image), void *data, unsigned image_flags);
25
-
26
- // Destructor
27
- void Gosu_Image_destroy(Gosu_Image *image);
28
-
29
- // Image properties
30
- unsigned Gosu_Image_width(Gosu_Image *image);
31
- unsigned Gosu_Image_height(Gosu_Image *image);
32
-
33
- // Rendering
34
- void Gosu_Image_draw(Gosu_Image *image, double x, double y, double z,
35
- double scale_x, double scale_y, unsigned color, unsigned mode);
36
- void Gosu_Image_draw_rot(Gosu_Image *image, double x, double y, double z,
37
- double angle, double center_x, double center_y,
38
- double scale_x, double scale_y, unsigned color, unsigned mode);
39
- void Gosu_Image_draw_as_quad(Gosu_Image *image, double x1, double y1, unsigned color1,
40
- double x2, double y2, unsigned color2,
41
- double x3, double y3, unsigned color3,
42
- double x4, double y4, unsigned color4,
43
- double z, unsigned mode);
44
-
45
- // Operations
46
- void Gosu_Image_insert(Gosu_Image *image, Gosu_Image *source, int x, int y);
47
- void Gosu_Image_save(Gosu_Image *image, const char *filename);
48
- unsigned char* Gosu_Image_to_blob(Gosu_Image *image);
49
- Gosu_GLTexInfo* Gosu_Image_gl_tex_info_create(Gosu_Image *image);
50
- void Gosu_Image_gl_tex_info_destroy(Gosu_GLTexInfo *tex_info);
51
-
52
- #ifdef __cplusplus
53
- }
54
- #endif
@@ -1,19 +0,0 @@
1
- #pragma once
2
-
3
- #include <Gosu/Channel.h>
4
-
5
- #ifdef __cplusplus
6
- extern "C" {
7
- #endif
8
-
9
- typedef struct Gosu_Sample Gosu_Sample;
10
-
11
- Gosu_Sample* Gosu_Sample_create(const char* filename);
12
- void Gosu_Sample_destroy(Gosu_Sample* sample);
13
-
14
- Gosu_Channel* Gosu_Sample_play(Gosu_Sample *sample, double volume, double speed, bool looping);
15
- Gosu_Channel* Gosu_Sample_play_pan(Gosu_Sample *sample, double pan, double volume, double speed, bool looping);
16
-
17
- #ifdef __cplusplus
18
- }
19
- #endif
@@ -1,24 +0,0 @@
1
- #pragma once
2
-
3
- #ifdef __cplusplus
4
- extern "C" {
5
- #endif
6
-
7
- typedef struct Gosu_Song Gosu_Song;
8
-
9
- Gosu_Song* Gosu_Song_create(const char* filename);
10
- void Gosu_Song_destroy(Gosu_Song* song);
11
-
12
- void Gosu_Song_pause(Gosu_Song* song);
13
- bool Gosu_Song_paused(Gosu_Song* song);
14
- void Gosu_Song_play(Gosu_Song* song, bool looping);
15
- bool Gosu_Song_playing(Gosu_Song* song);
16
- void Gosu_Song_stop(Gosu_Song* song);
17
- double Gosu_Song_volume(Gosu_Song* song);
18
- void Gosu_Song_set_volume(Gosu_Song* song, double volume);
19
-
20
- Gosu_Song* Gosu_Song_current_song();
21
-
22
- #ifdef __cplusplus
23
- }
24
- #endif
@@ -1,30 +0,0 @@
1
- #pragma once
2
-
3
- #ifdef __cplusplus
4
- extern "C" {
5
- #endif
6
-
7
- typedef struct Gosu_TextInput Gosu_TextInput;
8
-
9
- Gosu_TextInput* Gosu_TextInput_create();
10
-
11
- const char* Gosu_TextInput_text(Gosu_TextInput* text_input);
12
- void Gosu_TextInput_set_text(Gosu_TextInput* text_input, const char* text);
13
-
14
- unsigned Gosu_TextInput_caret_pos(Gosu_TextInput* text_input);
15
- void Gosu_TextInput_set_caret_pos(Gosu_TextInput* text_input, unsigned pos);
16
-
17
- unsigned Gosu_TextInput_selection_start(Gosu_TextInput* text_input);
18
- void Gosu_TextInput_set_selection_start(Gosu_TextInput* text_input, unsigned pos);
19
-
20
- void Gosu_TextInput_set_filter(Gosu_TextInput *text_input, void function(void* data, const char* text), void* data);
21
- void Gosu_TextInput_set_filter_result(Gosu_TextInput *text_input, const char* result);
22
- void Gosu_TextInput_insert_text(Gosu_TextInput *text_input, const char* text);
23
- void Gosu_TextInput_delete_backward(Gosu_TextInput *text_input);
24
- void Gosu_TextInput_delete_forward(Gosu_TextInput *text_input);
25
-
26
- void Gosu_TextInput_destroy(Gosu_TextInput* text_input);
27
-
28
- #ifdef __cplusplus
29
- }
30
- #endif
@@ -1,63 +0,0 @@
1
- #pragma once
2
- #include <stdbool.h>
3
- #include "TextInput.h"
4
-
5
- #ifdef __cplusplus
6
- extern "C" {
7
- #endif
8
-
9
- typedef struct Gosu_Window Gosu_Window;
10
-
11
- // Constructor
12
- Gosu_Window* Gosu_Window_create(int width, int height, bool fullscreen, double update_interval, bool resizable);
13
-
14
- // callbacks
15
- void Gosu_Window_set_update(Gosu_Window *window, void function(void *data), void* data);
16
- void Gosu_Window_set_draw(Gosu_Window *window, void function(void *data), void* data);
17
- void Gosu_Window_set_button_down(Gosu_Window *window, void function(void *data, unsigned btn), void* data);
18
- void Gosu_Window_set_button_up(Gosu_Window *window, void function(void *data, unsigned btn), void* data);
19
- void Gosu_Window_set_gamepad_connected(Gosu_Window *window, void function(void *data, int id), void* data);
20
- void Gosu_Window_set_gamepad_disconnected(Gosu_Window *window, void function(void *data, int id), void* data);
21
- void Gosu_Window_set_drop(Gosu_Window *window, void function(void *data, const char *filename), void* data);
22
- void Gosu_Window_set_needs_redraw(Gosu_Window *window, bool function(void *data), void* data);
23
- void Gosu_Window_set_needs_cursor(Gosu_Window *window, bool function(void *data), void* data);
24
- void Gosu_Window_set_close(Gosu_Window *window, void function(void *data), void* data);
25
-
26
- void Gosu_Window_default_button_down(Gosu_Window* window, unsigned btn);
27
-
28
- // Properties
29
- int Gosu_Window_width(Gosu_Window* window);
30
- int Gosu_Window_height(Gosu_Window* window);
31
- bool Gosu_Window_is_fullscreen(Gosu_Window* window);
32
- bool Gosu_Window_is_resizable(Gosu_Window* window);
33
- double Gosu_Window_update_interval(Gosu_Window* window);
34
- const char* Gosu_Window_caption(Gosu_Window* window);
35
-
36
- Gosu_TextInput* Gosu_Window_text_input(Gosu_Window *window);
37
- double Gosu_Window_mouse_x(Gosu_Window* window);
38
- double Gosu_Window_mouse_y(Gosu_Window* window);
39
- int Gosu_Window_is_button_down(Gosu_Window* window, unsigned btn);
40
-
41
- // Setters
42
- void Gosu_Window_set_text_input(Gosu_Window *window, Gosu_TextInput *text_input);
43
- void Gosu_Window_set_caption(Gosu_Window* window, const char* caption);
44
- void Gosu_Window_set_update_interval(Gosu_Window* window, double update_interval);
45
- void Gosu_Window_set_mouse_x(Gosu_Window* window, double width);
46
- void Gosu_Window_set_mouse_y(Gosu_Window* window, double height);
47
- void Gosu_Window_set_width(Gosu_Window* window, int width);
48
- void Gosu_Window_set_height(Gosu_Window* window, int height);
49
-
50
- void Gosu_Window_resize(Gosu_Window* window, int width, int height, bool fullscreen);
51
-
52
- // Main Loop
53
- void Gosu_Window_show(Gosu_Window* window);
54
- void Gosu_Window_close_immediately(Gosu_Window* window);
55
- bool Gosu_Window_tick(Gosu_Window* window);
56
-
57
- // Destructor
58
- void Gosu_Window_destroy(Gosu_Window* window);
59
-
60
-
61
- #ifdef __cplusplus
62
- }
63
- #endif
@@ -1,50 +0,0 @@
1
- #include <Gosu/Audio.hpp>
2
- #include <Gosu/Channel.h>
3
-
4
- extern "C" {
5
-
6
- Gosu_Channel *Gosu_Channel_create(Gosu_Channel *channel)
7
- {
8
- return channel;
9
- }
10
-
11
- bool Gosu_Channel_playing(Gosu_Channel *channel)
12
- {
13
- return reinterpret_cast<Gosu::Channel *>(channel)->playing();
14
- }
15
- void Gosu_Channel_pause(Gosu_Channel *channel)
16
- {
17
- reinterpret_cast<Gosu::Channel *>(channel)->pause();
18
- }
19
- bool Gosu_Channel_paused(Gosu_Channel *channel)
20
- {
21
- return reinterpret_cast<Gosu::Channel *>(channel)->paused();
22
- }
23
- void Gosu_Channel_resume(Gosu_Channel *channel)
24
- {
25
- reinterpret_cast<Gosu::Channel *>(channel)->resume();
26
- }
27
- void Gosu_Channel_stop(Gosu_Channel *channel)
28
- {
29
- reinterpret_cast<Gosu::Channel *>(channel)->stop();
30
- }
31
-
32
- void Gosu_Channel_set_volume(Gosu_Channel *channel, double volume)
33
- {
34
- reinterpret_cast<Gosu::Channel *>(channel)->set_volume(volume);
35
- }
36
- void Gosu_Channel_set_speed(Gosu_Channel *channel, double speed)
37
- {
38
- reinterpret_cast<Gosu::Channel *>(channel)->set_speed(speed);
39
- }
40
- void Gosu_Channel_set_pan(Gosu_Channel *channel, double pan)
41
- {
42
- reinterpret_cast<Gosu::Channel *>(channel)->set_pan(pan);
43
- }
44
-
45
- void Gosu_Channel_destroy(Gosu_Channel *channel)
46
- {
47
- delete (reinterpret_cast<Gosu::Channel *>(channel));
48
- }
49
-
50
- }
@@ -1,126 +0,0 @@
1
- #include <Gosu/Color.hpp>
2
- #include <Gosu/Color.h>
3
-
4
- #ifdef __cplusplus
5
- extern "C" {
6
- #endif
7
-
8
- unsigned Gosu_Color_create(unsigned argb)
9
- {
10
- return Gosu::Color(argb).argb();
11
- }
12
- unsigned Gosu_Color_create_argb(Gosu_Color_Channel a, Gosu_Color_Channel r, Gosu_Color_Channel g, Gosu_Color_Channel b)
13
- {
14
- return Gosu::Color(a, r, g, b).argb();
15
- }
16
- unsigned Gosu_Color_create_from_hsv(double h, double s, double v)
17
- {
18
- return Gosu::Color::from_hsv(h, s, v).argb();
19
- }
20
- unsigned Gosu_Color_create_from_ahsv(Gosu_Color_Channel alpha, double h, double s, double v)
21
- {
22
- return Gosu::Color::from_ahsv(alpha, h, s, v).argb();
23
- }
24
-
25
- Gosu_Color_Channel Gosu_Color_alpha(unsigned color)
26
- {
27
- return Gosu::Color(color).alpha();
28
- }
29
- Gosu_Color_Channel Gosu_Color_red(unsigned color)
30
- {
31
- return Gosu::Color(color).red();
32
- }
33
- Gosu_Color_Channel Gosu_Color_green(unsigned color)
34
- {
35
- return Gosu::Color(color).green();
36
- }
37
- Gosu_Color_Channel Gosu_Color_blue(unsigned color)
38
- {
39
- return Gosu::Color(color).blue();
40
- }
41
-
42
- unsigned Gosu_Color_set_alpha(unsigned color, Gosu_Color_Channel value)
43
- {
44
- Gosu::Color gosu_color = Gosu::Color(color);
45
- gosu_color.set_alpha(value);
46
-
47
- return gosu_color.argb();
48
- }
49
- unsigned Gosu_Color_set_red(unsigned color, Gosu_Color_Channel value)
50
- {
51
- Gosu::Color gosu_color = Gosu::Color(color);
52
- gosu_color.set_red(value);
53
-
54
- return gosu_color.argb();
55
- }
56
- unsigned Gosu_Color_set_green(unsigned color, Gosu_Color_Channel value)
57
- {
58
- Gosu::Color gosu_color = Gosu::Color(color);
59
- gosu_color.set_green(value);
60
-
61
- return gosu_color.argb();
62
- }
63
- unsigned Gosu_Color_set_blue(unsigned color, Gosu_Color_Channel value)
64
- {
65
- Gosu::Color gosu_color = Gosu::Color(color);
66
- gosu_color.set_blue(value);
67
-
68
- return gosu_color.argb();
69
- }
70
-
71
- double Gosu_Color_hue(unsigned color)
72
- {
73
- return Gosu::Color(color).hue();
74
- }
75
- double Gosu_Color_saturation(unsigned color)
76
- {
77
- return Gosu::Color(color).saturation();
78
- }
79
- double Gosu_Color_value(unsigned color)
80
- {
81
- return Gosu::Color(color).value();
82
- }
83
-
84
- unsigned Gosu_Color_set_hue(unsigned color, double value)
85
- {
86
- Gosu::Color gosu_color = Gosu::Color(color);
87
- gosu_color.set_hue(value);
88
-
89
- return gosu_color.argb();
90
- }
91
- unsigned Gosu_Color_set_saturation(unsigned color, double value)
92
- {
93
- Gosu::Color gosu_color = Gosu::Color(color);
94
- gosu_color.set_saturation(value);
95
-
96
- return gosu_color.argb();
97
- }
98
- unsigned Gosu_Color_set_value(unsigned color, double value)
99
- {
100
- Gosu::Color gosu_color = Gosu::Color(color);
101
- gosu_color.set_value(value);
102
-
103
- return gosu_color.argb();
104
- }
105
-
106
- unsigned Gosu_Color_argb(unsigned color)
107
- {
108
- return Gosu::Color(color).argb();
109
- }
110
- unsigned Gosu_Color_bgr(unsigned color)
111
- {
112
- return Gosu::Color(color).bgr();
113
- }
114
- unsigned Gosu_Color_abgr(unsigned color)
115
- {
116
- return Gosu::Color(color).abgr();
117
- }
118
-
119
- unsigned Gosu_Color_gl(unsigned color)
120
- {
121
- return color;
122
- }
123
-
124
- #ifdef __cplusplus
125
- }
126
- #endif