0

- Remove the HighPrecisionTimer, removing the last compiler warning.

- Turns out that thing was antiquated anyway. Convenient!
- Update the buildfile to make zip distributions for each platform.
This commit is contained in:
Ethan Lee
2012-02-11 04:17:48 -05:00
parent b979fc2a70
commit db06230dc5
3 changed files with 25 additions and 48 deletions

View File

@@ -1,43 +0,0 @@
/*
* Copyright (C) 1997-2001 Id Software, Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* See the GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package lwjake2.sys;
import sun.misc.Perf;
// TODO: Is there an alternative to sun.misc.Perf? - flibit
class HighPrecisionTimer extends Timer {
private Perf perf = Perf.getPerf();
private double f = 1000.0 / perf.highResFrequency();
private long base;
HighPrecisionTimer() {
base = perf.highResCounter();
}
public long currentTimeMillis() {
long time = perf.highResCounter();
long delta = time - base;
if (delta < 0) {
delta += Long.MAX_VALUE + 1;
}
return (long)(delta * f);
}
}

View File

@@ -31,11 +31,7 @@ public abstract class Timer {
try {
t = new NanoTimer();
} catch (Throwable e) {
try {
t = new HighPrecisionTimer();
} catch (Throwable e1) {
t = new StandardTimer();
}
t = new StandardTimer();
}
Com.Println("using " + t.getClass().getName());
}