cursor adventure: DONE ENOUGH

This commit is contained in:
mehbark 2023-08-20 08:46:03 -04:00
parent 245e95db0d
commit c0cb2f8169

View file

@ -54,7 +54,7 @@ const CursorImg = ({ cursor }: { cursor: Cursor }) => (
/> />
); );
const debug = true; const debug = false;
const debug_style = debug const debug_style = debug
? { ? {
border: "1px solid red", border: "1px solid red",
@ -116,6 +116,7 @@ const Section = ({
); );
render_and_copy( render_and_copy(
<>
<Main <Main
style={{ style={{
width: "100%", width: "100%",
@ -129,35 +130,75 @@ render_and_copy(
<Section <Section
cursor="down" cursor="down"
start start
grid_area={{ row_start: 1, row_end: 2, col_start: 1, col_end: 3 }} grid_area={{
row_start: 1,
row_end: 2,
col_start: 1,
col_end: 3,
}}
/> />
<Section <Section
cursor="down" cursor="down"
grid_area={{ row_start: 2, row_end: 13, col_start: 1, col_end: 3 }} grid_area={{
row_start: 2,
row_end: 13,
col_start: 1,
col_end: 3,
}}
/> />
<Section <Section
cursor="left" cursor="left"
grid_area={{ row_start: 1, row_end: 13, col_start: 3, col_end: 5 }} grid_area={{
row_start: 1,
row_end: 13,
col_start: 3,
col_end: 5,
}}
/> />
<Section <Section
cursor="right" cursor="right"
grid_area={{ row_start: 13, row_end: 15, col_start: 1, col_end: 5 }} grid_area={{
row_start: 13,
row_end: 15,
col_start: 1,
col_end: 5,
}}
/> />
<Section <Section
cursor="up_or_right" cursor="up_or_right"
grid_area={{ row_start: 13, row_end: 15, col_start: 5, col_end: 7 }} grid_area={{
row_start: 13,
row_end: 15,
col_start: 5,
col_end: 7,
}}
/> />
<Section <Section
cursor="vriska_egg" cursor="vriska_egg"
grid_area={{ row_start: 1, row_end: 2, col_start: 5, col_end: 7 }} grid_area={{
row_start: 1,
row_end: 2,
col_start: 5,
col_end: 7,
}}
/> />
<Section <Section
cursor="right" cursor="right"
grid_area={{ row_start: 2, row_end: 7, col_start: 5, col_end: 7 }} grid_area={{
row_start: 2,
row_end: 7,
col_start: 5,
col_end: 7,
}}
/> />
<Section <Section
cursor="up" cursor="up"
grid_area={{ row_start: 7, row_end: 13, col_start: 5, col_end: 7 }} grid_area={{
row_start: 7,
row_end: 13,
col_start: 5,
col_end: 7,
}}
/> />
<Section <Section
cursor="right" cursor="right"
@ -242,8 +283,13 @@ render_and_copy(
/> />
<Section <Section
cursor="concept" cursor="concept"
link="TODO: DRAFT LINK" link="https://cohost.org/mehbark/post/2555889-omg-you-found-the-se/7f3b03c592834a158a031cf7eb47f6c1"
grid_area={{ row_start: 2, row_end: 3, col_start: 23, col_end: 24 }} grid_area={{
row_start: 2,
row_end: 3,
col_start: 23,
col_end: 24,
}}
/> />
<Section <Section
cursor="left" cursor="left"
@ -319,7 +365,7 @@ render_and_copy(
/> />
<Section <Section
cursor="self_link" cursor="self_link"
link="TODO: self link" link="https://cohost.org/mehbark/post/2555916-cursor-adventure-so"
grid_area={{ grid_area={{
row_start: 9, row_start: 9,
row_end: 11, row_end: 11,
@ -365,7 +411,19 @@ render_and_copy(
/> />
<Section <Section
link="https://static.pyrope.net/cursor-fun-end" link="https://static.pyrope.net/cursor-fun-end"
grid_area={{ row_start: 4, row_end: 6, col_start: 18, col_end: 20 }} grid_area={{
row_start: 4,
row_end: 6,
col_start: 18,
col_end: 20,
}}
/> />
</Main> </Main>
{debug && (
<img
src="https://static.pyrope.net/cursor-fun/concept.png"
alt="a messy kolourpaint concept drawing that is roughly like the above"
/>
)}
</>
); );