forked from ggez/ggez
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshader.rs
103 lines (89 loc) · 2.6 KB
/
shader.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
//! A very simple shader example.
#[macro_use]
extern crate gfx;
extern crate cgmath;
extern crate ggez;
use ggez::event;
use ggez::graphics::{self, DrawMode};
use ggez::timer;
use ggez::{Context, GameResult};
use std::env;
use std::path;
gfx_defines! {
constant Dim {
rate: f32 = "u_Rate",
}
}
struct MainState {
dim: Dim,
shader: graphics::Shader<Dim>,
}
impl MainState {
fn new(ctx: &mut Context) -> GameResult<MainState> {
let dim = Dim { rate: 0.5 };
let shader = graphics::Shader::new(
ctx,
"/basic_150.glslv",
"/dimmer_150.glslf",
dim,
"Dim",
None,
)?;
Ok(MainState { dim, shader })
}
}
impl event::EventHandler for MainState {
fn update(&mut self, ctx: &mut Context) -> GameResult {
self.dim.rate = 0.5 + (((timer::ticks(ctx) as f32) / 100.0).cos() / 2.0);
Ok(())
}
fn draw(&mut self, ctx: &mut Context) -> GameResult {
graphics::clear(ctx, [0.1, 0.2, 0.3, 1.0].into());
let circle = graphics::Mesh::new_circle(
ctx,
DrawMode::fill(),
cgmath::Point2::new(100.0, 300.0),
100.0,
2.0,
graphics::WHITE,
)?;
graphics::draw(ctx, &circle, (cgmath::Point2::new(0.0, 0.0),))?;
{
let _lock = graphics::use_shader(ctx, &self.shader);
self.shader.send(ctx, self.dim)?;
let circle = graphics::Mesh::new_circle(
ctx,
DrawMode::fill(),
cgmath::Point2::new(400.0, 300.0),
100.0,
2.0,
graphics::WHITE,
)?;
graphics::draw(ctx, &circle, (cgmath::Point2::new(0.0, 0.0),))?;
}
let circle = graphics::Mesh::new_circle(
ctx,
DrawMode::fill(),
cgmath::Point2::new(700.0, 300.0),
100.0,
2.0,
graphics::WHITE,
)?;
graphics::draw(ctx, &circle, (cgmath::Point2::new(0.0, 0.0),))?;
graphics::present(ctx)?;
Ok(())
}
}
pub fn main() -> GameResult {
let resource_dir = if let Ok(manifest_dir) = env::var("CARGO_MANIFEST_DIR") {
let mut path = path::PathBuf::from(manifest_dir);
path.push("resources");
path
} else {
path::PathBuf::from("./resources")
};
let cb = ggez::ContextBuilder::new("shader", "ggez").add_resource_path(resource_dir);
let (ctx, event_loop) = &mut cb.build()?;
let state = &mut MainState::new(ctx)?;
event::run(ctx, event_loop, state)
}