├── 01_SimpleScrolling ├── README.md ├── res │ ├── planes │ │ └── plane_a.png │ ├── resources.res │ └── sprites │ │ └── ship.png └── src │ └── main.c ├── EndlessScroll ├── DOS │ ├── res │ │ ├── bg │ │ │ ├── bg.png │ │ │ ├── bga.png │ │ │ ├── bgb_0-0_22_6_27.png │ │ │ ├── bgb_1-0_22_13_27.png │ │ │ ├── bgb_2-10_22_19_27.png │ │ │ ├── bgb_3-20_22_29_27.png │ │ │ ├── bgb_4-26_22_39_27.png │ │ │ ├── bgb_5-33_22_49_27.png │ │ │ └── bgb_6-40_22_49_27.png │ │ └── resources.res │ └── src │ │ └── main.c ├── README.md ├── bg.png ├── ceiling.png ├── example │ ├── res │ │ ├── bg │ │ │ └── bg.png │ │ └── resources.res │ └── src │ │ └── main.c ├── image.png ├── main.c.jinja ├── main_wide.c.jinja ├── python_win_install.png ├── resources.res.jinja ├── sgdk_endless_scroll.py ├── test_tile.png ├── test_wood.png ├── tilefloor.png ├── warp_0.png ├── warp_1.png ├── warp_2.png ├── warp_3.png ├── warp_4.png ├── warp_5.png ├── warp_6.png ├── woodceil.png └── woodfloor_tileceiling.png ├── HScroll ├── res │ ├── planes │ │ └── madmarco_bg.png │ └── resources.res └── src │ └── main.c ├── HScrollDec ├── res │ ├── planes │ │ ├── madmarco_bgb.png │ │ └── numbered.png │ └── resources.res └── src │ └── main.c ├── HScrollLine ├── res │ ├── bg │ │ └── desert.png │ └── resources.res └── src │ └── main.c ├── HScrollTiled ├── res │ ├── planes │ │ ├── madmarco_bga.png │ │ └── madmarco_bgb.png │ └── resources.res └── src │ └── main.c ├── LICENSE ├── README.md ├── RotatePy ├── README.md ├── crosshairs.png ├── green_bar.png ├── green_bar_rotated_15.png ├── green_bar_rotated_2.png ├── green_bar_rotated_5_MOAR_ROWS.png ├── green_bar_rotated_5_too_few_rows.png ├── main.c.jinja ├── platform.png ├── points.csv ├── resources.res.jinja ├── rotate_-5_to_5 │ ├── res │ │ ├── bg │ │ │ └── platform.png │ │ └── resources.res │ └── src │ │ ├── main.c │ │ └── rotation.h ├── rotate_2_degrees │ ├── res │ │ ├── bg │ │ │ └── platform.png │ │ └── resources.res │ └── src │ │ ├── main.c │ │ └── rotation.h ├── rotation_and_translation │ ├── res │ │ ├── bg │ │ │ └── platform.png │ │ └── resources.res │ └── src │ │ ├── main.c │ │ └── rotation.h ├── sgdk_scroll_rotate.py └── ship.png ├── Rotation ├── res │ ├── planes │ │ └── boss_truck.png │ └── resources.res └── src │ └── main.c ├── RotationDual ├── res │ ├── bg │ │ ├── planea.png │ │ └── planeb.png │ ├── resources.res │ └── sprites │ │ ├── ship_sheet.png │ │ └── shot_sheet.png └── src │ └── main.c ├── RotationDualPrecalc ├── res │ ├── bg │ │ ├── planea.png │ │ └── planeb.png │ ├── resources.res │ └── sprites │ │ ├── crosshairs.png │ │ └── ship.png └── src │ ├── main.c │ └── rotation.h ├── RotationWithBackground ├── res │ ├── planes │ │ ├── background.png │ │ └── boss_truck.png │ ├── resources.res │ └── sprites │ │ ├── boss_truck_wheel.png │ │ ├── gun_bike_b.png │ │ ├── gun_bike_rider_b.png │ │ └── tree1.png └── src │ └── main.c ├── ScrollingWithCamera ├── res │ ├── planes │ │ └── plane_a.png │ ├── resources.res │ └── sprites │ │ ├── explosion.png │ │ ├── rock.png │ │ ├── ship.png │ │ └── shot_sheet.png └── src │ └── main.c ├── VScrollTiled ├── res │ ├── bg │ │ └── planeb.png │ └── resources.res └── src │ └── main.c ├── go.sh └── waves ├── ex1 ├── README.md ├── res │ ├── bg │ │ └── bg.png │ └── resources.res └── src │ └── main.c └── ex2 ├── res ├── bg │ ├── bg.png │ └── fg.png ├── resources.res └── sprites │ └── bubble.png └── src └── main.c /01_SimpleScrolling/README.md: -------------------------------------------------------------------------------- 1 | # Simple Scrolling Example. 2 | 3 | -------------------------------------------------------------------------------- /01_SimpleScrolling/res/planes/plane_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/01_SimpleScrolling/res/planes/plane_a.png -------------------------------------------------------------------------------- /01_SimpleScrolling/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/01_SimpleScrolling/res/resources.res -------------------------------------------------------------------------------- /01_SimpleScrolling/res/sprites/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/01_SimpleScrolling/res/sprites/ship.png -------------------------------------------------------------------------------- /01_SimpleScrolling/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/01_SimpleScrolling/src/main.c -------------------------------------------------------------------------------- /EndlessScroll/DOS/res/bg/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/DOS/res/bg/bg.png -------------------------------------------------------------------------------- /EndlessScroll/DOS/res/bg/bga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/DOS/res/bg/bga.png -------------------------------------------------------------------------------- /EndlessScroll/DOS/res/bg/bgb_0-0_22_6_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/DOS/res/bg/bgb_0-0_22_6_27.png -------------------------------------------------------------------------------- /EndlessScroll/DOS/res/bg/bgb_1-0_22_13_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/DOS/res/bg/bgb_1-0_22_13_27.png -------------------------------------------------------------------------------- /EndlessScroll/DOS/res/bg/bgb_2-10_22_19_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/DOS/res/bg/bgb_2-10_22_19_27.png -------------------------------------------------------------------------------- /EndlessScroll/DOS/res/bg/bgb_3-20_22_29_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/DOS/res/bg/bgb_3-20_22_29_27.png -------------------------------------------------------------------------------- /EndlessScroll/DOS/res/bg/bgb_4-26_22_39_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/DOS/res/bg/bgb_4-26_22_39_27.png -------------------------------------------------------------------------------- /EndlessScroll/DOS/res/bg/bgb_5-33_22_49_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/DOS/res/bg/bgb_5-33_22_49_27.png -------------------------------------------------------------------------------- /EndlessScroll/DOS/res/bg/bgb_6-40_22_49_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/DOS/res/bg/bgb_6-40_22_49_27.png -------------------------------------------------------------------------------- /EndlessScroll/DOS/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/DOS/res/resources.res -------------------------------------------------------------------------------- /EndlessScroll/DOS/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/DOS/src/main.c -------------------------------------------------------------------------------- /EndlessScroll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/README.md -------------------------------------------------------------------------------- /EndlessScroll/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/bg.png -------------------------------------------------------------------------------- /EndlessScroll/ceiling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/ceiling.png -------------------------------------------------------------------------------- /EndlessScroll/example/res/bg/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/example/res/bg/bg.png -------------------------------------------------------------------------------- /EndlessScroll/example/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/example/res/resources.res -------------------------------------------------------------------------------- /EndlessScroll/example/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/example/src/main.c -------------------------------------------------------------------------------- /EndlessScroll/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/image.png -------------------------------------------------------------------------------- /EndlessScroll/main.c.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/main.c.jinja -------------------------------------------------------------------------------- /EndlessScroll/main_wide.c.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/main_wide.c.jinja -------------------------------------------------------------------------------- /EndlessScroll/python_win_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/python_win_install.png -------------------------------------------------------------------------------- /EndlessScroll/resources.res.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/resources.res.jinja -------------------------------------------------------------------------------- /EndlessScroll/sgdk_endless_scroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/sgdk_endless_scroll.py -------------------------------------------------------------------------------- /EndlessScroll/test_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/test_tile.png -------------------------------------------------------------------------------- /EndlessScroll/test_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/test_wood.png -------------------------------------------------------------------------------- /EndlessScroll/tilefloor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/tilefloor.png -------------------------------------------------------------------------------- /EndlessScroll/warp_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/warp_0.png -------------------------------------------------------------------------------- /EndlessScroll/warp_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/warp_1.png -------------------------------------------------------------------------------- /EndlessScroll/warp_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/warp_2.png -------------------------------------------------------------------------------- /EndlessScroll/warp_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/warp_3.png -------------------------------------------------------------------------------- /EndlessScroll/warp_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/warp_4.png -------------------------------------------------------------------------------- /EndlessScroll/warp_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/warp_5.png -------------------------------------------------------------------------------- /EndlessScroll/warp_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/warp_6.png -------------------------------------------------------------------------------- /EndlessScroll/woodceil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/woodceil.png -------------------------------------------------------------------------------- /EndlessScroll/woodfloor_tileceiling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/EndlessScroll/woodfloor_tileceiling.png -------------------------------------------------------------------------------- /HScroll/res/planes/madmarco_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/HScroll/res/planes/madmarco_bg.png -------------------------------------------------------------------------------- /HScroll/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/HScroll/res/resources.res -------------------------------------------------------------------------------- /HScroll/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/HScroll/src/main.c -------------------------------------------------------------------------------- /HScrollDec/res/planes/madmarco_bgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/HScrollDec/res/planes/madmarco_bgb.png -------------------------------------------------------------------------------- /HScrollDec/res/planes/numbered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/HScrollDec/res/planes/numbered.png -------------------------------------------------------------------------------- /HScrollDec/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/HScrollDec/res/resources.res -------------------------------------------------------------------------------- /HScrollDec/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/HScrollDec/src/main.c -------------------------------------------------------------------------------- /HScrollLine/res/bg/desert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/HScrollLine/res/bg/desert.png -------------------------------------------------------------------------------- /HScrollLine/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/HScrollLine/res/resources.res -------------------------------------------------------------------------------- /HScrollLine/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/HScrollLine/src/main.c -------------------------------------------------------------------------------- /HScrollTiled/res/planes/madmarco_bga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/HScrollTiled/res/planes/madmarco_bga.png -------------------------------------------------------------------------------- /HScrollTiled/res/planes/madmarco_bgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/HScrollTiled/res/planes/madmarco_bgb.png -------------------------------------------------------------------------------- /HScrollTiled/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/HScrollTiled/res/resources.res -------------------------------------------------------------------------------- /HScrollTiled/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/HScrollTiled/src/main.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/README.md -------------------------------------------------------------------------------- /RotatePy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/README.md -------------------------------------------------------------------------------- /RotatePy/crosshairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/crosshairs.png -------------------------------------------------------------------------------- /RotatePy/green_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/green_bar.png -------------------------------------------------------------------------------- /RotatePy/green_bar_rotated_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/green_bar_rotated_15.png -------------------------------------------------------------------------------- /RotatePy/green_bar_rotated_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/green_bar_rotated_2.png -------------------------------------------------------------------------------- /RotatePy/green_bar_rotated_5_MOAR_ROWS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/green_bar_rotated_5_MOAR_ROWS.png -------------------------------------------------------------------------------- /RotatePy/green_bar_rotated_5_too_few_rows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/green_bar_rotated_5_too_few_rows.png -------------------------------------------------------------------------------- /RotatePy/main.c.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/main.c.jinja -------------------------------------------------------------------------------- /RotatePy/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/platform.png -------------------------------------------------------------------------------- /RotatePy/points.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/points.csv -------------------------------------------------------------------------------- /RotatePy/resources.res.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/resources.res.jinja -------------------------------------------------------------------------------- /RotatePy/rotate_-5_to_5/res/bg/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/rotate_-5_to_5/res/bg/platform.png -------------------------------------------------------------------------------- /RotatePy/rotate_-5_to_5/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/rotate_-5_to_5/res/resources.res -------------------------------------------------------------------------------- /RotatePy/rotate_-5_to_5/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/rotate_-5_to_5/src/main.c -------------------------------------------------------------------------------- /RotatePy/rotate_-5_to_5/src/rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/rotate_-5_to_5/src/rotation.h -------------------------------------------------------------------------------- /RotatePy/rotate_2_degrees/res/bg/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/rotate_2_degrees/res/bg/platform.png -------------------------------------------------------------------------------- /RotatePy/rotate_2_degrees/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/rotate_2_degrees/res/resources.res -------------------------------------------------------------------------------- /RotatePy/rotate_2_degrees/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/rotate_2_degrees/src/main.c -------------------------------------------------------------------------------- /RotatePy/rotate_2_degrees/src/rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/rotate_2_degrees/src/rotation.h -------------------------------------------------------------------------------- /RotatePy/rotation_and_translation/res/bg/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/rotation_and_translation/res/bg/platform.png -------------------------------------------------------------------------------- /RotatePy/rotation_and_translation/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/rotation_and_translation/res/resources.res -------------------------------------------------------------------------------- /RotatePy/rotation_and_translation/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/rotation_and_translation/src/main.c -------------------------------------------------------------------------------- /RotatePy/rotation_and_translation/src/rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/rotation_and_translation/src/rotation.h -------------------------------------------------------------------------------- /RotatePy/sgdk_scroll_rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/sgdk_scroll_rotate.py -------------------------------------------------------------------------------- /RotatePy/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotatePy/ship.png -------------------------------------------------------------------------------- /Rotation/res/planes/boss_truck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/Rotation/res/planes/boss_truck.png -------------------------------------------------------------------------------- /Rotation/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/Rotation/res/resources.res -------------------------------------------------------------------------------- /Rotation/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/Rotation/src/main.c -------------------------------------------------------------------------------- /RotationDual/res/bg/planea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationDual/res/bg/planea.png -------------------------------------------------------------------------------- /RotationDual/res/bg/planeb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationDual/res/bg/planeb.png -------------------------------------------------------------------------------- /RotationDual/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationDual/res/resources.res -------------------------------------------------------------------------------- /RotationDual/res/sprites/ship_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationDual/res/sprites/ship_sheet.png -------------------------------------------------------------------------------- /RotationDual/res/sprites/shot_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationDual/res/sprites/shot_sheet.png -------------------------------------------------------------------------------- /RotationDual/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationDual/src/main.c -------------------------------------------------------------------------------- /RotationDualPrecalc/res/bg/planea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationDualPrecalc/res/bg/planea.png -------------------------------------------------------------------------------- /RotationDualPrecalc/res/bg/planeb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationDualPrecalc/res/bg/planeb.png -------------------------------------------------------------------------------- /RotationDualPrecalc/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationDualPrecalc/res/resources.res -------------------------------------------------------------------------------- /RotationDualPrecalc/res/sprites/crosshairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationDualPrecalc/res/sprites/crosshairs.png -------------------------------------------------------------------------------- /RotationDualPrecalc/res/sprites/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationDualPrecalc/res/sprites/ship.png -------------------------------------------------------------------------------- /RotationDualPrecalc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationDualPrecalc/src/main.c -------------------------------------------------------------------------------- /RotationDualPrecalc/src/rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationDualPrecalc/src/rotation.h -------------------------------------------------------------------------------- /RotationWithBackground/res/planes/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationWithBackground/res/planes/background.png -------------------------------------------------------------------------------- /RotationWithBackground/res/planes/boss_truck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationWithBackground/res/planes/boss_truck.png -------------------------------------------------------------------------------- /RotationWithBackground/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationWithBackground/res/resources.res -------------------------------------------------------------------------------- /RotationWithBackground/res/sprites/boss_truck_wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationWithBackground/res/sprites/boss_truck_wheel.png -------------------------------------------------------------------------------- /RotationWithBackground/res/sprites/gun_bike_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationWithBackground/res/sprites/gun_bike_b.png -------------------------------------------------------------------------------- /RotationWithBackground/res/sprites/gun_bike_rider_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationWithBackground/res/sprites/gun_bike_rider_b.png -------------------------------------------------------------------------------- /RotationWithBackground/res/sprites/tree1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationWithBackground/res/sprites/tree1.png -------------------------------------------------------------------------------- /RotationWithBackground/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/RotationWithBackground/src/main.c -------------------------------------------------------------------------------- /ScrollingWithCamera/res/planes/plane_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/ScrollingWithCamera/res/planes/plane_a.png -------------------------------------------------------------------------------- /ScrollingWithCamera/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/ScrollingWithCamera/res/resources.res -------------------------------------------------------------------------------- /ScrollingWithCamera/res/sprites/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/ScrollingWithCamera/res/sprites/explosion.png -------------------------------------------------------------------------------- /ScrollingWithCamera/res/sprites/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/ScrollingWithCamera/res/sprites/rock.png -------------------------------------------------------------------------------- /ScrollingWithCamera/res/sprites/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/ScrollingWithCamera/res/sprites/ship.png -------------------------------------------------------------------------------- /ScrollingWithCamera/res/sprites/shot_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/ScrollingWithCamera/res/sprites/shot_sheet.png -------------------------------------------------------------------------------- /ScrollingWithCamera/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/ScrollingWithCamera/src/main.c -------------------------------------------------------------------------------- /VScrollTiled/res/bg/planeb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/VScrollTiled/res/bg/planeb.png -------------------------------------------------------------------------------- /VScrollTiled/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/VScrollTiled/res/resources.res -------------------------------------------------------------------------------- /VScrollTiled/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/VScrollTiled/src/main.c -------------------------------------------------------------------------------- /go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/go.sh -------------------------------------------------------------------------------- /waves/ex1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/waves/ex1/README.md -------------------------------------------------------------------------------- /waves/ex1/res/bg/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/waves/ex1/res/bg/bg.png -------------------------------------------------------------------------------- /waves/ex1/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/waves/ex1/res/resources.res -------------------------------------------------------------------------------- /waves/ex1/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/waves/ex1/src/main.c -------------------------------------------------------------------------------- /waves/ex2/res/bg/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/waves/ex2/res/bg/bg.png -------------------------------------------------------------------------------- /waves/ex2/res/bg/fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/waves/ex2/res/bg/fg.png -------------------------------------------------------------------------------- /waves/ex2/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/waves/ex2/res/resources.res -------------------------------------------------------------------------------- /waves/ex2/res/sprites/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/waves/ex2/res/sprites/bubble.png -------------------------------------------------------------------------------- /waves/ex2/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radioation/SGDK_Scrolling/HEAD/waves/ex2/src/main.c --------------------------------------------------------------------------------