Download Jar. Uses 3874K of libraries. Click here for Pure Java version (11944L/87K).
1 | !7 |
2 | |
3 | static int circles = 1; |
4 | |
5 | !include #1015048 // AI Game & API |
6 | |
7 | p-autorestart {
|
8 | newImageText = "New Letter!"; |
9 | gameTitle = "A. I. Game 8.4"; |
10 | mixReproWithImage = true; |
11 | makeInstruction(); |
12 | pGame(); |
13 | swing {
|
14 | loadImageSnippet(#1101188); // Instagram logo |
15 | final JSpinner spinner = jSpinner(circles, 1, 100); |
16 | addToWindowPack_keepWidth(is, withMargin(jRightAligned(withLabel("Number of circles to use:", spinner))));
|
17 | onChange(spinner, r {
|
18 | circles = intFromSpinner(spinner); |
19 | makeInstruction(); restartAIs(); |
20 | }); |
21 | |
22 | clickButton(last(aiButtons)); // Start the winner AI! |
23 | } |
24 | } |
25 | |
26 | svoid makeInstruction {
|
27 | setInstruction("Reproduce this image with " + n2(circles, "circle") + ":");
|
28 | } |
29 | |
30 | sclass Submission extends BackgroundPlus<CircleWithColor> {
|
31 | *() {}
|
32 | *(BackgroundPlus<CircleWithColor> b) { copyFields(b, this); check(); }
|
33 | |
34 | void check {
|
35 | assertEqualsQuick(circles, l(things)); |
36 | } |
37 | } |
38 | |
39 | !include #1014964 // Random letter puzzle maker |
40 | |
41 | /////////////// |
42 | // RENDERERS // |
43 | /////////////// |
44 | |
45 | static BufferedImage renderImage1(Submission s) { ret renderBackgroundPlusCircles(w, h, s); }
|
46 | static BufferedImage renderWithHints(Submission s) {
|
47 | ret renderBackgroundPlusCircles_withHints(w, h, s); |
48 | } |
49 | |
50 | ///////////////////////////////// |
51 | // AIs. Just add your own here // |
52 | ///////////////////////////////// |
53 | |
54 | AI_Random_abstract > AI_Random {
|
55 | Submission guess() {
|
56 | ret Submission(randomBackgroundPlusCircles(w, h, circles)); |
57 | } |
58 | } |
59 | |
60 | AI_RandomWithVariation_abstract > AI_RandomWithVariation {
|
61 | AI_RandomWithVariation() { super(new AI_Random); }
|
62 | |
63 | Submission vary(Submission s) {
|
64 | ret varyBackgroundPlusCircles(s, w, h); |
65 | } |
66 | } |
67 | |
68 | !include #1014957 // AI_Racer |
Began life as a copy of #1014979
download show line numbers debug dex old transpilations
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
| Snippet ID: | #1014980 |
| Snippet name: | A. I. Game 8.4 / Circles [OK] |
| Eternal ID of this version: | #1014980/13 |
| Text MD5: | 59bd4f09462a5d09ee52a9545aedd27f |
| Transpilation MD5: | 2862dd9743f8855bdebdac9d27612783 |
| Author: | stefan |
| Category: | javax / gui / a.i. |
| Type: | JavaX source code (desktop) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2018-05-09 02:36:10 |
| Source code size: | 1756 bytes / 68 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 901 / 2533 |
| Version history: | 12 change(s) |
| Referenced in: | [show references] |