-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
192 lines (183 loc) · 10.3 KB
/
index.html
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<html lang="en" prefix="og: https://ogp.me/ns#">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="styles.css" />
<title>jacobsjo's Tools and Projects</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="A collection of all my Minecraft tools, as well as other and minor projects. Display and edit biome layouts, debug structure generation, and design terrain using density functions! And a devtool mod to simplify ingame testing." />
<meta name="author" content="jacobsjo" />
<meta name="og:title" content="jacobsjo's Tools and Projects" />
<meta name="og:type" content="website" />
<meta name="og:url" content="https://jacobsjo.eu" />
<meta name="og:image" content="https://jacobsjo.eu/og_image.png" />
<meta name="og:description" content="A collection of all my Minecraft tools, as well as other and minor projects. Display and edit biome layouts, debug structure generation, and design terrain using density functions! And a devtool mod to simplify ingame testing." />
<script
src="https://beamanalytics.b-cdn.net/beam.min.js"
data-token="93ad3a51-68ea-4039-8a8e-1cad878e5f8b"
async
>
</script>
</head>
<body>
<div class="header">
<h1>jacobsjo's Tools and Projects</h1>
<p>Welcome to my collection all the Minecraft tools I've worked on, as well as other and minor projects. Display and edit biome layouts, debug structure generation, and design terrain unsing density functions!
Feel free to also check out the source code on GitHub.</p>
<p>Maybe you are looking for my <a href="https://jochenjacobs.eu">personal blog</a> instead?</p>
<p class="highlight">If you find my tools useful, I would appreciate a tip! <br /><a href="https://ko-fi.com/jacobsjo">Buy me a Coffee</a> or <a href="https://github.com/sponsors/jacobsjo/">Sponsor me on GitHub</a></p>
</div>
<div class="section">
<h2>Minecraft Tools</h2>
<div class="disclaimer">
NOT AN OFFICIAL MINECRAFT SERVICE. NOT APPROVED BY OR ASSOCIATED WITH MOJANG OR MICROSOFT
</div>
<div class="list narrowed">
<div class="entry">
<a href="https://map.jacobsjo.eu">
<div class="title">
<img class="icon" src="icons/map.svg" alt="map logo" />
Datapack map
</div>
<img class="teaser" src="teasers/map.webp" alt="A map showing biomes as different colors and markers for structures. Some shading is done to show terrain." />
<div class="description">
A map to display biome layout, terrain, and structure locations of minecraft worlds. Made
deliberately to support custom worldgen datapacks, such as Terralith.
</div>
</a>
<a class="link" href="https://weblate.catter.dev/projects/jacobsjo/mc-datapack-map/">
Help Translate
</a>
<a class="link" href="https://github.com/jacobsjo/mc-datapack-map/wiki">
Datapack Compatability (Wiki)
</a>
<a class="link" href="https://github.com/jacobsjo/mc-datapack-map">
View Source on GitHub
</a>
</div>
<div class="entry">
<a href="https://snowcapped.jacobsjo.eu">
<div class="title">
<img class="icon" src="icons/snowcapped.svg" alt="snowcapped logo" />
Snowcapped
</div>
<img class="teaser" src="teasers/snowcapped.webp" alt="A section of the snowcapped editor. Split into two parts. On the left a grid is seen where each cell contains another grid filled with colors. The right shows a map where the colors represent different biomes." />
<div class="description">
An editor for compley multi-noise biome configuations. Based on the vanilla overworld
configuation setup, this editor allows the easy creation of 6 dimensional configuations.
</div>
</a>
<a class="link" href="https://mc118.snowcapped.jacobsjo.eu">
Legacy 1.18 version
</a>
<a class="link" href="https://github.com/jacobsjo/snowcapped/wiki">
Documentation (Wiki)
</a>
<a class="link" href="https://github.com/jacobsjo/snowcapped">
View Source on GitHub
</a>
</div>
<div class="entry">
<a href="https://jigsaw.jacobsjo.eu">
<div class="title">
<img class="icon" src="icons/jigsaw.png" alt="A jigsaw block as a logo." />
Jigsaw previewer
</div>
<img class="teaser" src="teasers/jigsaw.webp" alt="Parts of a plains village during generation on hilly terrain. The jigsaw blocks are still visible. A street is marked with a green outline. Other houses connecting to the street are shown with red and blue outlines." />
<div class="description">
A previewer of structure generation from jigsaw configuations. Allows for debugging of
generation issues, such as bounding box intersections.
</div>
</a>
<a class="link" href="https://github.com/jacobsjo/minecraft-jigsaw-preview">
View Source on GitHub
</a>
</div>
<div class="entry">
<a href="https://df-editor.jacobsjo.eu">
<div class="title">
Density function editor
</div>
<img class="teaser" src="teasers/df.webp" alt="Parts of a visual flow diagram. The test is unreadable, so that only the general structure is visible: Multiple nodes that are connected with edges. On one of the edges a tooltip is open showng an image that is mostly white and red but contains a few black spots, indicating caves." />
<div class="description">
A visual flow based editor for density functions. Density functions can be created by connecting
individual nodes using edges. Includes 2d visualizations of the density functions.
</div>
</a>
<a class="link" href="https://github.com/jacobsjo/density-function-editor">
View Source on GitHub
</a>
</div>
<div class="entry">
<a href="https://modrinth.com/mod/worldgen-devtools">
<div class="title">
Worldgen Devtools mod
</div>
<img class="teaser" src="teasers/worldgen-devtools.webp" alt="A Minecraft trial chamber with a number of jigsaw blocks present. The jigsaw blocks have different colors." />
<div class="description">
A mod that aids in the development of world generation data packs and mods. Allows reloading worldgen data packs in-game and resetting chunks. Colors jigsaw blocks by name and target.
</div>
</a>
<a class="link" href="https://github.com/jacobsjo/worldgen-devtools">
View Source on GitHub
</a>
</div>
</div>
</div>
<div class="section">
<h2>Minor Minecraft Projects</h2>
<div class="disclaimer">
NOT AN OFFICIAL MINECRAFT SERVICE. NOT APPROVED BY OR ASSOCIATED WITH MOJANG OR MICROSOFT
</div>
<div class="list">
<div class="entry minor">
<a href="https://github.com/jacobsjo/mcicons/">
<div class="title">
MC-Icons
</div>
<div class="description">
Repository containing images of all minecraft icons. Auto-created from vanilla resources.
</div>
</a>
</div>
<div class="entry minor abandoned">
<a
href="https://www.planetminecraft.com/data-pack/saddle-valley-rivers-canyons-and-underground-rivers-1-18-2-only/">
<div class="title">
Saddle Valley Rivers
</div>
<div class="description">
A datapack that adds underground rivers and canyons to saddle valleys.
</div>
</a>
</div>
</div>
</div>
<div class="section">
<h2>Other</h2>
<div class="list">
<div class="entry">
<a href="https://www.windy.com/plugins">
<div class="title">
Windy sun position plugin
</div>
<img class="teaser" src="teasers/windy-sun-position.webp" alt="This image consists of two parts. On the left there is a part of a timeline, going top to bottom showing times of the sunrise, blue and golden hour and nautical twilight. On the right there is a map showing the surrounding of Insbruck with a marker with multiple dashed lines going in different directions." />
<div class="note">→ Sun and Moon position → Install plugin</div>
<div class="description">
<br />A plugin for windy.com that shows directions of the sun and moon. It also giv sunrise, sunset, golden-hour and other timings.
</div>
</a>
<a class="link" href="https://community.windy.com/topic/32647/sun-position-plugin-v2">
Community Post
</a>
<a class="link" href="https://github.com/jacobsjo/windy-plugin-sun-position-v2">
View Source on GitHub
</a>
</div>
</div>
</div>
<div class="footer">
Copyright © 2023 jacobsjo. <a href="about.html">About</a>
</div>
</body>
</html>