|
| 1 | +/* |
| 2 | +First time? Check out the tutorial game: |
| 3 | +https://sprig.hackclub.com/gallery/getting_started |
| 4 | +
|
| 5 | +@title: Untitled chicken game |
| 6 | +@author: |
| 7 | +@tags: [] |
| 8 | +@addedOn: 2024-00-00 |
| 9 | +*/ |
| 10 | +const seagull = "f" |
| 11 | +const automobile = "c" |
| 12 | +const road = "r" |
| 13 | +const footpath = "s" |
| 14 | +const office= "h" |
| 15 | +setLegend( |
| 16 | + [ seagull, bitmap` |
| 17 | +................ |
| 18 | +................ |
| 19 | +................ |
| 20 | +................ |
| 21 | +.....00000...... |
| 22 | +....0222220..... |
| 23 | +...022222220.... |
| 24 | +...020220220.... |
| 25 | +...022922220.... |
| 26 | +...022222220.... |
| 27 | +...0222222220... |
| 28 | +...0222222200... |
| 29 | +...022222220.... |
| 30 | +....0000000..... |
| 31 | +.....9...9...... |
| 32 | +................` ], |
| 33 | + [ automobile, bitmap` |
| 34 | +................ |
| 35 | +................ |
| 36 | +................ |
| 37 | +................ |
| 38 | +......000000.... |
| 39 | +.....0072770.... |
| 40 | +..0000772770000. |
| 41 | +.06222222222220. |
| 42 | +.02222202202290. |
| 43 | +.02LLL2222LLL20. |
| 44 | +.00L1L0000L1L00. |
| 45 | +...LLL....LLL... |
| 46 | +................ |
| 47 | +................ |
| 48 | +................ |
| 49 | +................` ], |
| 50 | + [ road, bitmap` |
| 51 | +LLLLLLLLLLLLLLLL |
| 52 | +LLLLLLLLLLLLLLLL |
| 53 | +1111111111111111 |
| 54 | +0000000000000000 |
| 55 | +0000000000000000 |
| 56 | +0000000000000000 |
| 57 | +0000000000000000 |
| 58 | +0666006666006660 |
| 59 | +0666006666006660 |
| 60 | +0000000000000000 |
| 61 | +0000000000000000 |
| 62 | +0000000000000000 |
| 63 | +0000000000000000 |
| 64 | +1111111111111111 |
| 65 | +LLLLLLLLLLLLLLLL |
| 66 | +LLLLLLLLLLLLLLLL` ], |
| 67 | + [ footpath, bitmap` |
| 68 | +1111111111111111 |
| 69 | +1111111111111111 |
| 70 | +1111111111111111 |
| 71 | +1111111111111111 |
| 72 | +1111111111111111 |
| 73 | +1111111111111111 |
| 74 | +1111111111111111 |
| 75 | +1111111111111111 |
| 76 | +1111111111111111 |
| 77 | +1111111111111111 |
| 78 | +1111111111111111 |
| 79 | +1111111111111111 |
| 80 | +1111111111111111 |
| 81 | +1111111111111111 |
| 82 | +1111111111111111 |
| 83 | +1111111111111111` ], |
| 84 | + [ office, bitmap` |
| 85 | +................ |
| 86 | +...LLLLLLLLL.... |
| 87 | +...L6L6L6L6L.... |
| 88 | +...LLLLLLLLL.... |
| 89 | +...L6L6L6L6L.... |
| 90 | +...LLLLLLLLL.... |
| 91 | +...L6L6L6L6L.... |
| 92 | +...LLLLLLLLL.... |
| 93 | +...L6L6L6L6L.... |
| 94 | +...LLLLLLLLL.... |
| 95 | +...L6L6L6L6L.... |
| 96 | +...LLLLLLLLL.... |
| 97 | +...L6L6L6L6L.... |
| 98 | +...LLLLLLLLL.... |
| 99 | +...L6L66L6LL.... |
| 100 | +...LLL66LLLL....` ], |
| 101 | + |
| 102 | +) |
| 103 | + |
| 104 | +setSolids([seagull, office]) |
| 105 | +setBackground(footpath) |
| 106 | + |
| 107 | +let dead; |
| 108 | +let moved = true |
| 109 | +let score = 0 |
| 110 | +function spawn() { |
| 111 | + dead = false; |
| 112 | + clearText() |
| 113 | + addText("0", {x:0, color: color`5`}) |
| 114 | + setMap(map` |
| 115 | +............. |
| 116 | +............. |
| 117 | +............. |
| 118 | +............. |
| 119 | +............. |
| 120 | +............. |
| 121 | +............. |
| 122 | +............. |
| 123 | +............. |
| 124 | +......f......`) |
| 125 | + for(let y = 0;y < height() - 1;y++)generateRow(y) |
| 126 | + loop() |
| 127 | +} |
| 128 | +spawn() |
| 129 | + |
| 130 | +function loop() { |
| 131 | + if(dead) return; |
| 132 | + moved = false; |
| 133 | + getAll(automobile).forEach(c=>{ |
| 134 | + if(c.x == 0) c.remove() |
| 135 | + else c.x-- |
| 136 | + }) |
| 137 | + if(tilesWith(seagull, automobile).length > 0) { |
| 138 | + addText("You died!", {color: color`3`}) |
| 139 | + dead = true; |
| 140 | + moved = true; |
| 141 | + } |
| 142 | + const newautomobile = ~~(Math.random() * height()) |
| 143 | + const tile = getTile(width()-1, newautomobile); |
| 144 | + if(tile.length == 1 && tile[0].type == road) addSprite(width() - 1, newautomobile, automobile) |
| 145 | + setTimeout(loop, 250) |
| 146 | +} |
| 147 | + |
| 148 | +function generateRow(y) { |
| 149 | + if(Math.random() < 0.5) { |
| 150 | + for(let x = 0;x < width();x++) addSprite(x, y, road) |
| 151 | + } else if(Math.random() < 0.4) { |
| 152 | + for(let x = 0;x < width();x++) { |
| 153 | + if(Math.random() < 0.5) addSprite(x, y, office) |
| 154 | + } |
| 155 | + } |
| 156 | +} |
| 157 | + |
| 158 | +onInput("w", () => { |
| 159 | + if(moved) return; |
| 160 | + if(--getFirst(seagull).y < height() - 2) { |
| 161 | + getAll().forEach(s=>{ |
| 162 | + if(s.y == height() - 1) s.remove() |
| 163 | + else s.y++ |
| 164 | + }) |
| 165 | + generateRow(0) |
| 166 | + score++ |
| 167 | + } |
| 168 | +}) |
| 169 | + |
| 170 | +onInput("s", () => { |
| 171 | + if(moved) return; |
| 172 | + getFirst(seagull).y++ |
| 173 | + score-- |
| 174 | +}) |
| 175 | + |
| 176 | +onInput("a", () => { |
| 177 | + if(moved) return; |
| 178 | + getFirst(seagull).x-- |
| 179 | +}) |
| 180 | + |
| 181 | +onInput("d", () => { |
| 182 | + if(moved) return; |
| 183 | + getFirst(seagull).x++ |
| 184 | +}) |
| 185 | + |
| 186 | +afterInput(() => { |
| 187 | + if(dead == true) spawn() |
| 188 | + moved = true; |
| 189 | + if(tilesWith(seagull, automobile).length > 0) { |
| 190 | + addText("You died!", {color: color`3`}) |
| 191 | + dead = true; |
| 192 | + } else { |
| 193 | + clearText() |
| 194 | + addText(""+score, {x:0, color: color`5`}) |
| 195 | + } |
| 196 | +}) |
0 commit comments