Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Make particle light follow sun angle | ef944efffd223dd843a1471d6b651f5dc46d871b | mse | 2021-11-19 22:14:29 |
Work on particle light and bump version to v0.6.5 | 73b7b68133f7767f78c47492f693c5e9e965e214 | mse | 2021-11-19 08:04:32 |
Improve rim lighting and flatten floor gibs | 4a7082e02eda370dba12bb44089777552859c5bd | mse | 2021-11-18 04:30:05 |
Change rim lighting to specular | 937d99bee19b936fbf95927c5877a915c4128de1 | mse | 2021-11-18 03:49:41 |
Add sprite rim lighting | eb9ade21b6253e050d6962c273187f090c20ff2a | mse | 2021-11-18 01:29:22 |
Bump version to v0.6.4 | c2aeae76122cc95d03756a55a528b62609762820 | mse | 2021-11-17 11:38:37 |
Attempt to fix JSON serializing in locales with commas | beae8b63fb0deaaf0b66ef4f188df270120ebe1c | mse | 2021-11-17 11:19:18 |
Limit network settings to network-enabled builds | 8ccef75176b9059a45afa9ea251c313be7b7cfe0 | mse | 2021-11-17 09:20:56 |
Add /fps console command | 207ef051937c91f78dae3928ef004ee7aa7f2a7a | mse | 2021-11-16 21:33:32 |
Move userdata to game root directory | f9bff9bb941b714e7c0987327804175d852b470b | mse | 2021-11-16 02:55:04 |
Add --savehere flag and bump version to v0.6.3 | a59633113908903af57e4e1c62008fe154d4cbb7 | mse | 2021-11-16 02:12:25 |
Disable networking and remove dead code | aaa8bd8300f89099bace4ee1de374d05dff2c089 | mse | 2021-11-15 05:17:06 |
Update gamecontrollerdb | 828ce88dd2107d69b6332b9768f7c556473b8a24 | mse | 2021-11-14 00:29:26 |
Bump version to 0.6.2 | baa2215230b5deed37b69f4075bd3b3385dbb913 | mse | 2021-11-14 00:08:13 |
Fix controller menu selection | 3a1567ae279289d72058d6aa23d0c4eb147db2a8 | mse | 2021-11-13 23:00:12 |
Chinese translations for confec-select and name-your-confec | 6c5c9d0fadb17066af82d459d1d46868af0e9faa | mse | 2021-11-13 20:58:26 |
Parse newlines in CSL notifications | fc21ba1563a1c36ff20711c84b0dc3f3d7588646 | mse | 2021-11-13 05:12:11 |
Scriptable special items: GIVESPECIAL <id> <name> | 256a2581e75dc3762b098f8cae3259899f8c4a94 | mse | 2021-11-13 03:24:02 |
Improved particles, darker nights, work on GIVESPECIAL | e8e352e03fdffb8a8e57f94f99028bc1c6c03376 | mse | 2021-11-12 08:51:36 |
Fix caption padding bug | a49cd2397d2e1b98679828303116db858d146a93 | mse | 2021-11-08 23:35:07 |
File | Lines added | Lines deleted |
---|---|---|
confec.cpp | 5 | 4 |
File confec.cpp changed (mode: 100644) (index 613fd8c..d38c922) | |||
... | ... | void TurboSleep(){ | |
4094 | 4094 | } | } |
4095 | 4095 | } | } |
4096 | 4096 | ||
4097 | // Update the sun position for sprite rim lighting. | ||
4097 | // Update the sun position for lighting. | ||
4098 | 4098 | void UpdateSun(){ | void UpdateSun(){ |
4099 | 4099 | float angle = player_time * 6.283; | float angle = player_time * 6.283; |
4100 | 4100 | auto sun = linalg::normalize( linalg::vec<float,2>( | auto sun = linalg::normalize( linalg::vec<float,2>( |
... | ... | void UpdateSun(){ | |
4104 | 4104 | // Manhattan normalize. | // Manhattan normalize. |
4105 | 4105 | sun /= std::max( std::abs( sun.x ), std::abs( sun.y ) ); | sun /= std::max( std::abs( sun.x ), std::abs( sun.y ) ); |
4106 | 4106 | if( sun.y > 0.0f ){ | if( sun.y > 0.0f ){ |
4107 | // Ease the rim light out. | ||
4107 | 4108 | sun *= 1.0f - std::min( sun.y / 0.2f, 1.0f ); | sun *= 1.0f - std::min( sun.y / 0.2f, 1.0f ); |
4108 | angle = 3.14159; | ||
4109 | 4109 | } | } |
4110 | 4110 | // Angle the rim light. | // Angle the rim light. |
4111 | 4111 | glUniform2f( | glUniform2f( |
... | ... | void UpdateSun(){ | |
4113 | 4113 | sun.x, | sun.x, |
4114 | 4114 | sun.y | sun.y |
4115 | 4115 | ); | ); |
4116 | // TODO: I don't know what the hell the particles are doing. | ||
4116 | // Clamp the particle light angle to +/- 70 degrees. | ||
4117 | angle = std::min( std::max( angle, 1.92f ), 4.36f ); | ||
4117 | 4118 | fgl::lightMatrix = | fgl::lightMatrix = |
4118 | linalg::rotation_matrix( fgl::eulerToQuat( 0.0, -1.57, 1.57 ) ); | ||
4119 | linalg::rotation_matrix( fgl::eulerToQuat( -1.57, 3.14159 - angle, 0.0 ) ); | ||
4119 | 4120 | } | } |
4120 | 4121 | ||
4121 | 4122 | void UpdateRichPresence(){ | void UpdateRichPresence(){ |