summaryrefslogtreecommitdiff
path: root/src/main/resources/assets
diff options
context:
space:
mode:
authorunknown <james.jenour@protonmail.com>2020-07-02 00:53:17 +1000
committerunknown <james.jenour@protonmail.com>2020-07-02 00:53:17 +1000
commitbd6f658c6c53d160c40bc3b5fdead7b7b3dd20c4 (patch)
tree8cf4a287369c94e377604561d937b7096c0abf50 /src/main/resources/assets
parentfa7be3a200f26d53eabfc58e509fd9c6d0a2fd10 (diff)
downloadNotEnoughUpdates-bd6f658c6c53d160c40bc3b5fdead7b7b3dd20c4.tar.gz
NotEnoughUpdates-bd6f658c6c53d160c40bc3b5fdead7b7b3dd20c4.tar.bz2
NotEnoughUpdates-bd6f658c6c53d160c40bc3b5fdead7b7b3dd20c4.zip
Diffstat (limited to 'src/main/resources/assets')
-rw-r--r--src/main/resources/assets/notenoughupdates/ah_item_holder.pngbin0 -> 642 bytes
-rw-r--r--src/main/resources/assets/notenoughupdates/ah_item_tab.pngbin0 -> 627 bytes
-rw-r--r--src/main/resources/assets/notenoughupdates/item_mask.pngbin856 -> 2800 bytes
-rw-r--r--src/main/resources/assets/notenoughupdates/off.pngbin1302 -> 3331 bytes
-rw-r--r--src/main/resources/assets/notenoughupdates/order_value.pngbin0 -> 1818 bytes
-rw-r--r--src/main/resources/assets/notenoughupdates/order_value_active.pngbin0 -> 1804 bytes
-rw-r--r--src/main/resources/assets/notenoughupdates/shaders/program/blit.vsh16
-rw-r--r--src/main/resources/assets/notenoughupdates/shaders/program/grayscale.fsh15
-rw-r--r--src/main/resources/assets/notenoughupdates/shaders/program/grayscale.json17
-rw-r--r--src/main/resources/assets/notenoughupdates/slider_button.pngbin0 -> 666 bytes
-rw-r--r--src/main/resources/assets/notenoughupdates/slider_off.pngbin0 -> 765 bytes
-rw-r--r--src/main/resources/assets/notenoughupdates/slider_on.pngbin0 -> 767 bytes
12 files changed, 48 insertions, 0 deletions
diff --git a/src/main/resources/assets/notenoughupdates/ah_item_holder.png b/src/main/resources/assets/notenoughupdates/ah_item_holder.png
new file mode 100644
index 00000000..ed396f25
--- /dev/null
+++ b/src/main/resources/assets/notenoughupdates/ah_item_holder.png
Binary files differ
diff --git a/src/main/resources/assets/notenoughupdates/ah_item_tab.png b/src/main/resources/assets/notenoughupdates/ah_item_tab.png
new file mode 100644
index 00000000..c307fa31
--- /dev/null
+++ b/src/main/resources/assets/notenoughupdates/ah_item_tab.png
Binary files differ
diff --git a/src/main/resources/assets/notenoughupdates/item_mask.png b/src/main/resources/assets/notenoughupdates/item_mask.png
index 7a202a33..3b402d7f 100644
--- a/src/main/resources/assets/notenoughupdates/item_mask.png
+++ b/src/main/resources/assets/notenoughupdates/item_mask.png
Binary files differ
diff --git a/src/main/resources/assets/notenoughupdates/off.png b/src/main/resources/assets/notenoughupdates/off.png
index 174d1b4f..cfb17e40 100644
--- a/src/main/resources/assets/notenoughupdates/off.png
+++ b/src/main/resources/assets/notenoughupdates/off.png
Binary files differ
diff --git a/src/main/resources/assets/notenoughupdates/order_value.png b/src/main/resources/assets/notenoughupdates/order_value.png
new file mode 100644
index 00000000..5526e8f6
--- /dev/null
+++ b/src/main/resources/assets/notenoughupdates/order_value.png
Binary files differ
diff --git a/src/main/resources/assets/notenoughupdates/order_value_active.png b/src/main/resources/assets/notenoughupdates/order_value_active.png
new file mode 100644
index 00000000..3864021c
--- /dev/null
+++ b/src/main/resources/assets/notenoughupdates/order_value_active.png
Binary files differ
diff --git a/src/main/resources/assets/notenoughupdates/shaders/program/blit.vsh b/src/main/resources/assets/notenoughupdates/shaders/program/blit.vsh
new file mode 100644
index 00000000..01a16db5
--- /dev/null
+++ b/src/main/resources/assets/notenoughupdates/shaders/program/blit.vsh
@@ -0,0 +1,16 @@
+#version 120
+
+attribute vec4 Position;
+
+uniform mat4 ProjMat;
+uniform vec2 OutSize;
+
+varying vec2 texCoord;
+
+void main(){
+ vec4 outPos = ProjMat * vec4(Position.xy, 0.0, 1.0);
+ gl_Position = vec4(outPos.xy, 0.2, 1.0);
+
+ texCoord = Position.xy / OutSize;
+ texCoord.y = 1.0 - texCoord.y;
+}
diff --git a/src/main/resources/assets/notenoughupdates/shaders/program/grayscale.fsh b/src/main/resources/assets/notenoughupdates/shaders/program/grayscale.fsh
new file mode 100644
index 00000000..70875510
--- /dev/null
+++ b/src/main/resources/assets/notenoughupdates/shaders/program/grayscale.fsh
@@ -0,0 +1,15 @@
+#version 120
+
+uniform sampler2D DiffuseSampler;
+
+varying vec2 texCoord;
+
+void main(){
+ vec3 Gray = vec3(0.3, 0.59, 0.11);
+ vec4 diffuseColor = texture2D(DiffuseSampler, texCoord);
+
+ float Luma = dot(diffuseColor.rgb, Gray);
+ diffuseColor.rgb = vec3(Luma, Luma, Luma);
+
+ gl_FragColor = diffuseColor;
+}
diff --git a/src/main/resources/assets/notenoughupdates/shaders/program/grayscale.json b/src/main/resources/assets/notenoughupdates/shaders/program/grayscale.json
new file mode 100644
index 00000000..048ceb9f
--- /dev/null
+++ b/src/main/resources/assets/notenoughupdates/shaders/program/grayscale.json
@@ -0,0 +1,17 @@
+{
+ "blend": {
+ "func": "add",
+ "srcrgb": "srcalpha",
+ "dstrgb": "1-srcalpha"
+ },
+ "vertex": "blit",
+ "fragment": "grayscale",
+ "attributes": [ "Position" ],
+ "samplers": [
+ { "name": "DiffuseSampler" }
+ ],
+ "uniforms": [
+ { "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": "OutSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] }
+ ]
+}
diff --git a/src/main/resources/assets/notenoughupdates/slider_button.png b/src/main/resources/assets/notenoughupdates/slider_button.png
new file mode 100644
index 00000000..aeb81b86
--- /dev/null
+++ b/src/main/resources/assets/notenoughupdates/slider_button.png
Binary files differ
diff --git a/src/main/resources/assets/notenoughupdates/slider_off.png b/src/main/resources/assets/notenoughupdates/slider_off.png
new file mode 100644
index 00000000..0f514c41
--- /dev/null
+++ b/src/main/resources/assets/notenoughupdates/slider_off.png
Binary files differ
diff --git a/src/main/resources/assets/notenoughupdates/slider_on.png b/src/main/resources/assets/notenoughupdates/slider_on.png
new file mode 100644
index 00000000..8d2d6680
--- /dev/null
+++ b/src/main/resources/assets/notenoughupdates/slider_on.png
Binary files differ