Skip to content

Commit 6e40f50

Browse files
committed
Move deadcscroll related files to separate folders
1 parent 7f9183b commit 6e40f50

File tree

11 files changed

+1927
-13
lines changed

11 files changed

+1927
-13
lines changed

list/.vuepress/public/deadcscroll/DeadCScroll.asm

+1,794
Large diffs are not rendered by default.
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
This is free and unencumbered software released into the public domain.
2+
3+
Anyone is free to copy, modify, publish, use, compile, sell, or
4+
distribute this software, either in source code form or as a compiled
5+
binary, for any purpose, commercial or non-commercial, and by any
6+
means.
7+
8+
In jurisdictions that recognize copyright laws, the author or authors
9+
of this software dedicate any and all copyright interest in the
10+
software to the public domain. We make this dedication for the benefit
11+
of the public at large and to the detriment of our heirs and
12+
successors. We intend this dedication to be an overt act of
13+
relinquishment in perpetuity of all present and future rights to this
14+
software under copyright law.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.
23+
24+
For more information, please refer to <https://unlicense.org>
+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
2+
############################################################################################################################
3+
# Project Symbols
4+
############################################################################################################################
5+
6+
### Project Environment ####################################################################################################
7+
PROJECT_NAME = DeadCScroll
8+
ROM_NAME = $(PROJECT_NAME).gb
9+
MAP_NAME = $(PROJECT_NAME).map
10+
SYM_NAME = $(PROJECT_NAME).sym
11+
12+
SYS_INCLUDE_DIR = ../../Include
13+
SOURCE_DIR = .
14+
OBJECT_DIR = .
15+
ROM_DIR = .
16+
17+
### Development Tools ######################################################################################################
18+
PADDING_VALUE = 0xFF
19+
20+
ASSEMBLER = rgbasm
21+
ASSEMBLER_OPTS = -Weverything -p $(PADDING_VALUE) -i $(SYS_INCLUDE_DIR)/ -i $(SOURCE_DIR)/
22+
23+
LINKER = rgblink
24+
LINKER_OPTS = -p $(PADDING_VALUE)
25+
26+
CARTMAKER = rgbfix
27+
CARTMAKER_OPTS = -v -p $(PADDING_VALUE)
28+
29+
30+
############################################################################################################################
31+
# File Lists
32+
############################################################################################################################
33+
34+
.SUFFIXES := .gb .map .sym .obj .asm .inc
35+
36+
### Paths ##################################################################################################################
37+
vpath %.asm $(SOURCE_DIR)
38+
vpath %.inc $(SOURCE_DIR) $(SYS_INCLUDE_DIR)
39+
vpath %.def $(SOURCE_DIR)
40+
vpath %.obj $(OBJECT_DIR)
41+
vpath %.gb $(ROM_DIR)
42+
vpath %.map $(ROM_DIR)
43+
vpath %.sym $(ROM_DIR)
44+
45+
### Lists ##################################################################################################################
46+
SOURCE_BASE_NAMES = $(basename $(notdir $(wildcard $(SOURCE_DIR)/*.asm)))
47+
SOURCE_FILES = $(addprefix $(SOURCE_DIR)/,$(addsuffix .asm,$(SOURCE_BASE_NAMES)))
48+
OBJECT_FILES = $(addprefix $(OBJECT_DIR)/,$(addsuffix .obj,$(SOURCE_BASE_NAMES)))
49+
50+
51+
############################################################################################################################
52+
# Main Targets
53+
############################################################################################################################
54+
55+
$(ROM_DIR)/$(ROM_NAME): $(OBJECT_FILES)
56+
@echo
57+
@echo Linking
58+
$(LINKER) $(LINKER_OPTS) -m $(ROM_DIR)/$(MAP_NAME) -n $(ROM_DIR)/$(SYM_NAME) -o $(ROM_DIR)/$(ROM_NAME) $(OBJECT_FILES)
59+
@echo
60+
@echo Fixing
61+
$(CARTMAKER) $(CARTMAKER_OPTS) $(ROM_DIR)/$(ROM_NAME)
62+
63+
64+
############################################################################################################################
65+
# Pattern Rules
66+
############################################################################################################################
67+
68+
### Explicit Rules #########################################################################################################
69+
70+
71+
### Implicit Rules #########################################################################################################
72+
73+
$(OBJECT_DIR)/%.obj : %.asm
74+
@echo Assembling $(<F)
75+
@$(ASSEMBLER) $(ASSEMBLER_OPTS) -o ./$@ $<
76+
77+
78+
############################################################################################################################
79+
# Cleaning Targets
80+
############################################################################################################################
81+
82+
.PHONY: clean
83+
clean: cleanall
84+
85+
.PHONY: cleanall
86+
cleanall: cleanrom cleanobj
87+
88+
.PHONY: cleanrom
89+
cleanrom:
90+
rm -f $(ROM_DIR)/*.gb
91+
rm -f $(ROM_DIR)/*.map
92+
rm -f $(ROM_DIR)/*.sym
93+
94+
.PHONY: cleanobj
95+
cleanobj:
96+
rm -f $(OBJECT_DIR)/*.obj

list/guides/deadcscroll.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ In summary: each buffer is 145 2-byte elements (290 bytes), and we need two of t
147147

148148
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:
149149

150-
```
150+
```asm
151151
; assume the pointers are next to each other in memory
152152
wDrawBuffer: DS 2 ; buffer currently being drawn
153153
wFillBuffer: DS 2 ; buffer currently being modified
@@ -169,7 +169,7 @@ ld [hl+],a
169169
ld [hl],b
170170
```
171171
To use a pointer, that code looks like this:
172-
```
172+
```asm
173173
; use a pointer (8 cycles)
174174
ld hl,wFillBuffer
175175
ld a,[hl+]
@@ -184,15 +184,15 @@ Consider this: other than the memory locations, the buffers are identical. Since
184184
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`.
185185

186186
To swap the pointers, literally just one bit has to be toggled:
187-
```
187+
```asm
188188
; swap the contents of each 'pointer' (11 cycles)
189189
ldh a,[hFillBuffer]
190190
ldh [hDrawBuffer],a
191191
xor $02
192192
ldh [hFillBuffer],a
193193
```
194194
And to use a pointer, we only need to do this:
195-
```
195+
```asm
196196
; use a 'pointer' (6 cycles)
197197
ldh a,[hFillBuffer]
198198
ld h,a
@@ -209,7 +209,7 @@ In this system, code in the VBlank is responsible for two things:
209209

210210
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:
211211

212-
```
212+
```asm
213213
ldh a,[hDrawBuffer]
214214
ld h,a
215215
ld l,0
@@ -226,7 +226,7 @@ It's convenient that the scroll register addresses are next to each other. The d
226226

227227
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.
228228

229-
```
229+
```asm
230230
HBlankHandler::
231231
push af
232232
push hl
@@ -272,49 +272,49 @@ The values in the table can dramatically change the effect. For example, if the
272272

273273
Also, you could create a 'glitch' effect during a cut-scene, perhaps in a sci-fi game to simulate a slightly dirty transmission.
274274

275-
![X Sine](/images/gif/xsine.gif)
275+
![X Sine](/deadcscroll/gif//xsine.gif)
276276

277277
### Y (Vertical) Sine
278278

279279
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`.
280280

281281
This is a really good way to simulate water reflections.
282282

283-
![Y Sine](/images/gif/ysine.gif)
283+
![Y Sine](/deadcscroll/gif//ysine.gif)
284284

285285
### X and Y Sine
286286

287287
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.
288288

289289
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!
290290

291-
![XY Sine](/images/gif/xysine.gif)
291+
![XY Sine](/deadcscroll/gif//xysine.gif)
292292

293293
### Smear On
294294

295295
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.
296296

297297
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.
298298

299-
![Smear On](/images/gif/smearon.gif)
299+
![Smear On](/deadcscroll/gif//smearon.gif)
300300

301301
### Smear Off
302302

303303
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.
304304

305-
![Smear Off](/images/gif/smearoff.gif)
305+
![Smear Off](/deadcscroll/gif//smearoff.gif)
306306

307307
### Roll On
308308

309309
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.
310310

311-
![Roll On](/images/gif/rollon.gif)
311+
![Roll On](/deadcscroll/gif//rollon.gif)
312312

313313
### Roll Off
314314

315315
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.
316316

317-
![Roll Off](/images/gif/rolloff.gif)
317+
![Roll Off](/deadcscroll/gif//rolloff.gif)
318318

319319
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.
320320

0 commit comments

Comments
 (0)