File size: 5,260 Bytes
1e92f2d |
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 |
import React from 'react';
import { connect } from 'react-redux';
import classnames from 'classnames';
import propTypes from 'prop-types';
import style from './index.less';
import Matrix from '../components/matrix';
import Decorate from '../components/decorate';
import Number from '../components/number';
import Next from '../components/next';
import Music from '../components/music';
import Pause from '../components/pause';
import Point from '../components/point';
import Logo from '../components/logo';
import Keyboard from '../components/keyboard';
import Guide from '../components/guide';
import { transform, lastRecord, speeds, i18n, lan } from '../unit/const';
import { visibilityChangeEvent, isFocus } from '../unit/';
import states from '../control/states';
class App extends React.Component {
constructor() {
super();
this.state = {
w: document.documentElement.clientWidth,
h: document.documentElement.clientHeight,
};
}
componentWillMount() {
window.addEventListener('resize', this.resize.bind(this), true);
}
componentDidMount() {
if (visibilityChangeEvent) { // 将页面的焦点变换写入store
document.addEventListener(visibilityChangeEvent, () => {
states.focus(isFocus());
}, false);
}
if (lastRecord) { // 读取记录
if (lastRecord.cur && !lastRecord.pause) { // 拿到上一次游戏的状态, 如果在游戏中且没有暂停, 游戏继续
const speedRun = this.props.speedRun;
let timeout = speeds[speedRun - 1] / 2; // 继续时, 给予当前下落速度一半的停留时间
// 停留时间不小于最快速的速度
timeout = speedRun < speeds[speeds.length - 1] ? speeds[speeds.length - 1] : speedRun;
states.auto(timeout);
}
if (!lastRecord.cur) {
states.overStart();
}
} else {
states.overStart();
}
}
resize() {
this.setState({
w: document.documentElement.clientWidth,
h: document.documentElement.clientHeight,
});
}
render() {
let filling = 0;
const size = (() => {
const w = this.state.w;
const h = this.state.h;
const ratio = h / w;
let scale;
let css = {};
if (ratio < 1.5) {
scale = h / 960;
} else {
scale = w / 640;
filling = (h - (960 * scale)) / scale / 3;
css = {
paddingTop: Math.floor(filling) + 42,
paddingBottom: Math.floor(filling),
marginTop: Math.floor(-480 - (filling * 1.5)),
};
}
css[transform] = `scale(${scale})`;
return css;
})();
return (
<div
className={style.app}
style={size}
>
<div className={classnames({ [style.rect]: true, [style.drop]: this.props.drop })}>
<Decorate />
<div className={style.screen}>
<div className={style.panel}>
<Matrix
matrix={this.props.matrix}
cur={this.props.cur}
reset={this.props.reset}
/>
<Logo cur={!!this.props.cur} reset={this.props.reset} />
<div className={style.state}>
<Point cur={!!this.props.cur} point={this.props.points} max={this.props.max} />
<p>{ this.props.cur ? i18n.cleans[lan] : i18n.startLine[lan] }</p>
<Number number={this.props.cur ? this.props.clearLines : this.props.startLines} />
<p>{i18n.level[lan]}</p>
<Number
number={this.props.cur ? this.props.speedRun : this.props.speedStart}
length={1}
/>
<p>{i18n.next[lan]}</p>
<Next data={this.props.next} />
<div className={style.bottom}>
<Music data={this.props.music} />
<Pause data={this.props.pause} />
<Number time />
</div>
</div>
</div>
</div>
</div>
<Keyboard filling={filling} keyboard={this.props.keyboard} />
<Guide />
</div>
);
}
}
App.propTypes = {
music: propTypes.bool.isRequired,
pause: propTypes.bool.isRequired,
matrix: propTypes.object.isRequired,
next: propTypes.string.isRequired,
cur: propTypes.object,
dispatch: propTypes.func.isRequired,
speedStart: propTypes.number.isRequired,
speedRun: propTypes.number.isRequired,
startLines: propTypes.number.isRequired,
clearLines: propTypes.number.isRequired,
points: propTypes.number.isRequired,
max: propTypes.number.isRequired,
reset: propTypes.bool.isRequired,
drop: propTypes.bool.isRequired,
keyboard: propTypes.object.isRequired,
};
const mapStateToProps = (state) => ({
pause: state.get('pause'),
music: state.get('music'),
matrix: state.get('matrix'),
next: state.get('next'),
cur: state.get('cur'),
speedStart: state.get('speedStart'),
speedRun: state.get('speedRun'),
startLines: state.get('startLines'),
clearLines: state.get('clearLines'),
points: state.get('points'),
max: state.get('max'),
reset: state.get('reset'),
drop: state.get('drop'),
keyboard: state.get('keyboard'),
});
export default connect(mapStateToProps)(App);
|