You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: list/guides/deadcscroll.md
+13-13
Original file line number
Diff line number
Diff line change
@@ -147,7 +147,7 @@ In summary: each buffer is 145 2-byte elements (290 bytes), and we need two of t
147
147
148
148
Assume for a moment that you put the buffers physically next to each other in memory. For example, Buffer A is at `$C000` and Buffer B is at `$C122` (the buffer size is 290 bytes). We said earlier that in order to swap buffers, we just swap pointers, so the code that does that might look like this:
149
149
150
-
```
150
+
```asm
151
151
; assume the pointers are next to each other in memory
152
152
wDrawBuffer: DS 2 ; buffer currently being drawn
153
153
wFillBuffer: DS 2 ; buffer currently being modified
@@ -169,7 +169,7 @@ ld [hl+],a
169
169
ld [hl],b
170
170
```
171
171
To use a pointer, that code looks like this:
172
-
```
172
+
```asm
173
173
; use a pointer (8 cycles)
174
174
ld hl,wFillBuffer
175
175
ld a,[hl+]
@@ -184,15 +184,15 @@ Consider this: other than the memory locations, the buffers are identical. Since
184
184
We can keep Buffer A at `$C000`. The buffer size is `$122` bytes, but instead of putting Buffer B at `$C122`, what if we put it at `$C200`? This would make the pointer values `$C000` and `$C200`. Literally a 1-bit difference. This, too, can be exploited! Both pointers end in `$00` so we don't need to store those, which saves 2 bytes. This leaves us with two 1-byte 'pointers': `$C0` and `$C2`.
185
185
186
186
To swap the pointers, literally just one bit has to be toggled:
187
-
```
187
+
```asm
188
188
; swap the contents of each 'pointer' (11 cycles)
189
189
ldh a,[hFillBuffer]
190
190
ldh [hDrawBuffer],a
191
191
xor $02
192
192
ldh [hFillBuffer],a
193
193
```
194
194
And to use a pointer, we only need to do this:
195
-
```
195
+
```asm
196
196
; use a 'pointer' (6 cycles)
197
197
ldh a,[hFillBuffer]
198
198
ld h,a
@@ -209,7 +209,7 @@ In this system, code in the VBlank is responsible for two things:
209
209
210
210
We've already seen what swapping the pointers looks like, but how is the data set for line 0? We need to emulate an HBlank handler running for "line -1" by getting the start of the new draw buffer and setting the scroll registers with the first data pair:
211
211
212
-
```
212
+
```asm
213
213
ldh a,[hDrawBuffer]
214
214
ld h,a
215
215
ld l,0
@@ -226,7 +226,7 @@ It's convenient that the scroll register addresses are next to each other. The d
226
226
227
227
In an HBlank handler, **every cycle counts**! So don't do any work in there unless it's absolutely necessary. This is a good target for hyper-optimizations -- especially if you are changing VRAM (like palettes) -- so one should design around that optimization.
228
228
229
-
```
229
+
```asm
230
230
HBlankHandler::
231
231
push af
232
232
push hl
@@ -272,49 +272,49 @@ The values in the table can dramatically change the effect. For example, if the
272
272
273
273
Also, you could create a 'glitch' effect during a cut-scene, perhaps in a sci-fi game to simulate a slightly dirty transmission.
274
274
275
-

275
+

276
276
277
277
### Y (Vertical) Sine
278
278
279
279
This effect is structured very similar to X Sine, in that there is a table of sine values driven by 3 states. The only difference is that `SCY` is changed instead of `SCX`.
280
280
281
281
This is a really good way to simulate water reflections.
282
282
283
-

283
+

284
284
285
285
### X and Y Sine
286
286
287
287
This is simply a combination of the X Sine and Y Sine effects so you can see how different it looks compared to just the X or Y changing.
288
288
289
289
Instead of a full-screen image like this tutorial uses, imagine if you had a repeating image in VRAM (bigger than the screen) that looked like water ripples. This would move just like water!
290
290
291
-

291
+

292
292
293
293
### Smear On
294
294
295
295
This is like a flood fill effect used as an appearance transition. It's quite simple in that it repeats the lines to achieve the 'smear' effect and is perhaps more interesting than a fade in.
296
296
297
297
The specific image used in the tutorial is light along the bottom so it looks better if the screen was already light before the effect starts. You would change this to suit your image.
298
298
299
-

299
+

300
300
301
301
### Smear Off
302
302
303
303
This is a disappearance transition and the reverse of Smear On. Due to the specific image that was used (i.e. it is light along the bottom), it looks better in this tutorial to have the effect reveal a light screen instead of dark. Again, you would change this to suit your image.
304
304
305
-

305
+

306
306
307
307
### Roll On
308
308
309
309
This effect simulates an image unrolling onto the screen. This might be useful for fantasy RPGs to transition to a map screen or perhaps a message written on a scroll. The image unrolls over a dark screen because the top of the image is mostly dark so it looks better to keep it dark than the contrast of using a light screen.
310
310
311
-

311
+

312
312
313
313
### Roll Off
314
314
315
315
This effect simulates an image rolling off screen. This might be useful for fantasy RPGs to transition away from a map or scroll screen. This reveals a dark screen because the first thing you see in the roll is dark (because that's what's in VRAM below the screen). Keeping it dark made the transition more seamless.
316
316
317
-

317
+

318
318
319
319
The roll effects look complicated but the implementation is probably one of the simpler ones. The key to make this look good is the values in the table. The roll size is 32 pixels, but you can change this to whatever size you want, provided the table values support it. This [SpecBas demo](https://www.youtube.com/watch?v=j04TKI9WKfo) was used as a reference to obtain those values.
0 commit comments