Compare commits

...

No commits in common. "v1.0.0" and "2.1.1" have entirely different histories.

352 changed files with 417 additions and 1 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
build
build.zip

Binary file not shown.

Binary file not shown.

6
README.md Normal file
View file

@ -0,0 +1,6 @@
# EnderNon's Dark Wynncraft Pack
A resource pack that makes the game's GUIs dark themed. This pack is my own work with some inspiration from brilliantknight's Stone Tablet pack.
# Where do I download this?
Go to the Releases tab. https://git.frfrnocap.men/wynnpacks/wynn-darkmode/releases

View file

@ -0,0 +1,84 @@
#version 150
in vec4 vertexColor;
flat in vec2 flatCorner;
in vec2 Pos1;
in vec2 Pos2;
in vec4 Coords;
in vec2 position;
uniform vec4 ColorModulator;
out vec4 fragColor;
vec4 colors[4] = vec4[](
vec4(0),
vec4(20, 17, 25, 255) / 255,
vec4(73, 40, 121, 255) / 255,
vec4(42, 31, 61, 255) / 255
);
int bitmap[64] = int[](
0, 0, 1, 1, 1, 1, 1, 1,
0, 1, 3, 3, 3, 3, 3, 3,
1, 3, 3, 2, 2, 2, 2, 2,
1, 3, 2, 2, 3, 3, 3, 3,
1, 3, 2, 3, 3, 3, 3, 3,
1, 3, 2, 3, 3, 3, 3, 3,
1, 3, 2, 3, 3, 3, 3, 3,
1, 3, 2, 3, 3, 3, 3, 3
);
void main() {
vec4 color = vertexColor;
if (color.a == 0.0) {
discard;
}
fragColor = color * ColorModulator;
if (flatCorner != vec2(-1))
{
//Actual Pos
vec2 APos1 = Pos1;
vec2 APos2 = Pos2;
APos1 = round(APos1 / (flatCorner.x == 0 ? 1 - Coords.z : 1 - Coords.w)); //Right-up corner
APos2 = round(APos2 / (flatCorner.x == 0 ? Coords.w : Coords.z)); //Left-down corner
ivec2 res = ivec2(abs(APos1 - APos2)) - 1; //Resolution of frame
ivec2 stp = ivec2(min(APos1, APos2)); //Left-Up corner
ivec2 pos = ivec2(floor(position)) - stp; //Position in frame
vec4 col = vec4(42, 31, 61, 255) / 255.0;
col.rgb -= max(1 - length((pos - res / 2.0) / res) * 2, 0) / 10;
ivec2 corner = min(pos, res - pos);
if (corner.x < 8 && corner.y < 8)
{
int bit = bitmap[corner.y * 8 + corner.x];
if (bit == 0)
discard;
if (bit != 4)
col = colors[bit];
}
else if (corner.x == 0) // left and right side: Outer
col = colors[1];
else if (corner.x == 2) // left and right side: Middle
col = colors[3];
else if (corner.x == 3) // left and right side: Inner ish
col = colors[2];
else if (corner.y == 0) // top and bottom side: Outer
col = colors[1];
else if (corner.y == 2) // top and bottom side: Middle
col = colors[3];
else if (corner.y == 3) // top and bottom side: Inner ish
col = colors[2];
fragColor = col;
}
}

View file

