Skip to content

Commit

Permalink
DEV RELEASE 0.50b
Browse files Browse the repository at this point in the history
  • Loading branch information
Discookie committed Oct 11, 2017
1 parent 9cd44d5 commit 6f9b83a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ You have no other task, than to run `make.bat`. It will create the entire mod fo

INSTEAD of changing the default values, paste the values you wish to change into `settings/diff.lua`, then re-run `make.bat`.

The most important task right now is to __report bugs__ and __find optimal accel values__ - the README's bounds are no longer accurate!
The most important task right now is to __report bugs__ and __playtest as much as you can__ - we're polishing the build for an upcoming STABLE release!

If you encounter any errors, don't forget to attach **output logs** to your bug reports!

Expand Down Expand Up @@ -37,4 +37,4 @@ Personal settings are stored in `settings`. Do NOT try to re-write the default v

---

Released under the MIT license.
Released under the MIT license.
6 changes: 3 additions & 3 deletions htp/dynamic/diff.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
var diff = {
maxDiff: 7, // This is the maximum acceleration, the same number.
maxDiff: 18, // This is the maximum acceleration, the same number.
avgDiff: 6.25, // This is the average acceleration, instr. below!
// To get this number, copy-paste this into wolframalpha, followed by your number: int_0^1 x^
// avgDiff = 1 / (factAccel + 1)

multiDiff: 4, // This is the multi-note chance, times 10
multiDiff: 2, // This is the multi-note chance, times 10
trillDiff: 0, // This is the min note spacing value, the same number.
armspan: 1.7 // This is the armspan value, the same number.
};
12 changes: 6 additions & 6 deletions htp/dynamic/htp.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
var DiffCalc = {
// NO TOUCHY HERE
ver: "0.50a",
ver: "0.50b",
mod: "insane",
br: "dev",
recentChanges: [
"Full refactor, rework",
"Include compile tools",
"",
"Fix spans and values",
"Add ballchains, advanced logging",
"Added Meteor Events API",
"Issues, feature requests on GitHub",
"Change and test accel/span values",
"Send me output logs!"
],
create: function () {
Expand Down Expand Up @@ -41,7 +41,7 @@ var DiffCalc = {
diffs.className = "diffWindow";
el.appendChild(diffs);
var overall = document.createElement("h1");
var oaVal = (Math.round((Math.pow((diff.maxDiff * (diff.armspan / 1.5)), 0.85) + 3) * Math.pow(diff.avgDiff / 10, 0.6) * (2 + diff.multiDiff / 10) * 100 / (Math.pow(diff.trillDiff * 4, 3) + 1)) / 100).toFixed(2);
var oaVal = (Math.round((Math.pow(diff.maxDiff, 0.85) + 3) * Math.pow(diff.avgDiff / 10, 0.6) * (2 + diff.multiDiff / 10) * 80 / (Math.pow(diff.trillDiff * 4, 3) + 1)) / 100).toFixed(2);
if (oaVal < 15) {
overall.className = "gd diff";
} else if (oaVal < 21) {
Expand Down Expand Up @@ -76,7 +76,7 @@ var DiffCalc = {
var maxDisplay = document.createElement("div");
t = document.createTextNode(diff.maxDiff);
maxDisplay.className = "maxinner slin";
maxDisplay.style = "width: " + Math.floor(diff.maxDiff * 250 / 16) + "px;";
maxDisplay.style = "width: " + Math.floor(diff.maxDiff * 250 / 30) + "px;";
maxDisplay.appendChild(t);
maxSlider.appendChild(maxDisplay);
var avgDisplay = document.createElement("div");
Expand Down
2 changes: 1 addition & 1 deletion src/version.lua
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Version: 0.50a, last modified: 2017-09-12
Version: 0.50b, last modified: 2017-10-11

0 comments on commit 6f9b83a

Please sign in to comment.