]> 4ch.mooo.com Git - 16.git/commitdiff
i need to migrate to the memory manager stuff sometime
authorsparky4 <sparky4@cock.li>
Thu, 16 Feb 2017 18:38:57 +0000 (12:38 -0600)
committersparky4 <sparky4@cock.li>
Thu, 16 Feb 2017 18:38:57 +0000 (12:38 -0600)
TODO.md
sparky4.do
spri.sh

diff --git a/TODO.md b/TODO.md
index 256c46ae9201d7cdd16963965b0a550b909a528f..2402c78b5b132c6623fd14d61942ceaa0004e2e9 100755 (executable)
--- a/TODO.md
+++ b/TODO.md
@@ -33,6 +33,8 @@ What needs to be done
 - [ ] script system for text and interaction
 - [ ] ====00 IMPORTANT! 00==== AS PART OF FINISHING THE GRAPHICAL LIB. Make a palette manager that updates the display palette with the pallet of images and sprites. in a stack and reuse same colors in the pallette on the image by changing the image's values to the matching color.
 - Use a little database to keep track of the images loaded and have manipulated the display pallette.
+- [ ] migrate from malloc and related to mm stuff
+
 
 - [ ] fix any bugs found
 - [ ] make the game wwww
index db36d406339478ad463da22a4d40f0ce77fb2378..1aa39f54d81df0f07a2d4a2e6f1cf79b3f732f1a 100755 (executable)
@@ -14,9 +14,6 @@ font! ok
 jis! ...
 memory segmentation! trying ow2
 
-update mapreading! to the new system!
-       replace png with pcx ^^;
-               so the game can read it~
 
 dro from dosbox
 dro to vgm get
diff --git a/spri.sh b/spri.sh
index 172cc06e897d345c0f0ddb16cda85f7ccbbad660..4fea5d0283bc566323f9b775ff6c8e5e05b01e2e 100755 (executable)
--- a/spri.sh
+++ b/spri.sh
@@ -1,16 +1,17 @@
 #! /bin/bash
 cd data/spri
-if [ ! -f "$1".vrs ]; then
+if [ ! -f "$1".vrs ] && [ -f "$1".vrl ] && [ -f "$1".sht ]; then
        ../../vrl2vrs -s "$1".sht -o "$1".vrs -hc "$1".h -hp _"$1"_
        echo "$1".vrs created
-#      echo "1st condition ok!"
+#      echo "1st condition ok!"
 fi
 if [ -f "$1".sht ]; then
        ../../pcxsscut -s "$1".sht -hc "$1".h -hp _"$1"_ -i ../"$1".pcx -p "$1".pal -tc 0x"$2" -y
 #      echo "2nd condition ok!"
 else
        ../../pcx2vrl -i ../"$1".pcx -o "$1".vrl -p "$1".pal -tc 0x"$2"
-       echo check if "$1".sht exist!
+       echo "$1".vrl created
+#      echo check if "$1".sht exist!
 #      echo "3rd condition ok!"
 fi
 cd ../../