@ -0,0 +1,19 @@
{
"blend": {
"func": "add",
"srcrgb": "srcalpha",
"dstrgb": "1-srcalpha"
},
"vertex": "position_color",
"fragment": "position_color",
"attributes": [
"Color"
],
"samplers": [
],
"uniforms": [
{ "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] },
{ "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] },
{ "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }
]
}

View file

@ -0,0 +1,61 @@
#version 150
in vec3 Position;
in vec4 Color;
uniform mat4 ModelViewMat;
uniform mat4 ProjMat;
uniform vec2 ScreenSize;
out vec4 vertexColor;
out vec4 Coords;
out vec2 position;
flat out vec2 flatCorner;
out vec2 Pos1;
out vec2 Pos2;
bool isTooltip(mat4 ProjMat,vec3 Position) {
return ProjMat[2][3] == 0 && Position.z > 300 && Position.z < 500;
}
void main() {
vertexColor = Color;
gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0);
Coords = vec4(-1);
position = vec2(-1);
Pos1 = vec2(-1);
Pos2 = vec2(-1);
flatCorner = vec2(-1);
//Tooltip frame
if (Color.r != 0 && Color.g == 0 && Color.b != 0 && ProjMat[3][0] == -1)
{
int id = gl_VertexID / 4;
int vertID = (gl_VertexID) % 4;
const vec2[4] corners = vec2[4](vec2(0, 0), vec2(0, 1), vec2(1, 1), vec2(1, 0));
vec2 ScrSize = 2 / vec2(ProjMat[0][0], -ProjMat[1][1]);
vec3 Pos = Position - vec3(corners[((gl_VertexID) ) % 4] * -10 - (-10 / 2.0), 0);
Pos1 = Pos2 = vec2(0);
if (vertID == 0) Pos1 = Pos.xy;
if (vertID == 2) Pos2 = Pos.xy;
Coords.xy = ScrSize;
Coords.zw = flatCorner = corners[vertID];
position = Pos.xy;
if (id != 2)
Pos.xy = vec2(0);
gl_Position = ProjMat * ModelViewMat * vec4(Pos, 1);
}
if (isTooltip(ProjMat, Position) && (gl_Position.x > 1 || gl_Position.x < -0.99)) {
vertexColor = vec4(0);
}
}

View file

@ -0,0 +1,82 @@
#version 150
in vec4 vertexColor;
flat in vec2 flatCorner;
in vec2 Pos1;
in vec2 Pos2;
in vec4 Coords;
in vec2 position;
uniform vec4 ColorModulator;
out vec4 fragColor;
vec4 colors[4] = vec4[](
vec4(0),
vec4(20, 17, 25, 255) / 255,
vec4(73, 40, 121, 255) / 255,
vec4(42, 31, 61, 255) / 255
);
int bitmap[64] = int[](
0, 0, 1, 1, 1, 1, 1, 1,
0, 1, 3, 3, 3, 3, 3, 3,
1, 3, 3, 2, 2, 2, 2, 2,
1, 3, 2, 2, 3, 3, 3, 3,
1, 3, 2, 3, 3, 3, 3, 3,
1, 3, 2, 3, 3, 3, 3, 3,
1, 3, 2, 3, 3, 3, 3, 3,
1, 3, 2, 3, 3, 3, 3, 3
);
void main() {
vec4 color = vertexColor;
if (color.a == 0.0) {
discard;
}
fragColor = color * ColorModulator;
if (flatCorner != vec2(-1))
{
//Actual Pos
vec2 APos1 = Pos1;
vec2 APos2 = Pos2;
APos1 = round(APos1 / (flatCorner.x == 0 ? 1 - Coords.z : 1 - Coords.w)); //Right-up corner
APos2 = round(APos2 / (flatCorner.x == 0 ? Coords.w : Coords.z)); //Left-down corner
ivec2 res = ivec2(abs(APos1 - APos2)) - 1; //Resolution of frame
ivec2 stp = ivec2(min(APos1, APos2)); //Left-Up corner
ivec2 pos = ivec2(floor(position)) - stp; //Position in frame
vec4 col = vec4(42, 31, 61, 255) / 255.0;
ivec2 corner = min(pos, res - pos);
if (corner.x < 8 && corner.y < 8)
{
int bit = bitmap[corner.y * 8 + corner.x];
if (bit == 0)
discard;
if (bit != 4)
col = colors[bit];
}
else if (corner.x == 0) // left and right side: Outer
col = colors[1];
else if (corner.x == 1) // left and right side: Middle
col = colors[3];
else if (corner.x == 2) // left and right side: Inner ish
col = colors[2];
else if (corner.y == 0) // top and bottom side: Outer
col = colors[1];
else if (corner.y == 1) // top and bottom side: Middle
col = colors[3];
else if (corner.y == 2) // top and bottom side: Inner ish
col = colors[2];
fragColor = col;
}
}

View file

@ -0,0 +1,19 @@
{
"blend": {
"func": "add",
"srcrgb": "srcalpha",
"dstrgb": "1-srcalpha"
},
"vertex": "rendertype_gui",
"fragment": "rendertype_gui",
"attributes": [
"Color"
],
"samplers": [
],
"uniforms": [
{ "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] },
{ "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] },
{ "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }
]
}

View file

@ -0,0 +1,61 @@
#version 150
in vec3 Position;
in vec4 Color;
uniform mat4 ModelViewMat;
uniform mat4 ProjMat;
uniform vec2 ScreenSize;
out vec4 vertexColor;
out vec4 Coords;
out vec2 position;
flat out vec2 flatCorner;
out vec2 Pos1;
out vec2 Pos2;
bool isTooltip(mat4 ProjMat,vec3 Position) {
return ProjMat[2][3] == 0 && Position.z > 300 && Position.z < 500;
}
void main() {
vertexColor = Color;
gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0);
Coords = vec4(-1);
position = vec2(-1);
Pos1 = vec2(-1);
Pos2 = vec2(-1);
flatCorner = vec2(-1);
//Tooltip frame
if (Color.r != 0 && Color.g == 0 && Color.b != 0 && ProjMat[3][0] == -1)
{
int id = gl_VertexID / 4;
int vertID = (gl_VertexID) % 4;
const vec2[4] corners = vec2[4](vec2(0, 0), vec2(0, 1), vec2(1, 1), vec2(1, 0));
vec2 ScrSize = 2 / vec2(ProjMat[0][0], -ProjMat[1][1]);
vec3 Pos = Position - vec3(corners[((gl_VertexID) ) % 4] * 10 - (10 / 2.0), 0);
Pos1 = Pos2 = vec2(0);
if (vertID == 0) Pos1 = Pos.xy;
if (vertID == 2) Pos2 = Pos.xy;
Coords.xy = ScrSize;
Coords.zw = flatCorner = corners[vertID];
position = Pos.xy;
if (id != 2)
Pos.xy = vec2(0);
gl_Position = ProjMat * ModelViewMat * vec4(Pos, 1);
}
if (isTooltip(ProjMat, Position) && (gl_Position.x > 1 || gl_Position.x < -0.99)) {
vertexColor = vec4(0);
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 403 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 360 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

View file

Before

Width:  |  Height:  |  Size: 209 B

After

Width:  |  Height:  |  Size: 209 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

View file

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

Before

Width:  |  Height:  |  Size: 381 B

After

Width:  |  Height:  |  Size: 381 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 867 B

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Some files were not shown because too many files have changed in this diff Show more