Commit | Line | Data |
---|---|---|
cf2343ce | 1 | <template lang="pug"> |
7aa548e7 BA |
2 | main |
3 | .row | |
4 | .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 | |
5 | .button-group | |
9ddaf8da | 6 | button(@click="clickReadRules()") {{ st.tr["Rules"] }} |
910d631b BA |
7 | button( |
8 | v-show="!gameInProgress" | |
9 | @click="startGame('auto')" | |
10 | ) | |
f44fd3bf | 11 | | {{ st.tr["Example game"] }} |
910d631b BA |
12 | button( |
13 | v-show="!gameInProgress" | |
14 | @click="startGame('versus')" | |
15 | ) | |
602d6bef | 16 | | {{ st.tr["Practice"] }} |
910d631b BA |
17 | button( |
18 | v-show="gameInProgress" | |
19 | @click="stopGame()" | |
20 | ) | |
602d6bef | 21 | | {{ st.tr["Stop game"] }} |
910d631b | 22 | button( |
20620465 | 23 | v-if="showAnalyzeBtn" |
910d631b BA |
24 | @click="gotoAnalyze()" |
25 | ) | |
8055eabd | 26 | | {{ st.tr["Analysis mode"] }} |
9bd6786b BA |
27 | .row |
28 | .col-sm-12.col-md-8.col-md-offset-2.col-lg-6.col-lg-offset-3 | |
c7550017 | 29 | h4#variantName {{ gameInfo.vname }} |
910d631b BA |
30 | div( |
31 | v-show="display=='rules'" | |
32 | v-html="content" | |
33 | ) | |
34 | ComputerGame( | |
866842c3 | 35 | ref="compgame" |
910d631b BA |
36 | v-show="display=='computer'" |
37 | :game-info="gameInfo" | |
910d631b BA |
38 | @game-stopped="gameStopped" |
39 | ) | |
cf2343ce BA |
40 | </template> |
41 | ||
42 | <script> | |
a6088c90 | 43 | import ComputerGame from "@/components/ComputerGame.vue"; |
cf2343ce | 44 | import { store } from "@/store"; |
07052665 | 45 | import { replaceByDiag } from "@/utils/printDiagram"; |
98b94cc3 | 46 | import { CompgameStorage } from "@/utils/compgameStorage"; |
cf2343ce | 47 | export default { |
6808d7a1 | 48 | name: "my-rules", |
24340cae | 49 | components: { |
6808d7a1 | 50 | ComputerGame |
24340cae | 51 | }, |
cf2343ce BA |
52 | data: function() { |
53 | return { | |
54 | st: store.state, | |
cf2343ce | 55 | display: "rules", |
cf2343ce | 56 | gameInProgress: false, |
6dd02928 | 57 | // variables passed to ComputerGame: |
834c202a | 58 | gameInfo: { |
fcbc92c2 | 59 | vname: "", |
834c202a | 60 | mode: "versus", |
b9139251 BA |
61 | }, |
62 | V: null, | |
cf2343ce BA |
63 | }; |
64 | }, | |
42eb4eaf | 65 | watch: { |
6808d7a1 | 66 | $route: function(newRoute) { |
fcbc92c2 | 67 | this.re_setVariant(newRoute.params["vname"]); |
6808d7a1 | 68 | } |
42eb4eaf | 69 | }, |
6f093ada | 70 | created: function() { |
e2732923 | 71 | // NOTE: variant cannot be set before store is initialized |
fcbc92c2 BA |
72 | this.re_setVariant(this.$route.params["vname"]); |
73 | }, | |
74 | computed: { | |
20620465 | 75 | showAnalyzeBtn: function() { |
84fc0f02 | 76 | return !!this.V && this.V.CanAnalyze; |
20620465 | 77 | }, |
fcbc92c2 | 78 | content: function() { |
6808d7a1 | 79 | if (!this.gameInfo.vname) return ""; //variant not set yet |
fcbc92c2 | 80 | // (AJAX) Request to get rules content (plain text, HTML) |
6808d7a1 | 81 | return ( |
e57c4de4 BA |
82 | require( |
83 | "raw-loader!@/translations/rules/" + | |
84 | this.gameInfo.vname + "/" + | |
85 | this.st.lang + ".pug" | |
86 | ) | |
87 | // Next two lines fix a weird issue after last update (2019-11) | |
88 | .replace(/\\n/g, " ") | |
89 | .replace(/\\"/g, '"') | |
90 | .replace('module.exports = "', "") | |
91 | .replace(/"$/, "") | |
07052665 | 92 | .replace(/(fen:)([^:]*):/g, replaceByDiag) |
6808d7a1 BA |
93 | ); |
94 | } | |
cf2343ce BA |
95 | }, |
96 | methods: { | |
41cb9b94 | 97 | clickReadRules: function() { |
6808d7a1 BA |
98 | if (this.display != "rules") this.display = "rules"; |
99 | else if (this.gameInProgress) this.display = "computer"; | |
41cb9b94 | 100 | }, |
fcbc92c2 | 101 | re_setVariant: async function(vname) { |
a97bdbda BA |
102 | await import("@/variants/" + vname + ".js") |
103 | .then((vModule) => { | |
32f6285e | 104 | this.V = window.V = vModule[vname + "Rules"]; |
a97bdbda BA |
105 | this.gameInfo.vname = vname; |
106 | }) | |
107 | .catch((err) => { | |
108 | // Soon after component creation, st.tr might be uninitialized. | |
109 | // Set a timeout to let a chance for the message to show translated. | |
110 | const text = "Mispelled variant name"; | |
111 | setTimeout(() => { | |
112 | alert(this.st.tr[text] || text); | |
113 | this.$router.replace("/variants"); | |
114 | }, 500); | |
115 | }); | |
cf2343ce | 116 | }, |
834c202a | 117 | startGame: function(mode) { |
6808d7a1 | 118 | if (this.gameInProgress) return; |
cf2343ce | 119 | this.gameInProgress = true; |
cf2343ce | 120 | this.display = "computer"; |
834c202a | 121 | this.gameInfo.mode = mode; |
98b94cc3 BA |
122 | if (this.gameInfo.mode == "versus") { |
123 | CompgameStorage.get(this.gameInfo.vname, (game) => { | |
124 | // NOTE: game might be null | |
125 | this.$refs["compgame"].launchGame(game); | |
126 | }); | |
127 | } else { | |
128 | this.$refs["compgame"].launchGame(); | |
129 | } | |
cf2343ce | 130 | }, |
98b94cc3 | 131 | // user wants to stop the game: |
866842c3 BA |
132 | stopGame: function() { |
133 | this.$refs["compgame"].gameOver("?", "Undetermined result"); | |
cf2343ce | 134 | }, |
41cb9b94 BA |
135 | // The game is effectively stopped: |
136 | gameStopped: function() { | |
137 | this.gameInProgress = false; | |
98b94cc3 BA |
138 | if (this.gameInfo.mode == "versus") |
139 | CompgameStorage.remove(this.gameInfo.vname); | |
41cb9b94 | 140 | }, |
5157ce0b | 141 | gotoAnalyze: function() { |
6808d7a1 | 142 | this.$router.push( |
6b7b2cf7 BA |
143 | "/analyse/" + this.gameInfo.vname + |
144 | "/?fen=" + V.GenRandInitFen(this.st.settings.randomness) | |
6808d7a1 BA |
145 | ); |
146 | } | |
147 | } | |
cf2343ce BA |
148 | }; |
149 | </script> | |
50aed5a1 | 150 | |
5bcc9b31 BA |
151 | <!-- NOTE: not scoped here, because HTML is injected (TODO) --> |
152 | <style lang="sass"> | |
c7550017 BA |
153 | h4#variantName |
154 | text-align: center | |
155 | font-weight: bold | |
156 | ||
50aed5a1 BA |
157 | figure.diagram-container |
158 | margin: 15px 0 15px 0 | |
159 | text-align: center | |
160 | width: 100% | |
161 | display: block | |
162 | .diagram | |
163 | display: block | |
32f6285e | 164 | width: 50% |
50aed5a1 BA |
165 | min-width: 240px |
166 | margin-left: auto | |
167 | margin-right: auto | |
168 | .diag12 | |
169 | float: left | |
32f6285e | 170 | width: 40% |
50aed5a1 BA |
171 | margin-left: calc(10% - 20px) |
172 | margin-right: 40px | |
173 | @media screen and (max-width: 630px) | |
174 | float: none | |
175 | margin: 0 auto 10px auto | |
176 | .diag22 | |
177 | float: left | |
32f6285e | 178 | width: 40% |
50aed5a1 BA |
179 | margin-right: calc(10% - 20px) |
180 | @media screen and (max-width: 630px) | |
181 | float: none | |
182 | margin: 0 auto | |
183 | figcaption | |
184 | display: block | |
185 | clear: both | |
186 | padding-top: 5px | |
187 | font-size: 0.8em | |
188 | ||
92a523d1 BA |
189 | p.boxed |
190 | background-color: #FFCC66 | |
191 | padding: 5px | |
50aed5a1 | 192 | |
9a3049f3 BA |
193 | .bigfont |
194 | font-size: 1.2em | |
195 | ||
196 | .bold | |
197 | font-weight: bold | |
198 | ||
92a523d1 BA |
199 | .stageDelimiter |
200 | color: purple | |
50aed5a1 | 201 | |
92a523d1 BA |
202 | // To show (new) pieces, and/or there values... |
203 | figure.showPieces > img | |
204 | width: 50px | |
50aed5a1 | 205 | |
92a523d1 BA |
206 | figure.showPieces > figcaption |
207 | color: #6C6C6C | |
50aed5a1 | 208 | |
92a523d1 BA |
209 | .section-title |
210 | padding: 0 | |
50aed5a1 | 211 | |
92a523d1 BA |
212 | .section-title > h4 |
213 | padding: 5px | |
50aed5a1 | 214 | |
92a523d1 BA |
215 | ol, ul:not(.browser-default) |
216 | padding-left: 20px | |
50aed5a1 | 217 | |
92a523d1 BA |
218 | ul:not(.browser-default) |
219 | margin-top: 5px | |
50aed5a1 | 220 | |
92a523d1 BA |
221 | ul:not(.browser-default) > li |
222 | list-style-type: disc | |
c7550017 BA |
223 | |
224 | table | |
225 | margin: 15px auto | |
226 | ||
227 | .italic | |
228 | font-style: italic | |
229 | ||
230 | img.img-center | |
231 | display: block | |
232 | margin: 0 auto 15px auto | |
50aed5a1 | 233 | </style> |