La Place des Développeurs [RESOLU] VDP(27) le Scrolling hardware Horizontal Comment alimenter de nouveaux décors VDP (27)?
igal
Membre non connecté
Conseiller Municipal
Reprise du message précédent
Lut Légend.En fait les soucis posés par la zone de sprites ne concerne que le SCROLL vertical VDP(24) => http://www.msxvillage.fr/forum/topic.php?id=2491#m58825
En fait il suffirait (au conditionnel) de déplacer la Zone des Sprites pour éluder ce problème. Ceci viendra plus tard lorsque j'aborderai le sujet des psirtes
Pour ce qui est du SCROLL horizontal, aussi incroyable que cela puisse paraître, j'ai quasiment résolu le sujet puisque je pense avoir trouvé la solution.
En effet, les bribes sont de bandes Horizontales chargées par BLOAD sur la Page 1 et sont ensuite copiées depuis la page 1 vers la page 0 verticalement.
Il reste deux petits détails à creuser puis je posterai une explication en image sous forme de schéma.
Cette technique ouvre grand la porte à une variété illimité de graphismes en scrolling horizontal
Edité par igal Le 05/10/2014 à 17h13
igal
Membre non connecté
Conseiller Municipal
Voici un tout premier jet...
il sagit de Metal Slug 2 Stage 1.
comme vous pouvez le voir, il manque 1/2 page de transiion entre chaque page. Il s'agit donc de la prochaine étape.
http://youtu.be/eXV-C-FBiSA
Je dois intégrer des pages "intermediaires" pour que cela devienne cohérent Edité par igal Le 05/10/2014 à 13h48
il sagit de Metal Slug 2 Stage 1.
comme vous pouvez le voir, il manque 1/2 page de transiion entre chaque page. Il s'agit donc de la prochaine étape.
http://youtu.be/eXV-C-FBiSA
Je dois intégrer des pages "intermediaires" pour que cela devienne cohérent Edité par igal Le 05/10/2014 à 13h48
igal
Membre non connecté
Conseiller Municipal
Voila ce devrait être résolu
La première ligne est la source original.
La seconde ligne est le résulta incohérent conséquence du moteur. (Moteur très tordu )
La troisième schématise la conséquence du moteur.
La quatrième ligne montre le découpage nécessaire aux "contre-mesures"
La cinquième ligne est la nouvelle source qui devra t être scrollée pour un résulta identique à la source originale.
Et en plus c'est bien tordu comme j'aime
La première ligne est la source original.
La seconde ligne est le résulta incohérent conséquence du moteur. (Moteur très tordu )
La troisième schématise la conséquence du moteur.
La quatrième ligne montre le découpage nécessaire aux "contre-mesures"
La cinquième ligne est la nouvelle source qui devra t être scrollée pour un résulta identique à la source originale.
Et en plus c'est bien tordu comme j'aime
igal
Membre non connecté
Conseiller Municipal
Voici la démonstration du bon fonctionnement.
http://youtu.be/4Xp-kY5L7GY
Il est possible d'optimiser la vitesse en supprimant les Bribes affichées hors de la zone Visible du VDP mais tout d'abord voici déjà les outils nécessaires à ce petit exploit
Les générateurs de bribes (non optimisés).
Pour rappel, chaque page est composée de 2 images.
1 X 44 X 256 et 1 X 212 X 256 pour une page reconstituée de 256 X 256.
Toute la technique repose sur le Fait que la Page est strictement CARRE.
En effet, une page CARRE de 256 Pixels de cotés permet son découpage à decrescendo tout en n'affectant pas son autre moitié strictement symétrique.
Cela permet de copier une moitié de cette page alors que dans le même temps l'autre moitié de cette page est en cours d'écriture.
S'il fallait retenir un "CHIFFRE CLEF" ce serait le 4 qui est le multiple utilisé pour mener à bien cet exploit
Le bribes sont ajoutés par tranche de 4 pixels tandis que la copie de la page caché 1 se fait du point le plus haut à gauche vers le plus bas à droite en descente d'escalier par tranche de 4 et épaisseur de 4.
Evidemment il reste quelques détails à régler comme la création d'une image source en suivant le schéma du post précédent avec pour bien faire, un découpage en escalier en descente de 4 par 4 de sorte à ne plus avoir les decoupages visibles sur la vidéo mais encore une fois, ce sont que des détails que tout le monde pourra peaufiner.
On peut aussi augmenter la vitesse "globale" est supprimant "11" Bribes non visibles sur "64".
Il faudra cependant modifier cette équation pour compenser les 11 Bribes manquantes:
PAGE 0 à 7
PAGE 8 à 15
Les pages de 16 à 23
Le player Horizontal
Voila à peu près tout dans les grandes lignes Edité par igal Le 06/10/2014 à 15h29
http://youtu.be/4Xp-kY5L7GY
Il est possible d'optimiser la vitesse en supprimant les Bribes affichées hors de la zone Visible du VDP mais tout d'abord voici déjà les outils nécessaires à ce petit exploit
Les générateurs de bribes (non optimisés).
Pour rappel, chaque page est composée de 2 images.
1 X 44 X 256 et 1 X 212 X 256 pour une page reconstituée de 256 X 256.
Toute la technique repose sur le Fait que la Page est strictement CARRE.
En effet, une page CARRE de 256 Pixels de cotés permet son découpage à decrescendo tout en n'affectant pas son autre moitié strictement symétrique.
Cela permet de copier une moitié de cette page alors que dans le même temps l'autre moitié de cette page est en cours d'écriture.
S'il fallait retenir un "CHIFFRE CLEF" ce serait le 4 qui est le multiple utilisé pour mener à bien cet exploit
Le bribes sont ajoutés par tranche de 4 pixels tandis que la copie de la page caché 1 se fait du point le plus haut à gauche vers le plus bas à droite en descente d'escalier par tranche de 4 et épaisseur de 4.
Evidemment il reste quelques détails à régler comme la création d'une image source en suivant le schéma du post précédent avec pour bien faire, un découpage en escalier en descente de 4 par 4 de sorte à ne plus avoir les decoupages visibles sur la vidéo mais encore une fois, ce sont que des détails que tout le monde pourra peaufiner.
On peut aussi augmenter la vitesse "globale" est supprimant "11" Bribes non visibles sur "64".
Il faudra cependant modifier cette équation pour compenser les 11 Bribes manquantes:
Code TEXT :
COPY(H,0)-(H+3,212),1TO(H,0),0:H=H+4AND255
PAGE 0 à 7
Code TEXT :
10 'SAVE"GEN0-6.asc",A 20 'generateur de bribes d'images [11x(4x256)]+[(53x(4x256)] 30 VDP(10)=0: SCREEN 12 99 CALL CHDIR ("H-00-01") 100 BLOAD"00000000.scc",S: BSAVE"00.scc",256*0,256*4-1,S 101 BLOAD"00000000.scc",S: BSAVE"01.scc",256*4,256*8-1,S 102 BLOAD"00000000.scc",S: BSAVE"02.scc",256*8,256*12-1,S 103 BLOAD"00000000.scc",S: BSAVE"03.scc",256*12,256*16-1,S 104 BLOAD"00000000.scc",S: BSAVE"04.scc",256*16,256*20-1,S 105 BLOAD"00000000.scc",S: BSAVE"05.scc",256*20,256*24-1,S 106 BLOAD"00000000.scc",S: BSAVE"06.scc",256*24,256*28-1,S 107 BLOAD"00000000.scc",S: BSAVE"07.scc",256*28,256*32-1,S 108 BLOAD"00000000.scc",S: BSAVE"08.scc",256*32,256*36-1,S 109 BLOAD"00000000.scc",S: BSAVE"09.scc",256*36,256*40-1,S 110 BLOAD"00000000.scc",S: BSAVE"10.scc",256*40,256*44-1,S 111 BLOAD"00000001.scc",S: BSAVE"11.scc",256*0,256*4-1,S 112 BLOAD"00000001.scc",S: BSAVE"12.scc",256*4,256*8-1,S 113 BLOAD"00000001.scc",S: BSAVE"13.scc",256*8,256*12-1,S 114 BLOAD"00000001.scc",S: BSAVE"14.scc",256*12,256*16-1,S 115 BLOAD"00000001.scc",S: BSAVE"15.scc",256*16,256*20-1,S 116 BLOAD"00000001.scc",S: BSAVE"16.scc",256*20,256*24-1,S 117 BLOAD"00000001.scc",S: BSAVE"17.scc",256*24,256*28-1,S 118 BLOAD"00000001.scc",S: BSAVE"18.scc",256*28,256*32-1,S 119 BLOAD"00000001.scc",S: BSAVE"19.scc",256*32,256*36-1,S 120 BLOAD"00000001.scc",S: BSAVE"20.scc",256*36,256*40-1,S 121 BLOAD"00000001.scc",S: BSAVE"21.scc",256*40,256*44-1,S 122 BLOAD"00000001.scc",S: BSAVE"22.scc",256*44,256*48-1,S 123 BLOAD"00000001.scc",S: BSAVE"23.scc",256*48,256*52-1,S 124 BLOAD"00000001.scc",S: BSAVE"24.scc",256*52,256*56-1,S 125 BLOAD"00000001.scc",S: BSAVE"25.scc",256*56,256*60-1,S 126 BLOAD"00000001.scc",S: BSAVE"26.scc",256*60,256*64-1,S 127 BLOAD"00000001.scc",S: BSAVE"27.scc",256*64,256*68-1,S 128 BLOAD"00000001.scc",S: BSAVE"28.scc",256*68,256*72-1,S 129 BLOAD"00000001.scc",S: BSAVE"29.scc",256*72,256*76-1,S 130 BLOAD"00000001.scc",S: BSAVE"30.scc",256*76,256*80-1,S 131 BLOAD"00000001.scc",S: BSAVE"31.scc",256*80,256*84-1,S 132 BLOAD"00000001.scc",S: BSAVE"32.scc",256*84,256*88-1,S 133 BLOAD"00000001.scc",S: BSAVE"33.scc",256*88,256*92-1,S 134 BLOAD"00000001.scc",S: BSAVE"34.scc",256*92,256*96-1,S 135 BLOAD"00000001.scc",S: BSAVE"35.scc",256*96,256*100-1,S 136 BLOAD"00000001.scc",S: BSAVE"36.scc",256*100,256*104-1,S 137 BLOAD"00000001.scc",S: BSAVE"37.scc",256*104,256*108-1,S 138 BLOAD"00000001.scc",S: BSAVE"38.scc",256*108,256*112-1,S 139 BLOAD"00000001.scc",S: BSAVE"39.scc",256*112,256*116-1,S 140 BLOAD"00000001.scc",S: BSAVE"40.scc",256*116,256*120-1,S 141 BLOAD"00000001.scc",S: BSAVE"41.scc",256*120,256*124-1,S 142 BLOAD"00000001.scc",S: BSAVE"42.scc",256*124,256*128-1,S 143 BLOAD"00000001.scc",S: BSAVE"43.scc",256*128,256*132-1,S 144 BLOAD"00000001.scc",S: BSAVE"44.scc",256*132,256*136-1,S 145 BLOAD"00000001.scc",S: BSAVE"45.scc",256*136,256*140-1,S 146 BLOAD"00000001.scc",S: BSAVE"46.scc",256*140,256*144-1,S 147 BLOAD"00000001.scc",S: BSAVE"47.scc",256*144,256*148-1,S 148 BLOAD"00000001.scc",S: BSAVE"48.scc",256*148,256*152-1,S 149 BLOAD"00000001.scc",S: BSAVE"49.scc",256*152,256*156-1,S 150 BLOAD"00000001.scc",S: BSAVE"50.scc",256*156,256*160-1,S 151 BLOAD"00000001.scc",S: BSAVE"51.scc",256*160,256*164-1,S 152 BLOAD"00000001.scc",S: BSAVE"52.scc",256*164,256*168-1,S 153 BLOAD"00000001.scc",S: BSAVE"53.scc",256*168,256*172-1,S 154 BLOAD"00000001.scc",S: BSAVE"54.scc",256*172,256*176-1,S 155 BLOAD"00000001.scc",S: BSAVE"55.scc",256*176,256*180-1,S 156 BLOAD"00000001.scc",S: BSAVE"56.scc",256*180,256*184-1,S 157 BLOAD"00000001.scc",S: BSAVE"57.scc",256*184,256*188-1,S 158 BLOAD"00000001.scc",S: BSAVE"58.scc",256*188,256*192-1,S 159 BLOAD"00000001.scc",S: BSAVE"59.scc",256*192,256*196-1,S 160 BLOAD"00000001.scc",S: BSAVE"60.scc",256*196,256*200-1,S 161 BLOAD"00000001.scc",S: BSAVE"61.scc",256*200,256*204-1,S 162 BLOAD"00000001.scc",S: BSAVE"62.scc",256*204,256*208-1,S 163 BLOAD"00000001.scc",S: BSAVE"63.scc",256*208,256*212-1,S 164 kill"00000000.scc 165 kill"00000001.scc 199 CALL CHDIR (".."): CALL CHDIR ("H-02-03") 200 BLOAD"00000002.scc",S: BSAVE"00.scc",256*0,256*4-1,S 201 BLOAD"00000002.scc",S: BSAVE"01.scc",256*4,256*8-1,S 202 BLOAD"00000002.scc",S: BSAVE"02.scc",256*8,256*12-1,S 203 BLOAD"00000002.scc",S: BSAVE"03.scc",256*12,256*16-1,S 204 BLOAD"00000002.scc",S: BSAVE"04.scc",256*16,256*20-1,S 205 BLOAD"00000002.scc",S: BSAVE"05.scc",256*20,256*24-1,S 206 BLOAD"00000002.scc",S: BSAVE"06.scc",256*24,256*28-1,S 207 BLOAD"00000002.scc",S: BSAVE"07.scc",256*28,256*32-1,S 208 BLOAD"00000002.scc",S: BSAVE"08.scc",256*32,256*36-1,S 209 BLOAD"00000002.scc",S: BSAVE"09.scc",256*36,256*40-1,S 210 BLOAD"00000002.scc",S: BSAVE"10.scc",256*40,256*44-1,S 211 BLOAD"00000003.scc",S: BSAVE"11.scc",256*0,256*4-1,S 212 BLOAD"00000003.scc",S: BSAVE"12.scc",256*4,256*8-1,S 213 BLOAD"00000003.scc",S: BSAVE"13.scc",256*8,256*12-1,S 214 BLOAD"00000003.scc",S: BSAVE"14.scc",256*12,256*16-1,S 215 BLOAD"00000003.scc",S: BSAVE"15.scc",256*16,256*20-1,S 216 BLOAD"00000003.scc",S: BSAVE"16.scc",256*20,256*24-1,S 217 BLOAD"00000003.scc",S: BSAVE"17.scc",256*24,256*28-1,S 218 BLOAD"00000003.scc",S: BSAVE"18.scc",256*28,256*32-1,S 219 BLOAD"00000003.scc",S: BSAVE"19.scc",256*32,256*36-1,S 220 BLOAD"00000003.scc",S: BSAVE"20.scc",256*36,256*40-1,S 221 BLOAD"00000003.scc",S: BSAVE"21.scc",256*40,256*44-1,S 222 BLOAD"00000003.scc",S: BSAVE"22.scc",256*44,256*48-1,S 223 BLOAD"00000003.scc",S: BSAVE"23.scc",256*48,256*52-1,S 224 BLOAD"00000003.scc",S: BSAVE"24.scc",256*52,256*56-1,S 225 BLOAD"00000003.scc",S: BSAVE"25.scc",256*56,256*60-1,S 226 BLOAD"00000003.scc",S: BSAVE"26.scc",256*60,256*64-1,S 227 BLOAD"00000003.scc",S: BSAVE"27.scc",256*64,256*68-1,S 228 BLOAD"00000003.scc",S: BSAVE"28.scc",256*68,256*72-1,S 229 BLOAD"00000003.scc",S: BSAVE"29.scc",256*72,256*76-1,S 230 BLOAD"00000003.scc",S: BSAVE"30.scc",256*76,256*80-1,S 231 BLOAD"00000003.scc",S: BSAVE"31.scc",256*80,256*84-1,S 232 BLOAD"00000003.scc",S: BSAVE"32.scc",256*84,256*88-1,S 233 BLOAD"00000003.scc",S: BSAVE"33.scc",256*88,256*92-1,S 234 BLOAD"00000003.scc",S: BSAVE"34.scc",256*92,256*96-1,S 235 BLOAD"00000003.scc",S: BSAVE"35.scc",256*96,256*100-1,S 236 BLOAD"00000003.scc",S: BSAVE"36.scc",256*100,256*104-1,S 237 BLOAD"00000003.scc",S: BSAVE"37.scc",256*104,256*108-1,S 238 BLOAD"00000003.scc",S: BSAVE"38.scc",256*108,256*112-1,S 239 BLOAD"00000003.scc",S: BSAVE"39.scc",256*112,256*116-1,S 240 BLOAD"00000003.scc",S: BSAVE"40.scc",256*116,256*120-1,S 241 BLOAD"00000003.scc",S: BSAVE"41.scc",256*120,256*124-1,S 242 BLOAD"00000003.scc",S: BSAVE"42.scc",256*124,256*128-1,S 243 BLOAD"00000003.scc",S: BSAVE"43.scc",256*128,256*132-1,S 244 BLOAD"00000003.scc",S: BSAVE"44.scc",256*132,256*136-1,S 245 BLOAD"00000003.scc",S: BSAVE"45.scc",256*136,256*140-1,S 246 BLOAD"00000003.scc",S: BSAVE"46.scc",256*140,256*144-1,S 247 BLOAD"00000003.scc",S: BSAVE"47.scc",256*144,256*148-1,S 248 BLOAD"00000003.scc",S: BSAVE"48.scc",256*148,256*152-1,S 249 BLOAD"00000003.scc",S: BSAVE"49.scc",256*152,256*156-1,S 250 BLOAD"00000003.scc",S: BSAVE"50.scc",256*156,256*160-1,S 251 BLOAD"00000003.scc",S: BSAVE"51.scc",256*160,256*164-1,S 252 BLOAD"00000003.scc",S: BSAVE"52.scc",256*164,256*168-1,S 253 BLOAD"00000003.scc",S: BSAVE"53.scc",256*168,256*172-1,S 254 BLOAD"00000003.scc",S: BSAVE"54.scc",256*172,256*176-1,S 255 BLOAD"00000003.scc",S: BSAVE"55.scc",256*176,256*180-1,S 256 BLOAD"00000003.scc",S: BSAVE"56.scc",256*180,256*184-1,S 257 BLOAD"00000003.scc",S: BSAVE"57.scc",256*184,256*188-1,S 258 BLOAD"00000003.scc",S: BSAVE"58.scc",256*188,256*192-1,S 259 BLOAD"00000003.scc",S: BSAVE"59.scc",256*192,256*196-1,S 260 BLOAD"00000003.scc",S: BSAVE"60.scc",256*196,256*200-1,S 261 BLOAD"00000003.scc",S: BSAVE"61.scc",256*200,256*204-1,S 262 BLOAD"00000003.scc",S: BSAVE"62.scc",256*204,256*208-1,S 263 BLOAD"00000003.scc",S: BSAVE"63.scc",256*208,256*212-1,S 264 kill"00000002.scc 265 kill"00000003.scc 299 CALL CHDIR (".."): CALL CHDIR ("H-04-05") 300 BLOAD"00000004.scc",S: BSAVE"00.scc",256*0,256*4-1,S 301 BLOAD"00000004.scc",S: BSAVE"01.scc",256*4,256*8-1,S 302 BLOAD"00000004.scc",S: BSAVE"02.scc",256*8,256*12-1,S 303 BLOAD"00000004.scc",S: BSAVE"03.scc",256*12,256*16-1,S 304 BLOAD"00000004.scc",S: BSAVE"04.scc",256*16,256*20-1,S 305 BLOAD"00000004.scc",S: BSAVE"05.scc",256*20,256*24-1,S 306 BLOAD"00000004.scc",S: BSAVE"06.scc",256*24,256*28-1,S 307 BLOAD"00000004.scc",S: BSAVE"07.scc",256*28,256*32-1,S 308 BLOAD"00000004.scc",S: BSAVE"08.scc",256*32,256*36-1,S 309 BLOAD"00000004.scc",S: BSAVE"09.scc",256*36,256*40-1,S 310 BLOAD"00000004.scc",S: BSAVE"10.scc",256*40,256*44-1,S 311 BLOAD"00000005.scc",S: BSAVE"11.scc",256*0,256*4-1,S 312 BLOAD"00000005.scc",S: BSAVE"12.scc",256*4,256*8-1,S 313 BLOAD"00000005.scc",S: BSAVE"13.scc",256*8,256*12-1,S 314 BLOAD"00000005.scc",S: BSAVE"14.scc",256*12,256*16-1,S 315 BLOAD"00000005.scc",S: BSAVE"15.scc",256*16,256*20-1,S 316 BLOAD"00000005.scc",S: BSAVE"16.scc",256*20,256*24-1,S 317 BLOAD"00000005.scc",S: BSAVE"17.scc",256*24,256*28-1,S 318 BLOAD"00000005.scc",S: BSAVE"18.scc",256*28,256*32-1,S 319 BLOAD"00000005.scc",S: BSAVE"19.scc",256*32,256*36-1,S 320 BLOAD"00000005.scc",S: BSAVE"20.scc",256*36,256*40-1,S 321 BLOAD"00000005.scc",S: BSAVE"21.scc",256*40,256*44-1,S 322 BLOAD"00000005.scc",S: BSAVE"22.scc",256*44,256*48-1,S 323 BLOAD"00000005.scc",S: BSAVE"23.scc",256*48,256*52-1,S 324 BLOAD"00000005.scc",S: BSAVE"24.scc",256*52,256*56-1,S 325 BLOAD"00000005.scc",S: BSAVE"25.scc",256*56,256*60-1,S 326 BLOAD"00000005.scc",S: BSAVE"26.scc",256*60,256*64-1,S 327 BLOAD"00000005.scc",S: BSAVE"27.scc",256*64,256*68-1,S 328 BLOAD"00000005.scc",S: BSAVE"28.scc",256*68,256*72-1,S 329 BLOAD"00000005.scc",S: BSAVE"29.scc",256*72,256*76-1,S 330 BLOAD"00000005.scc",S: BSAVE"30.scc",256*76,256*80-1,S 331 BLOAD"00000005.scc",S: BSAVE"31.scc",256*80,256*84-1,S 332 BLOAD"00000005.scc",S: BSAVE"32.scc",256*84,256*88-1,S 333 BLOAD"00000005.scc",S: BSAVE"33.scc",256*88,256*92-1,S 334 BLOAD"00000005.scc",S: BSAVE"34.scc",256*92,256*96-1,S 335 BLOAD"00000005.scc",S: BSAVE"35.scc",256*96,256*100-1,S 336 BLOAD"00000005.scc",S: BSAVE"36.scc",256*100,256*104-1,S 337 BLOAD"00000005.scc",S: BSAVE"37.scc",256*104,256*108-1,S 338 BLOAD"00000005.scc",S: BSAVE"38.scc",256*108,256*112-1,S 339 BLOAD"00000005.scc",S: BSAVE"39.scc",256*112,256*116-1,S 340 BLOAD"00000005.scc",S: BSAVE"40.scc",256*116,256*120-1,S 341 BLOAD"00000005.scc",S: BSAVE"41.scc",256*120,256*124-1,S 342 BLOAD"00000005.scc",S: BSAVE"42.scc",256*124,256*128-1,S 343 BLOAD"00000005.scc",S: BSAVE"43.scc",256*128,256*132-1,S 344 BLOAD"00000005.scc",S: BSAVE"44.scc",256*132,256*136-1,S 345 BLOAD"00000005.scc",S: BSAVE"45.scc",256*136,256*140-1,S 346 BLOAD"00000005.scc",S: BSAVE"46.scc",256*140,256*144-1,S 347 BLOAD"00000005.scc",S: BSAVE"47.scc",256*144,256*148-1,S 348 BLOAD"00000005.scc",S: BSAVE"48.scc",256*148,256*152-1,S 349 BLOAD"00000005.scc",S: BSAVE"49.scc",256*152,256*156-1,S 350 BLOAD"00000005.scc",S: BSAVE"50.scc",256*156,256*160-1,S 351 BLOAD"00000005.scc",S: BSAVE"51.scc",256*160,256*164-1,S 352 BLOAD"00000005.scc",S: BSAVE"52.scc",256*164,256*168-1,S 353 BLOAD"00000005.scc",S: BSAVE"53.scc",256*168,256*172-1,S 354 BLOAD"00000005.scc",S: BSAVE"54.scc",256*172,256*176-1,S 355 BLOAD"00000005.scc",S: BSAVE"55.scc",256*176,256*180-1,S 356 BLOAD"00000005.scc",S: BSAVE"56.scc",256*180,256*184-1,S 357 BLOAD"00000005.scc",S: BSAVE"57.scc",256*184,256*188-1,S 358 BLOAD"00000005.scc",S: BSAVE"58.scc",256*188,256*192-1,S 359 BLOAD"00000005.scc",S: BSAVE"59.scc",256*192,256*196-1,S 360 BLOAD"00000005.scc",S: BSAVE"60.scc",256*196,256*200-1,S 361 BLOAD"00000005.scc",S: BSAVE"61.scc",256*200,256*204-1,S 362 BLOAD"00000005.scc",S: BSAVE"62.scc",256*204,256*208-1,S 363 BLOAD"00000005.scc",S: BSAVE"63.scc",256*208,256*212-1,S 364 kill"00000004.scc 365 kill"00000005.scc 399 CALL CHDIR (".."): CALL CHDIR ("H-06-07") 400 BLOAD"00000006.scc",S: BSAVE"00.scc",256*0,256*4-1,S 401 BLOAD"00000006.scc",S: BSAVE"01.scc",256*4,256*8-1,S 402 BLOAD"00000006.scc",S: BSAVE"02.scc",256*8,256*12-1,S 403 BLOAD"00000006.scc",S: BSAVE"03.scc",256*12,256*16-1,S 404 BLOAD"00000006.scc",S: BSAVE"04.scc",256*16,256*20-1,S 405 BLOAD"00000006.scc",S: BSAVE"05.scc",256*20,256*24-1,S 406 BLOAD"00000006.scc",S: BSAVE"06.scc",256*24,256*28-1,S 407 BLOAD"00000006.scc",S: BSAVE"07.scc",256*28,256*32-1,S 408 BLOAD"00000006.scc",S: BSAVE"08.scc",256*32,256*36-1,S 409 BLOAD"00000006.scc",S: BSAVE"09.scc",256*36,256*40-1,S 410 BLOAD"00000006.scc",S: BSAVE"10.scc",256*40,256*44-1,S 411 BLOAD"00000007.scc",S: BSAVE"11.scc",256*0,256*4-1,S 412 BLOAD"00000007.scc",S: BSAVE"12.scc",256*4,256*8-1,S 413 BLOAD"00000007.scc",S: BSAVE"13.scc",256*8,256*12-1,S 414 BLOAD"00000007.scc",S: BSAVE"14.scc",256*12,256*16-1,S 415 BLOAD"00000007.scc",S: BSAVE"15.scc",256*16,256*20-1,S 416 BLOAD"00000007.scc",S: BSAVE"16.scc",256*20,256*24-1,S 417 BLOAD"00000007.scc",S: BSAVE"17.scc",256*24,256*28-1,S 418 BLOAD"00000007.scc",S: BSAVE"18.scc",256*28,256*32-1,S 419 BLOAD"00000007.scc",S: BSAVE"19.scc",256*32,256*36-1,S 420 BLOAD"00000007.scc",S: BSAVE"20.scc",256*36,256*40-1,S 421 BLOAD"00000007.scc",S: BSAVE"21.scc",256*40,256*44-1,S 422 BLOAD"00000007.scc",S: BSAVE"22.scc",256*44,256*48-1,S 423 BLOAD"00000007.scc",S: BSAVE"23.scc",256*48,256*52-1,S 424 BLOAD"00000007.scc",S: BSAVE"24.scc",256*52,256*56-1,S 425 BLOAD"00000007.scc",S: BSAVE"25.scc",256*56,256*60-1,S 426 BLOAD"00000007.scc",S: BSAVE"26.scc",256*60,256*64-1,S 427 BLOAD"00000007.scc",S: BSAVE"27.scc",256*64,256*68-1,S 428 BLOAD"00000007.scc",S: BSAVE"28.scc",256*68,256*72-1,S 429 BLOAD"00000007.scc",S: BSAVE"29.scc",256*72,256*76-1,S 430 BLOAD"00000007.scc",S: BSAVE"30.scc",256*76,256*80-1,S 431 BLOAD"00000007.scc",S: BSAVE"31.scc",256*80,256*84-1,S 432 BLOAD"00000007.scc",S: BSAVE"32.scc",256*84,256*88-1,S 433 BLOAD"00000007.scc",S: BSAVE"33.scc",256*88,256*92-1,S 434 BLOAD"00000007.scc",S: BSAVE"34.scc",256*92,256*96-1,S 435 BLOAD"00000007.scc",S: BSAVE"35.scc",256*96,256*100-1,S 436 BLOAD"00000007.scc",S: BSAVE"36.scc",256*100,256*104-1,S 437 BLOAD"00000007.scc",S: BSAVE"37.scc",256*104,256*108-1,S 438 BLOAD"00000007.scc",S: BSAVE"38.scc",256*108,256*112-1,S 439 BLOAD"00000007.scc",S: BSAVE"39.scc",256*112,256*116-1,S 440 BLOAD"00000007.scc",S: BSAVE"40.scc",256*116,256*120-1,S 441 BLOAD"00000007.scc",S: BSAVE"41.scc",256*120,256*124-1,S 442 BLOAD"00000007.scc",S: BSAVE"42.scc",256*124,256*128-1,S 443 BLOAD"00000007.scc",S: BSAVE"43.scc",256*128,256*132-1,S 444 BLOAD"00000007.scc",S: BSAVE"44.scc",256*132,256*136-1,S 445 BLOAD"00000007.scc",S: BSAVE"45.scc",256*136,256*140-1,S 446 BLOAD"00000007.scc",S: BSAVE"46.scc",256*140,256*144-1,S 447 BLOAD"00000007.scc",S: BSAVE"47.scc",256*144,256*148-1,S 448 BLOAD"00000007.scc",S: BSAVE"48.scc",256*148,256*152-1,S 449 BLOAD"00000007.scc",S: BSAVE"49.scc",256*152,256*156-1,S 450 BLOAD"00000007.scc",S: BSAVE"50.scc",256*156,256*160-1,S 451 BLOAD"00000007.scc",S: BSAVE"51.scc",256*160,256*164-1,S 452 BLOAD"00000007.scc",S: BSAVE"52.scc",256*164,256*168-1,S 453 BLOAD"00000007.scc",S: BSAVE"53.scc",256*168,256*172-1,S 454 BLOAD"00000007.scc",S: BSAVE"54.scc",256*172,256*176-1,S 455 BLOAD"00000007.scc",S: BSAVE"55.scc",256*176,256*180-1,S 456 BLOAD"00000007.scc",S: BSAVE"56.scc",256*180,256*184-1,S 457 BLOAD"00000007.scc",S: BSAVE"57.scc",256*184,256*188-1,S 458 BLOAD"00000007.scc",S: BSAVE"58.scc",256*188,256*192-1,S 459 BLOAD"00000007.scc",S: BSAVE"59.scc",256*192,256*196-1,S 460 BLOAD"00000007.scc",S: BSAVE"60.scc",256*196,256*200-1,S 461 BLOAD"00000007.scc",S: BSAVE"61.scc",256*200,256*204-1,S 462 BLOAD"00000007.scc",S: BSAVE"62.scc",256*204,256*208-1,S 463 BLOAD"00000007.scc",S: BSAVE"63.scc",256*208,256*212-1,S 464 kill"00000006.scc 465 kill"00000007.scc 499 CALL CHDIR ("..")
PAGE 8 à 15
Code TEXT :
10 'SAVE"GEN8-15.asc",A 20 'generateur de bribes d'images [11x(4x256)]+[(53x(4x256)] 30 VDP(10)=0: SCREEN 12 99 CALL CHDIR ("H-08-09") 100 BLOAD"00000008.scc",S: BSAVE"00.scc",256*0,256*4-1,S 101 BLOAD"00000008.scc",S: BSAVE"01.scc",256*4,256*8-1,S 102 BLOAD"00000008.scc",S: BSAVE"02.scc",256*8,256*12-1,S 103 BLOAD"00000008.scc",S: BSAVE"03.scc",256*12,256*16-1,S 104 BLOAD"00000008.scc",S: BSAVE"04.scc",256*16,256*20-1,S 105 BLOAD"00000008.scc",S: BSAVE"05.scc",256*20,256*24-1,S 106 BLOAD"00000008.scc",S: BSAVE"06.scc",256*24,256*28-1,S 107 BLOAD"00000008.scc",S: BSAVE"07.scc",256*28,256*32-1,S 108 BLOAD"00000008.scc",S: BSAVE"08.scc",256*32,256*36-1,S 109 BLOAD"00000008.scc",S: BSAVE"09.scc",256*36,256*40-1,S 110 BLOAD"00000008.scc",S: BSAVE"10.scc",256*40,256*44-1,S 111 BLOAD"00000009.scc",S: BSAVE"11.scc",256*0,256*4-1,S 112 BLOAD"00000009.scc",S: BSAVE"12.scc",256*4,256*8-1,S 113 BLOAD"00000009.scc",S: BSAVE"13.scc",256*8,256*12-1,S 114 BLOAD"00000009.scc",S: BSAVE"14.scc",256*12,256*16-1,S 115 BLOAD"00000009.scc",S: BSAVE"15.scc",256*16,256*20-1,S 116 BLOAD"00000009.scc",S: BSAVE"16.scc",256*20,256*24-1,S 117 BLOAD"00000009.scc",S: BSAVE"17.scc",256*24,256*28-1,S 118 BLOAD"00000009.scc",S: BSAVE"18.scc",256*28,256*32-1,S 119 BLOAD"00000009.scc",S: BSAVE"19.scc",256*32,256*36-1,S 120 BLOAD"00000009.scc",S: BSAVE"20.scc",256*36,256*40-1,S 121 BLOAD"00000009.scc",S: BSAVE"21.scc",256*40,256*44-1,S 122 BLOAD"00000009.scc",S: BSAVE"22.scc",256*44,256*48-1,S 123 BLOAD"00000009.scc",S: BSAVE"23.scc",256*48,256*52-1,S 124 BLOAD"00000009.scc",S: BSAVE"24.scc",256*52,256*56-1,S 125 BLOAD"00000009.scc",S: BSAVE"25.scc",256*56,256*60-1,S 126 BLOAD"00000009.scc",S: BSAVE"26.scc",256*60,256*64-1,S 127 BLOAD"00000009.scc",S: BSAVE"27.scc",256*64,256*68-1,S 128 BLOAD"00000009.scc",S: BSAVE"28.scc",256*68,256*72-1,S 129 BLOAD"00000009.scc",S: BSAVE"29.scc",256*72,256*76-1,S 130 BLOAD"00000009.scc",S: BSAVE"30.scc",256*76,256*80-1,S 131 BLOAD"00000009.scc",S: BSAVE"31.scc",256*80,256*84-1,S 132 BLOAD"00000009.scc",S: BSAVE"32.scc",256*84,256*88-1,S 133 BLOAD"00000009.scc",S: BSAVE"33.scc",256*88,256*92-1,S 134 BLOAD"00000009.scc",S: BSAVE"34.scc",256*92,256*96-1,S 135 BLOAD"00000009.scc",S: BSAVE"35.scc",256*96,256*100-1,S 136 BLOAD"00000009.scc",S: BSAVE"36.scc",256*100,256*104-1,S 137 BLOAD"00000009.scc",S: BSAVE"37.scc",256*104,256*108-1,S 138 BLOAD"00000009.scc",S: BSAVE"38.scc",256*108,256*112-1,S 139 BLOAD"00000009.scc",S: BSAVE"39.scc",256*112,256*116-1,S 140 BLOAD"00000009.scc",S: BSAVE"40.scc",256*116,256*120-1,S 141 BLOAD"00000009.scc",S: BSAVE"41.scc",256*120,256*124-1,S 142 BLOAD"00000009.scc",S: BSAVE"42.scc",256*124,256*128-1,S 143 BLOAD"00000009.scc",S: BSAVE"43.scc",256*128,256*132-1,S 144 BLOAD"00000009.scc",S: BSAVE"44.scc",256*132,256*136-1,S 145 BLOAD"00000009.scc",S: BSAVE"45.scc",256*136,256*140-1,S 146 BLOAD"00000009.scc",S: BSAVE"46.scc",256*140,256*144-1,S 147 BLOAD"00000009.scc",S: BSAVE"47.scc",256*144,256*148-1,S 148 BLOAD"00000009.scc",S: BSAVE"48.scc",256*148,256*152-1,S 149 BLOAD"00000009.scc",S: BSAVE"49.scc",256*152,256*156-1,S 150 BLOAD"00000009.scc",S: BSAVE"50.scc",256*156,256*160-1,S 151 BLOAD"00000009.scc",S: BSAVE"51.scc",256*160,256*164-1,S 152 BLOAD"00000009.scc",S: BSAVE"52.scc",256*164,256*168-1,S 153 BLOAD"00000009.scc",S: BSAVE"53.scc",256*168,256*172-1,S 154 BLOAD"00000009.scc",S: BSAVE"54.scc",256*172,256*176-1,S 155 BLOAD"00000009.scc",S: BSAVE"55.scc",256*176,256*180-1,S 156 BLOAD"00000009.scc",S: BSAVE"56.scc",256*180,256*184-1,S 157 BLOAD"00000009.scc",S: BSAVE"57.scc",256*184,256*188-1,S 158 BLOAD"00000009.scc",S: BSAVE"58.scc",256*188,256*192-1,S 159 BLOAD"00000009.scc",S: BSAVE"59.scc",256*192,256*196-1,S 160 BLOAD"00000009.scc",S: BSAVE"60.scc",256*196,256*200-1,S 161 BLOAD"00000009.scc",S: BSAVE"61.scc",256*200,256*204-1,S 162 BLOAD"00000009.scc",S: BSAVE"62.scc",256*204,256*208-1,S 163 BLOAD"00000009.scc",S: BSAVE"63.scc",256*208,256*212-1,S 164 kill"00000008.scc 165 kill"00000009.scc 199 CALL CHDIR (".."): CALL CHDIR ("H-10-11") 200 BLOAD"00000010.scc",S: BSAVE"00.scc",256*0,256*4-1,S 201 BLOAD"00000010.scc",S: BSAVE"01.scc",256*4,256*8-1,S 202 BLOAD"00000010.scc",S: BSAVE"02.scc",256*8,256*12-1,S 203 BLOAD"00000010.scc",S: BSAVE"03.scc",256*12,256*16-1,S 204 BLOAD"00000010.scc",S: BSAVE"04.scc",256*16,256*20-1,S 205 BLOAD"00000010.scc",S: BSAVE"05.scc",256*20,256*24-1,S 206 BLOAD"00000010.scc",S: BSAVE"06.scc",256*24,256*28-1,S 207 BLOAD"00000010.scc",S: BSAVE"07.scc",256*28,256*32-1,S 208 BLOAD"00000010.scc",S: BSAVE"08.scc",256*32,256*36-1,S 209 BLOAD"00000010.scc",S: BSAVE"09.scc",256*36,256*40-1,S 210 BLOAD"00000010.scc",S: BSAVE"10.scc",256*40,256*44-1,S 211 BLOAD"00000011.scc",S: BSAVE"11.scc",256*0,256*4-1,S 212 BLOAD"00000011.scc",S: BSAVE"12.scc",256*4,256*8-1,S 213 BLOAD"00000011.scc",S: BSAVE"13.scc",256*8,256*12-1,S 214 BLOAD"00000011.scc",S: BSAVE"14.scc",256*12,256*16-1,S 215 BLOAD"00000011.scc",S: BSAVE"15.scc",256*16,256*20-1,S 216 BLOAD"00000011.scc",S: BSAVE"16.scc",256*20,256*24-1,S 217 BLOAD"00000011.scc",S: BSAVE"17.scc",256*24,256*28-1,S 218 BLOAD"00000011.scc",S: BSAVE"18.scc",256*28,256*32-1,S 219 BLOAD"00000011.scc",S: BSAVE"19.scc",256*32,256*36-1,S 220 BLOAD"00000011.scc",S: BSAVE"20.scc",256*36,256*40-1,S 221 BLOAD"00000011.scc",S: BSAVE"21.scc",256*40,256*44-1,S 222 BLOAD"00000011.scc",S: BSAVE"22.scc",256*44,256*48-1,S 223 BLOAD"00000011.scc",S: BSAVE"23.scc",256*48,256*52-1,S 224 BLOAD"00000011.scc",S: BSAVE"24.scc",256*52,256*56-1,S 225 BLOAD"00000011.scc",S: BSAVE"25.scc",256*56,256*60-1,S 226 BLOAD"00000011.scc",S: BSAVE"26.scc",256*60,256*64-1,S 227 BLOAD"00000011.scc",S: BSAVE"27.scc",256*64,256*68-1,S 228 BLOAD"00000011.scc",S: BSAVE"28.scc",256*68,256*72-1,S 229 BLOAD"00000011.scc",S: BSAVE"29.scc",256*72,256*76-1,S 230 BLOAD"00000011.scc",S: BSAVE"30.scc",256*76,256*80-1,S 231 BLOAD"00000011.scc",S: BSAVE"31.scc",256*80,256*84-1,S 232 BLOAD"00000011.scc",S: BSAVE"32.scc",256*84,256*88-1,S 233 BLOAD"00000011.scc",S: BSAVE"33.scc",256*88,256*92-1,S 234 BLOAD"00000011.scc",S: BSAVE"34.scc",256*92,256*96-1,S 235 BLOAD"00000011.scc",S: BSAVE"35.scc",256*96,256*100-1,S 236 BLOAD"00000011.scc",S: BSAVE"36.scc",256*100,256*104-1,S 237 BLOAD"00000011.scc",S: BSAVE"37.scc",256*104,256*108-1,S 238 BLOAD"00000011.scc",S: BSAVE"38.scc",256*108,256*112-1,S 239 BLOAD"00000011.scc",S: BSAVE"39.scc",256*112,256*116-1,S 240 BLOAD"00000011.scc",S: BSAVE"40.scc",256*116,256*120-1,S 241 BLOAD"00000011.scc",S: BSAVE"41.scc",256*120,256*124-1,S 242 BLOAD"00000011.scc",S: BSAVE"42.scc",256*124,256*128-1,S 243 BLOAD"00000011.scc",S: BSAVE"43.scc",256*128,256*132-1,S 244 BLOAD"00000011.scc",S: BSAVE"44.scc",256*132,256*136-1,S 245 BLOAD"00000011.scc",S: BSAVE"45.scc",256*136,256*140-1,S 246 BLOAD"00000011.scc",S: BSAVE"46.scc",256*140,256*144-1,S 247 BLOAD"00000011.scc",S: BSAVE"47.scc",256*144,256*148-1,S 248 BLOAD"00000011.scc",S: BSAVE"48.scc",256*148,256*152-1,S 249 BLOAD"00000011.scc",S: BSAVE"49.scc",256*152,256*156-1,S 250 BLOAD"00000011.scc",S: BSAVE"50.scc",256*156,256*160-1,S 251 BLOAD"00000011.scc",S: BSAVE"51.scc",256*160,256*164-1,S 252 BLOAD"00000011.scc",S: BSAVE"52.scc",256*164,256*168-1,S 253 BLOAD"00000011.scc",S: BSAVE"53.scc",256*168,256*172-1,S 254 BLOAD"00000011.scc",S: BSAVE"54.scc",256*172,256*176-1,S 255 BLOAD"00000011.scc",S: BSAVE"55.scc",256*176,256*180-1,S 256 BLOAD"00000011.scc",S: BSAVE"56.scc",256*180,256*184-1,S 257 BLOAD"00000011.scc",S: BSAVE"57.scc",256*184,256*188-1,S 258 BLOAD"00000011.scc",S: BSAVE"58.scc",256*188,256*192-1,S 259 BLOAD"00000011.scc",S: BSAVE"59.scc",256*192,256*196-1,S 260 BLOAD"00000011.scc",S: BSAVE"60.scc",256*196,256*200-1,S 261 BLOAD"00000011.scc",S: BSAVE"61.scc",256*200,256*204-1,S 262 BLOAD"00000011.scc",S: BSAVE"62.scc",256*204,256*208-1,S 263 BLOAD"00000011.scc",S: BSAVE"63.scc",256*208,256*212-1,S 264 kill"00000010.scc 265 kill"00000011.scc 299 CALL CHDIR (".."): CALL CHDIR ("H-12-13") 300 BLOAD"00000012.scc",S: BSAVE"00.scc",256*0,256*4-1,S 301 BLOAD"00000012.scc",S: BSAVE"01.scc",256*4,256*8-1,S 302 BLOAD"00000012.scc",S: BSAVE"02.scc",256*8,256*12-1,S 303 BLOAD"00000012.scc",S: BSAVE"03.scc",256*12,256*16-1,S 304 BLOAD"00000012.scc",S: BSAVE"04.scc",256*16,256*20-1,S 305 BLOAD"00000012.scc",S: BSAVE"05.scc",256*20,256*24-1,S 306 BLOAD"00000012.scc",S: BSAVE"06.scc",256*24,256*28-1,S 307 BLOAD"00000012.scc",S: BSAVE"07.scc",256*28,256*32-1,S 308 BLOAD"00000012.scc",S: BSAVE"08.scc",256*32,256*36-1,S 309 BLOAD"00000012.scc",S: BSAVE"09.scc",256*36,256*40-1,S 310 BLOAD"00000012.scc",S: BSAVE"10.scc",256*40,256*44-1,S 311 BLOAD"00000013.scc",S: BSAVE"11.scc",256*0,256*4-1,S 312 BLOAD"00000013.scc",S: BSAVE"12.scc",256*4,256*8-1,S 313 BLOAD"00000013.scc",S: BSAVE"13.scc",256*8,256*12-1,S 314 BLOAD"00000013.scc",S: BSAVE"14.scc",256*12,256*16-1,S 315 BLOAD"00000013.scc",S: BSAVE"15.scc",256*16,256*20-1,S 316 BLOAD"00000013.scc",S: BSAVE"16.scc",256*20,256*24-1,S 317 BLOAD"00000013.scc",S: BSAVE"17.scc",256*24,256*28-1,S 318 BLOAD"00000013.scc",S: BSAVE"18.scc",256*28,256*32-1,S 319 BLOAD"00000013.scc",S: BSAVE"19.scc",256*32,256*36-1,S 320 BLOAD"00000013.scc",S: BSAVE"20.scc",256*36,256*40-1,S 321 BLOAD"00000013.scc",S: BSAVE"21.scc",256*40,256*44-1,S 322 BLOAD"00000013.scc",S: BSAVE"22.scc",256*44,256*48-1,S 323 BLOAD"00000013.scc",S: BSAVE"23.scc",256*48,256*52-1,S 324 BLOAD"00000013.scc",S: BSAVE"24.scc",256*52,256*56-1,S 325 BLOAD"00000013.scc",S: BSAVE"25.scc",256*56,256*60-1,S 326 BLOAD"00000013.scc",S: BSAVE"26.scc",256*60,256*64-1,S 327 BLOAD"00000013.scc",S: BSAVE"27.scc",256*64,256*68-1,S 328 BLOAD"00000013.scc",S: BSAVE"28.scc",256*68,256*72-1,S 329 BLOAD"00000013.scc",S: BSAVE"29.scc",256*72,256*76-1,S 330 BLOAD"00000013.scc",S: BSAVE"30.scc",256*76,256*80-1,S 331 BLOAD"00000013.scc",S: BSAVE"31.scc",256*80,256*84-1,S 332 BLOAD"00000013.scc",S: BSAVE"32.scc",256*84,256*88-1,S 333 BLOAD"00000013.scc",S: BSAVE"33.scc",256*88,256*92-1,S 334 BLOAD"00000013.scc",S: BSAVE"34.scc",256*92,256*96-1,S 335 BLOAD"00000013.scc",S: BSAVE"35.scc",256*96,256*100-1,S 336 BLOAD"00000013.scc",S: BSAVE"36.scc",256*100,256*104-1,S 337 BLOAD"00000013.scc",S: BSAVE"37.scc",256*104,256*108-1,S 338 BLOAD"00000013.scc",S: BSAVE"38.scc",256*108,256*112-1,S 339 BLOAD"00000013.scc",S: BSAVE"39.scc",256*112,256*116-1,S 340 BLOAD"00000013.scc",S: BSAVE"40.scc",256*116,256*120-1,S 341 BLOAD"00000013.scc",S: BSAVE"41.scc",256*120,256*124-1,S 342 BLOAD"00000013.scc",S: BSAVE"42.scc",256*124,256*128-1,S 343 BLOAD"00000013.scc",S: BSAVE"43.scc",256*128,256*132-1,S 344 BLOAD"00000013.scc",S: BSAVE"44.scc",256*132,256*136-1,S 345 BLOAD"00000013.scc",S: BSAVE"45.scc",256*136,256*140-1,S 346 BLOAD"00000013.scc",S: BSAVE"46.scc",256*140,256*144-1,S 347 BLOAD"00000013.scc",S: BSAVE"47.scc",256*144,256*148-1,S 348 BLOAD"00000013.scc",S: BSAVE"48.scc",256*148,256*152-1,S 349 BLOAD"00000013.scc",S: BSAVE"49.scc",256*152,256*156-1,S 350 BLOAD"00000013.scc",S: BSAVE"50.scc",256*156,256*160-1,S 351 BLOAD"00000013.scc",S: BSAVE"51.scc",256*160,256*164-1,S 352 BLOAD"00000013.scc",S: BSAVE"52.scc",256*164,256*168-1,S 353 BLOAD"00000013.scc",S: BSAVE"53.scc",256*168,256*172-1,S 354 BLOAD"00000013.scc",S: BSAVE"54.scc",256*172,256*176-1,S 355 BLOAD"00000013.scc",S: BSAVE"55.scc",256*176,256*180-1,S 356 BLOAD"00000013.scc",S: BSAVE"56.scc",256*180,256*184-1,S 357 BLOAD"00000013.scc",S: BSAVE"57.scc",256*184,256*188-1,S 358 BLOAD"00000013.scc",S: BSAVE"58.scc",256*188,256*192-1,S 359 BLOAD"00000013.scc",S: BSAVE"59.scc",256*192,256*196-1,S 360 BLOAD"00000013.scc",S: BSAVE"60.scc",256*196,256*200-1,S 361 BLOAD"00000013.scc",S: BSAVE"61.scc",256*200,256*204-1,S 362 BLOAD"00000013.scc",S: BSAVE"62.scc",256*204,256*208-1,S 363 BLOAD"00000013.scc",S: BSAVE"63.scc",256*208,256*212-1,S 364 kill"00000012.scc 365 kill"00000013.scc 399 CALL CHDIR (".."): CALL CHDIR ("H-14-15") 400 BLOAD"00000014.scc",S: BSAVE"00.scc",256*0,256*4-1,S 401 BLOAD"00000014.scc",S: BSAVE"01.scc",256*4,256*8-1,S 402 BLOAD"00000014.scc",S: BSAVE"02.scc",256*8,256*12-1,S 403 BLOAD"00000014.scc",S: BSAVE"03.scc",256*12,256*16-1,S 404 BLOAD"00000014.scc",S: BSAVE"04.scc",256*16,256*20-1,S 405 BLOAD"00000014.scc",S: BSAVE"05.scc",256*20,256*24-1,S 406 BLOAD"00000014.scc",S: BSAVE"06.scc",256*24,256*28-1,S 407 BLOAD"00000014.scc",S: BSAVE"07.scc",256*28,256*32-1,S 408 BLOAD"00000014.scc",S: BSAVE"08.scc",256*32,256*36-1,S 409 BLOAD"00000014.scc",S: BSAVE"09.scc",256*36,256*40-1,S 410 BLOAD"00000014.scc",S: BSAVE"10.scc",256*40,256*44-1,S 411 BLOAD"00000015.scc",S: BSAVE"11.scc",256*0,256*4-1,S 412 BLOAD"00000015.scc",S: BSAVE"12.scc",256*4,256*8-1,S 413 BLOAD"00000015.scc",S: BSAVE"13.scc",256*8,256*12-1,S 414 BLOAD"00000015.scc",S: BSAVE"14.scc",256*12,256*16-1,S 415 BLOAD"00000015.scc",S: BSAVE"15.scc",256*16,256*20-1,S 416 BLOAD"00000015.scc",S: BSAVE"16.scc",256*20,256*24-1,S 417 BLOAD"00000015.scc",S: BSAVE"17.scc",256*24,256*28-1,S 418 BLOAD"00000015.scc",S: BSAVE"18.scc",256*28,256*32-1,S 419 BLOAD"00000015.scc",S: BSAVE"19.scc",256*32,256*36-1,S 420 BLOAD"00000015.scc",S: BSAVE"20.scc",256*36,256*40-1,S 421 BLOAD"00000015.scc",S: BSAVE"21.scc",256*40,256*44-1,S 422 BLOAD"00000015.scc",S: BSAVE"22.scc",256*44,256*48-1,S 423 BLOAD"00000015.scc",S: BSAVE"23.scc",256*48,256*52-1,S 424 BLOAD"00000015.scc",S: BSAVE"24.scc",256*52,256*56-1,S 425 BLOAD"00000015.scc",S: BSAVE"25.scc",256*56,256*60-1,S 426 BLOAD"00000015.scc",S: BSAVE"26.scc",256*60,256*64-1,S 427 BLOAD"00000015.scc",S: BSAVE"27.scc",256*64,256*68-1,S 428 BLOAD"00000015.scc",S: BSAVE"28.scc",256*68,256*72-1,S 429 BLOAD"00000015.scc",S: BSAVE"29.scc",256*72,256*76-1,S 430 BLOAD"00000015.scc",S: BSAVE"30.scc",256*76,256*80-1,S 431 BLOAD"00000015.scc",S: BSAVE"31.scc",256*80,256*84-1,S 432 BLOAD"00000015.scc",S: BSAVE"32.scc",256*84,256*88-1,S 433 BLOAD"00000015.scc",S: BSAVE"33.scc",256*88,256*92-1,S 434 BLOAD"00000015.scc",S: BSAVE"34.scc",256*92,256*96-1,S 435 BLOAD"00000015.scc",S: BSAVE"35.scc",256*96,256*100-1,S 436 BLOAD"00000015.scc",S: BSAVE"36.scc",256*100,256*104-1,S 437 BLOAD"00000015.scc",S: BSAVE"37.scc",256*104,256*108-1,S 438 BLOAD"00000015.scc",S: BSAVE"38.scc",256*108,256*112-1,S 439 BLOAD"00000015.scc",S: BSAVE"39.scc",256*112,256*116-1,S 440 BLOAD"00000015.scc",S: BSAVE"40.scc",256*116,256*120-1,S 441 BLOAD"00000015.scc",S: BSAVE"41.scc",256*120,256*124-1,S 442 BLOAD"00000015.scc",S: BSAVE"42.scc",256*124,256*128-1,S 443 BLOAD"00000015.scc",S: BSAVE"43.scc",256*128,256*132-1,S 444 BLOAD"00000015.scc",S: BSAVE"44.scc",256*132,256*136-1,S 445 BLOAD"00000015.scc",S: BSAVE"45.scc",256*136,256*140-1,S 446 BLOAD"00000015.scc",S: BSAVE"46.scc",256*140,256*144-1,S 447 BLOAD"00000015.scc",S: BSAVE"47.scc",256*144,256*148-1,S 448 BLOAD"00000015.scc",S: BSAVE"48.scc",256*148,256*152-1,S 449 BLOAD"00000015.scc",S: BSAVE"49.scc",256*152,256*156-1,S 450 BLOAD"00000015.scc",S: BSAVE"50.scc",256*156,256*160-1,S 451 BLOAD"00000015.scc",S: BSAVE"51.scc",256*160,256*164-1,S 452 BLOAD"00000015.scc",S: BSAVE"52.scc",256*164,256*168-1,S 453 BLOAD"00000015.scc",S: BSAVE"53.scc",256*168,256*172-1,S 454 BLOAD"00000015.scc",S: BSAVE"54.scc",256*172,256*176-1,S 455 BLOAD"00000015.scc",S: BSAVE"55.scc",256*176,256*180-1,S 456 BLOAD"00000015.scc",S: BSAVE"56.scc",256*180,256*184-1,S 457 BLOAD"00000015.scc",S: BSAVE"57.scc",256*184,256*188-1,S 458 BLOAD"00000015.scc",S: BSAVE"58.scc",256*188,256*192-1,S 459 BLOAD"00000015.scc",S: BSAVE"59.scc",256*192,256*196-1,S 460 BLOAD"00000015.scc",S: BSAVE"60.scc",256*196,256*200-1,S 461 BLOAD"00000015.scc",S: BSAVE"61.scc",256*200,256*204-1,S 462 BLOAD"00000015.scc",S: BSAVE"62.scc",256*204,256*208-1,S 463 BLOAD"00000015.scc",S: BSAVE"63.scc",256*208,256*212-1,S 464 kill"00000014.scc 465 kill"00000015.scc 499 CALL CHDIR ("..")
Les pages de 16 à 23
Code TEXT :
10 'SAVE"GEN16-23.asc",A 20 'generateur de bribes d'images [11x(4x256)]+[(53x(4x256)] 30 VDP(10)=0: SCREEN 12 99 CALL CHDIR ("H-16-17") 100 BLOAD"00000016.scc",S: BSAVE"00.scc",256*0,256*4-1,S 101 BLOAD"00000016.scc",S: BSAVE"01.scc",256*4,256*8-1,S 102 BLOAD"00000016.scc",S: BSAVE"02.scc",256*8,256*12-1,S 103 BLOAD"00000016.scc",S: BSAVE"03.scc",256*12,256*16-1,S 104 BLOAD"00000016.scc",S: BSAVE"04.scc",256*16,256*20-1,S 105 BLOAD"00000016.scc",S: BSAVE"05.scc",256*20,256*24-1,S 106 BLOAD"00000016.scc",S: BSAVE"06.scc",256*24,256*28-1,S 107 BLOAD"00000016.scc",S: BSAVE"07.scc",256*28,256*32-1,S 108 BLOAD"00000016.scc",S: BSAVE"08.scc",256*32,256*36-1,S 109 BLOAD"00000016.scc",S: BSAVE"09.scc",256*36,256*40-1,S 110 BLOAD"00000016.scc",S: BSAVE"10.scc",256*40,256*44-1,S 111 BLOAD"00000017.scc",S: BSAVE"11.scc",256*0,256*4-1,S 112 BLOAD"00000017.scc",S: BSAVE"12.scc",256*4,256*8-1,S 113 BLOAD"00000017.scc",S: BSAVE"13.scc",256*8,256*12-1,S 114 BLOAD"00000017.scc",S: BSAVE"14.scc",256*12,256*16-1,S 115 BLOAD"00000017.scc",S: BSAVE"15.scc",256*16,256*20-1,S 116 BLOAD"00000017.scc",S: BSAVE"16.scc",256*20,256*24-1,S 117 BLOAD"00000017.scc",S: BSAVE"17.scc",256*24,256*28-1,S 118 BLOAD"00000017.scc",S: BSAVE"18.scc",256*28,256*32-1,S 119 BLOAD"00000017.scc",S: BSAVE"19.scc",256*32,256*36-1,S 120 BLOAD"00000017.scc",S: BSAVE"20.scc",256*36,256*40-1,S 121 BLOAD"00000017.scc",S: BSAVE"21.scc",256*40,256*44-1,S 122 BLOAD"00000017.scc",S: BSAVE"22.scc",256*44,256*48-1,S 123 BLOAD"00000017.scc",S: BSAVE"23.scc",256*48,256*52-1,S 124 BLOAD"00000017.scc",S: BSAVE"24.scc",256*52,256*56-1,S 125 BLOAD"00000017.scc",S: BSAVE"25.scc",256*56,256*60-1,S 126 BLOAD"00000017.scc",S: BSAVE"26.scc",256*60,256*64-1,S 127 BLOAD"00000017.scc",S: BSAVE"27.scc",256*64,256*68-1,S 128 BLOAD"00000017.scc",S: BSAVE"28.scc",256*68,256*72-1,S 129 BLOAD"00000017.scc",S: BSAVE"29.scc",256*72,256*76-1,S 130 BLOAD"00000017.scc",S: BSAVE"30.scc",256*76,256*80-1,S 131 BLOAD"00000017.scc",S: BSAVE"31.scc",256*80,256*84-1,S 132 BLOAD"00000017.scc",S: BSAVE"32.scc",256*84,256*88-1,S 133 BLOAD"00000017.scc",S: BSAVE"33.scc",256*88,256*92-1,S 134 BLOAD"00000017.scc",S: BSAVE"34.scc",256*92,256*96-1,S 135 BLOAD"00000017.scc",S: BSAVE"35.scc",256*96,256*100-1,S 136 BLOAD"00000017.scc",S: BSAVE"36.scc",256*100,256*104-1,S 137 BLOAD"00000017.scc",S: BSAVE"37.scc",256*104,256*108-1,S 138 BLOAD"00000017.scc",S: BSAVE"38.scc",256*108,256*112-1,S 139 BLOAD"00000017.scc",S: BSAVE"39.scc",256*112,256*116-1,S 140 BLOAD"00000017.scc",S: BSAVE"40.scc",256*116,256*120-1,S 141 BLOAD"00000017.scc",S: BSAVE"41.scc",256*120,256*124-1,S 142 BLOAD"00000017.scc",S: BSAVE"42.scc",256*124,256*128-1,S 143 BLOAD"00000017.scc",S: BSAVE"43.scc",256*128,256*132-1,S 144 BLOAD"00000017.scc",S: BSAVE"44.scc",256*132,256*136-1,S 145 BLOAD"00000017.scc",S: BSAVE"45.scc",256*136,256*140-1,S 146 BLOAD"00000017.scc",S: BSAVE"46.scc",256*140,256*144-1,S 147 BLOAD"00000017.scc",S: BSAVE"47.scc",256*144,256*148-1,S 148 BLOAD"00000017.scc",S: BSAVE"48.scc",256*148,256*152-1,S 149 BLOAD"00000017.scc",S: BSAVE"49.scc",256*152,256*156-1,S 150 BLOAD"00000017.scc",S: BSAVE"50.scc",256*156,256*160-1,S 151 BLOAD"00000017.scc",S: BSAVE"51.scc",256*160,256*164-1,S 152 BLOAD"00000017.scc",S: BSAVE"52.scc",256*164,256*168-1,S 153 BLOAD"00000017.scc",S: BSAVE"53.scc",256*168,256*172-1,S 154 BLOAD"00000017.scc",S: BSAVE"54.scc",256*172,256*176-1,S 155 BLOAD"00000017.scc",S: BSAVE"55.scc",256*176,256*180-1,S 156 BLOAD"00000017.scc",S: BSAVE"56.scc",256*180,256*184-1,S 157 BLOAD"00000017.scc",S: BSAVE"57.scc",256*184,256*188-1,S 158 BLOAD"00000017.scc",S: BSAVE"58.scc",256*188,256*192-1,S 159 BLOAD"00000017.scc",S: BSAVE"59.scc",256*192,256*196-1,S 160 BLOAD"00000017.scc",S: BSAVE"60.scc",256*196,256*200-1,S 161 BLOAD"00000017.scc",S: BSAVE"61.scc",256*200,256*204-1,S 162 BLOAD"00000017.scc",S: BSAVE"62.scc",256*204,256*208-1,S 163 BLOAD"00000017.scc",S: BSAVE"63.scc",256*208,256*212-1,S 164 kill"00000016.scc 165 kill"00000017.scc 199 CALL CHDIR (".."): CALL CHDIR ("H-18-19") 200 BLOAD"00000018.scc",S: BSAVE"00.scc",256*0,256*4-1,S 201 BLOAD"00000018.scc",S: BSAVE"01.scc",256*4,256*8-1,S 202 BLOAD"00000018.scc",S: BSAVE"02.scc",256*8,256*12-1,S 203 BLOAD"00000018.scc",S: BSAVE"03.scc",256*12,256*16-1,S 204 BLOAD"00000018.scc",S: BSAVE"04.scc",256*16,256*20-1,S 205 BLOAD"00000018.scc",S: BSAVE"05.scc",256*20,256*24-1,S 206 BLOAD"00000018.scc",S: BSAVE"06.scc",256*24,256*28-1,S 207 BLOAD"00000018.scc",S: BSAVE"07.scc",256*28,256*32-1,S 208 BLOAD"00000018.scc",S: BSAVE"08.scc",256*32,256*36-1,S 209 BLOAD"00000018.scc",S: BSAVE"09.scc",256*36,256*40-1,S 210 BLOAD"00000018.scc",S: BSAVE"10.scc",256*40,256*44-1,S 211 BLOAD"00000019.scc",S: BSAVE"11.scc",256*0,256*4-1,S 212 BLOAD"00000019.scc",S: BSAVE"12.scc",256*4,256*8-1,S 213 BLOAD"00000019.scc",S: BSAVE"13.scc",256*8,256*12-1,S 214 BLOAD"00000019.scc",S: BSAVE"14.scc",256*12,256*16-1,S 215 BLOAD"00000019.scc",S: BSAVE"15.scc",256*16,256*20-1,S 216 BLOAD"00000019.scc",S: BSAVE"16.scc",256*20,256*24-1,S 217 BLOAD"00000019.scc",S: BSAVE"17.scc",256*24,256*28-1,S 218 BLOAD"00000019.scc",S: BSAVE"18.scc",256*28,256*32-1,S 219 BLOAD"00000019.scc",S: BSAVE"19.scc",256*32,256*36-1,S 220 BLOAD"00000019.scc",S: BSAVE"20.scc",256*36,256*40-1,S 221 BLOAD"00000019.scc",S: BSAVE"21.scc",256*40,256*44-1,S 222 BLOAD"00000019.scc",S: BSAVE"22.scc",256*44,256*48-1,S 223 BLOAD"00000019.scc",S: BSAVE"23.scc",256*48,256*52-1,S 224 BLOAD"00000019.scc",S: BSAVE"24.scc",256*52,256*56-1,S 225 BLOAD"00000019.scc",S: BSAVE"25.scc",256*56,256*60-1,S 226 BLOAD"00000019.scc",S: BSAVE"26.scc",256*60,256*64-1,S 227 BLOAD"00000019.scc",S: BSAVE"27.scc",256*64,256*68-1,S 228 BLOAD"00000019.scc",S: BSAVE"28.scc",256*68,256*72-1,S 229 BLOAD"00000019.scc",S: BSAVE"29.scc",256*72,256*76-1,S 230 BLOAD"00000019.scc",S: BSAVE"30.scc",256*76,256*80-1,S 231 BLOAD"00000019.scc",S: BSAVE"31.scc",256*80,256*84-1,S 232 BLOAD"00000019.scc",S: BSAVE"32.scc",256*84,256*88-1,S 233 BLOAD"00000019.scc",S: BSAVE"33.scc",256*88,256*92-1,S 234 BLOAD"00000019.scc",S: BSAVE"34.scc",256*92,256*96-1,S 235 BLOAD"00000019.scc",S: BSAVE"35.scc",256*96,256*100-1,S 236 BLOAD"00000019.scc",S: BSAVE"36.scc",256*100,256*104-1,S 237 BLOAD"00000019.scc",S: BSAVE"37.scc",256*104,256*108-1,S 238 BLOAD"00000019.scc",S: BSAVE"38.scc",256*108,256*112-1,S 239 BLOAD"00000019.scc",S: BSAVE"39.scc",256*112,256*116-1,S 240 BLOAD"00000019.scc",S: BSAVE"40.scc",256*116,256*120-1,S 241 BLOAD"00000019.scc",S: BSAVE"41.scc",256*120,256*124-1,S 242 BLOAD"00000019.scc",S: BSAVE"42.scc",256*124,256*128-1,S 243 BLOAD"00000019.scc",S: BSAVE"43.scc",256*128,256*132-1,S 244 BLOAD"00000019.scc",S: BSAVE"44.scc",256*132,256*136-1,S 245 BLOAD"00000019.scc",S: BSAVE"45.scc",256*136,256*140-1,S 246 BLOAD"00000019.scc",S: BSAVE"46.scc",256*140,256*144-1,S 247 BLOAD"00000019.scc",S: BSAVE"47.scc",256*144,256*148-1,S 248 BLOAD"00000019.scc",S: BSAVE"48.scc",256*148,256*152-1,S 249 BLOAD"00000019.scc",S: BSAVE"49.scc",256*152,256*156-1,S 250 BLOAD"00000019.scc",S: BSAVE"50.scc",256*156,256*160-1,S 251 BLOAD"00000019.scc",S: BSAVE"51.scc",256*160,256*164-1,S 252 BLOAD"00000019.scc",S: BSAVE"52.scc",256*164,256*168-1,S 253 BLOAD"00000019.scc",S: BSAVE"53.scc",256*168,256*172-1,S 254 BLOAD"00000019.scc",S: BSAVE"54.scc",256*172,256*176-1,S 255 BLOAD"00000019.scc",S: BSAVE"55.scc",256*176,256*180-1,S 256 BLOAD"00000019.scc",S: BSAVE"56.scc",256*180,256*184-1,S 257 BLOAD"00000019.scc",S: BSAVE"57.scc",256*184,256*188-1,S 258 BLOAD"00000019.scc",S: BSAVE"58.scc",256*188,256*192-1,S 259 BLOAD"00000019.scc",S: BSAVE"59.scc",256*192,256*196-1,S 260 BLOAD"00000019.scc",S: BSAVE"60.scc",256*196,256*200-1,S 261 BLOAD"00000019.scc",S: BSAVE"61.scc",256*200,256*204-1,S 262 BLOAD"00000019.scc",S: BSAVE"62.scc",256*204,256*208-1,S 263 BLOAD"00000019.scc",S: BSAVE"63.scc",256*208,256*212-1,S 264 kill"00000018.scc 265 kill"00000019.scc 299 CALL CHDIR (".."): CALL CHDIR ("H-20-21") 300 BLOAD"00000020.scc",S: BSAVE"00.scc",256*0,256*4-1,S 301 BLOAD"00000020.scc",S: BSAVE"01.scc",256*4,256*8-1,S 302 BLOAD"00000020.scc",S: BSAVE"02.scc",256*8,256*12-1,S 303 BLOAD"00000020.scc",S: BSAVE"03.scc",256*12,256*16-1,S 304 BLOAD"00000020.scc",S: BSAVE"04.scc",256*16,256*20-1,S 305 BLOAD"00000020.scc",S: BSAVE"05.scc",256*20,256*24-1,S 306 BLOAD"00000020.scc",S: BSAVE"06.scc",256*24,256*28-1,S 307 BLOAD"00000020.scc",S: BSAVE"07.scc",256*28,256*32-1,S 308 BLOAD"00000020.scc",S: BSAVE"08.scc",256*32,256*36-1,S 309 BLOAD"00000020.scc",S: BSAVE"09.scc",256*36,256*40-1,S 310 BLOAD"00000020.scc",S: BSAVE"10.scc",256*40,256*44-1,S 311 BLOAD"00000021.scc",S: BSAVE"11.scc",256*0,256*4-1,S 312 BLOAD"00000021.scc",S: BSAVE"12.scc",256*4,256*8-1,S 313 BLOAD"00000021.scc",S: BSAVE"13.scc",256*8,256*12-1,S 314 BLOAD"00000021.scc",S: BSAVE"14.scc",256*12,256*16-1,S 315 BLOAD"00000021.scc",S: BSAVE"15.scc",256*16,256*20-1,S 316 BLOAD"00000021.scc",S: BSAVE"16.scc",256*20,256*24-1,S 317 BLOAD"00000021.scc",S: BSAVE"17.scc",256*24,256*28-1,S 318 BLOAD"00000021.scc",S: BSAVE"18.scc",256*28,256*32-1,S 319 BLOAD"00000021.scc",S: BSAVE"19.scc",256*32,256*36-1,S 320 BLOAD"00000021.scc",S: BSAVE"20.scc",256*36,256*40-1,S 321 BLOAD"00000021.scc",S: BSAVE"21.scc",256*40,256*44-1,S 322 BLOAD"00000021.scc",S: BSAVE"22.scc",256*44,256*48-1,S 323 BLOAD"00000021.scc",S: BSAVE"23.scc",256*48,256*52-1,S 324 BLOAD"00000021.scc",S: BSAVE"24.scc",256*52,256*56-1,S 325 BLOAD"00000021.scc",S: BSAVE"25.scc",256*56,256*60-1,S 326 BLOAD"00000021.scc",S: BSAVE"26.scc",256*60,256*64-1,S 327 BLOAD"00000021.scc",S: BSAVE"27.scc",256*64,256*68-1,S 328 BLOAD"00000021.scc",S: BSAVE"28.scc",256*68,256*72-1,S 329 BLOAD"00000021.scc",S: BSAVE"29.scc",256*72,256*76-1,S 330 BLOAD"00000021.scc",S: BSAVE"30.scc",256*76,256*80-1,S 331 BLOAD"00000021.scc",S: BSAVE"31.scc",256*80,256*84-1,S 332 BLOAD"00000021.scc",S: BSAVE"32.scc",256*84,256*88-1,S 333 BLOAD"00000021.scc",S: BSAVE"33.scc",256*88,256*92-1,S 334 BLOAD"00000021.scc",S: BSAVE"34.scc",256*92,256*96-1,S 335 BLOAD"00000021.scc",S: BSAVE"35.scc",256*96,256*100-1,S 336 BLOAD"00000021.scc",S: BSAVE"36.scc",256*100,256*104-1,S 337 BLOAD"00000021.scc",S: BSAVE"37.scc",256*104,256*108-1,S 338 BLOAD"00000021.scc",S: BSAVE"38.scc",256*108,256*112-1,S 339 BLOAD"00000021.scc",S: BSAVE"39.scc",256*112,256*116-1,S 340 BLOAD"00000021.scc",S: BSAVE"40.scc",256*116,256*120-1,S 341 BLOAD"00000021.scc",S: BSAVE"41.scc",256*120,256*124-1,S 342 BLOAD"00000021.scc",S: BSAVE"42.scc",256*124,256*128-1,S 343 BLOAD"00000021.scc",S: BSAVE"43.scc",256*128,256*132-1,S 344 BLOAD"00000021.scc",S: BSAVE"44.scc",256*132,256*136-1,S 345 BLOAD"00000021.scc",S: BSAVE"45.scc",256*136,256*140-1,S 346 BLOAD"00000021.scc",S: BSAVE"46.scc",256*140,256*144-1,S 347 BLOAD"00000021.scc",S: BSAVE"47.scc",256*144,256*148-1,S 348 BLOAD"00000021.scc",S: BSAVE"48.scc",256*148,256*152-1,S 349 BLOAD"00000021.scc",S: BSAVE"49.scc",256*152,256*156-1,S 350 BLOAD"00000021.scc",S: BSAVE"50.scc",256*156,256*160-1,S 351 BLOAD"00000021.scc",S: BSAVE"51.scc",256*160,256*164-1,S 352 BLOAD"00000021.scc",S: BSAVE"52.scc",256*164,256*168-1,S 353 BLOAD"00000021.scc",S: BSAVE"53.scc",256*168,256*172-1,S 354 BLOAD"00000021.scc",S: BSAVE"54.scc",256*172,256*176-1,S 355 BLOAD"00000021.scc",S: BSAVE"55.scc",256*176,256*180-1,S 356 BLOAD"00000021.scc",S: BSAVE"56.scc",256*180,256*184-1,S 357 BLOAD"00000021.scc",S: BSAVE"57.scc",256*184,256*188-1,S 358 BLOAD"00000021.scc",S: BSAVE"58.scc",256*188,256*192-1,S 359 BLOAD"00000021.scc",S: BSAVE"59.scc",256*192,256*196-1,S 360 BLOAD"00000021.scc",S: BSAVE"60.scc",256*196,256*200-1,S 361 BLOAD"00000021.scc",S: BSAVE"61.scc",256*200,256*204-1,S 362 BLOAD"00000021.scc",S: BSAVE"62.scc",256*204,256*208-1,S 363 BLOAD"00000021.scc",S: BSAVE"63.scc",256*208,256*212-1,S 364 kill"00000020.scc 365 kill"00000021.scc 399 CALL CHDIR (".."): CALL CHDIR ("H-22-23") 400 BLOAD"00000022.scc",S: BSAVE"00.scc",256*0,256*4-1,S 401 BLOAD"00000022.scc",S: BSAVE"01.scc",256*4,256*8-1,S 402 BLOAD"00000022.scc",S: BSAVE"02.scc",256*8,256*12-1,S 403 BLOAD"00000022.scc",S: BSAVE"03.scc",256*12,256*16-1,S 404 BLOAD"00000022.scc",S: BSAVE"04.scc",256*16,256*20-1,S 405 BLOAD"00000022.scc",S: BSAVE"05.scc",256*20,256*24-1,S 406 BLOAD"00000022.scc",S: BSAVE"06.scc",256*24,256*28-1,S 407 BLOAD"00000022.scc",S: BSAVE"07.scc",256*28,256*32-1,S 408 BLOAD"00000022.scc",S: BSAVE"08.scc",256*32,256*36-1,S 409 BLOAD"00000022.scc",S: BSAVE"09.scc",256*36,256*40-1,S 410 BLOAD"00000022.scc",S: BSAVE"10.scc",256*40,256*44-1,S 411 BLOAD"00000023.scc",S: BSAVE"11.scc",256*0,256*4-1,S 412 BLOAD"00000023.scc",S: BSAVE"12.scc",256*4,256*8-1,S 413 BLOAD"00000023.scc",S: BSAVE"13.scc",256*8,256*12-1,S 414 BLOAD"00000023.scc",S: BSAVE"14.scc",256*12,256*16-1,S 415 BLOAD"00000023.scc",S: BSAVE"15.scc",256*16,256*20-1,S 416 BLOAD"00000023.scc",S: BSAVE"16.scc",256*20,256*24-1,S 417 BLOAD"00000023.scc",S: BSAVE"17.scc",256*24,256*28-1,S 418 BLOAD"00000023.scc",S: BSAVE"18.scc",256*28,256*32-1,S 419 BLOAD"00000023.scc",S: BSAVE"19.scc",256*32,256*36-1,S 420 BLOAD"00000023.scc",S: BSAVE"20.scc",256*36,256*40-1,S 421 BLOAD"00000023.scc",S: BSAVE"21.scc",256*40,256*44-1,S 422 BLOAD"00000023.scc",S: BSAVE"22.scc",256*44,256*48-1,S 423 BLOAD"00000023.scc",S: BSAVE"23.scc",256*48,256*52-1,S 424 BLOAD"00000023.scc",S: BSAVE"24.scc",256*52,256*56-1,S 425 BLOAD"00000023.scc",S: BSAVE"25.scc",256*56,256*60-1,S 426 BLOAD"00000023.scc",S: BSAVE"26.scc",256*60,256*64-1,S 427 BLOAD"00000023.scc",S: BSAVE"27.scc",256*64,256*68-1,S 428 BLOAD"00000023.scc",S: BSAVE"28.scc",256*68,256*72-1,S 429 BLOAD"00000023.scc",S: BSAVE"29.scc",256*72,256*76-1,S 430 BLOAD"00000023.scc",S: BSAVE"30.scc",256*76,256*80-1,S 431 BLOAD"00000023.scc",S: BSAVE"31.scc",256*80,256*84-1,S 432 BLOAD"00000023.scc",S: BSAVE"32.scc",256*84,256*88-1,S 433 BLOAD"00000023.scc",S: BSAVE"33.scc",256*88,256*92-1,S 434 BLOAD"00000023.scc",S: BSAVE"34.scc",256*92,256*96-1,S 435 BLOAD"00000023.scc",S: BSAVE"35.scc",256*96,256*100-1,S 436 BLOAD"00000023.scc",S: BSAVE"36.scc",256*100,256*104-1,S 437 BLOAD"00000023.scc",S: BSAVE"37.scc",256*104,256*108-1,S 438 BLOAD"00000023.scc",S: BSAVE"38.scc",256*108,256*112-1,S 439 BLOAD"00000023.scc",S: BSAVE"39.scc",256*112,256*116-1,S 440 BLOAD"00000023.scc",S: BSAVE"40.scc",256*116,256*120-1,S 441 BLOAD"00000023.scc",S: BSAVE"41.scc",256*120,256*124-1,S 442 BLOAD"00000023.scc",S: BSAVE"42.scc",256*124,256*128-1,S 443 BLOAD"00000023.scc",S: BSAVE"43.scc",256*128,256*132-1,S 444 BLOAD"00000023.scc",S: BSAVE"44.scc",256*132,256*136-1,S 445 BLOAD"00000023.scc",S: BSAVE"45.scc",256*136,256*140-1,S 446 BLOAD"00000023.scc",S: BSAVE"46.scc",256*140,256*144-1,S 447 BLOAD"00000023.scc",S: BSAVE"47.scc",256*144,256*148-1,S 448 BLOAD"00000023.scc",S: BSAVE"48.scc",256*148,256*152-1,S 449 BLOAD"00000023.scc",S: BSAVE"49.scc",256*152,256*156-1,S 450 BLOAD"00000023.scc",S: BSAVE"50.scc",256*156,256*160-1,S 451 BLOAD"00000023.scc",S: BSAVE"51.scc",256*160,256*164-1,S 452 BLOAD"00000023.scc",S: BSAVE"52.scc",256*164,256*168-1,S 453 BLOAD"00000023.scc",S: BSAVE"53.scc",256*168,256*172-1,S 454 BLOAD"00000023.scc",S: BSAVE"54.scc",256*172,256*176-1,S 455 BLOAD"00000023.scc",S: BSAVE"55.scc",256*176,256*180-1,S 456 BLOAD"00000023.scc",S: BSAVE"56.scc",256*180,256*184-1,S 457 BLOAD"00000023.scc",S: BSAVE"57.scc",256*184,256*188-1,S 458 BLOAD"00000023.scc",S: BSAVE"58.scc",256*188,256*192-1,S 459 BLOAD"00000023.scc",S: BSAVE"59.scc",256*192,256*196-1,S 460 BLOAD"00000023.scc",S: BSAVE"60.scc",256*196,256*200-1,S 461 BLOAD"00000023.scc",S: BSAVE"61.scc",256*200,256*204-1,S 462 BLOAD"00000023.scc",S: BSAVE"62.scc",256*204,256*208-1,S 463 BLOAD"00000023.scc",S: BSAVE"63.scc",256*208,256*212-1,S 464 kill"00000022.scc 465 kill"00000023.scc 499 CALL CHDIR ("..")
Le player Horizontal
Code TEXT :
10 'SAVE"HPLAY13.asc",A 20 'PLAYER DE BRIBES HORIZONTAL [11X(4X256)]+[(53X(4X256)] 30 VDP(10)=0:SCREEN 12,,,,,1:X=100:Y=100:P=0:N=N+4AND255 40 IF P=0 THEN CALL CHDIR ("H-00-01"):SET PAGE 0,1:'BLOAD"00000005.SCC",S:CALL CHDIR (".."):CALL CHDIR ("H-00-01") 41 IF P=1 THEN CALL CHDIR ("H-02-03"):GOTO49 42 IF P=2 THEN CALL CHDIR ("H-04-05"):GOTO49 43 IF P=3 THEN CALL CHDIR ("H-06-07"):GOTO49 44 IF P=4 THEN CALL CHDIR ("H-08-09"):GOTO49 45 IF P=5 THEN CALL CHDIR ("H-10-11"):GOTO49 46 IF P=6 THEN CALL CHDIR ("H-12-13"):GOTO49 47 IF P=7 THEN CALL CHDIR ("H-14-15"):GOTO49 48 IF P=8 THEN CALL CHDIR ("H-16-17"):P=0:GOTO49 49 SET PAGE 0,1 50 BLOAD"00.scc",S,0-11264:GOSUB 10000 60 BLOAD"01.scc",S,0-11264:GOSUB 10000 70 BLOAD"02.scc",S,0-11264:GOSUB 10000 80 BLOAD"03.scc",S,0-11264:GOSUB 10000 90 BLOAD"04.scc",S,0-11264:GOSUB 10000 100 BLOAD"05.scc",S,0-11264:GOSUB 10000 110 BLOAD"06.scc",S,0-11264:GOSUB 10000 120 BLOAD"07.scc",S,0-11264:GOSUB 10000 130 BLOAD"08.scc",S,0-11264:GOSUB 10000 140 BLOAD"09.scc",S,0-11264:GOSUB 10000 150 BLOAD"10.scc",S,0-11264:GOSUB 10000 160 BLOAD"11.scc",S:GOSUB 10000 170 BLOAD"12.scc",S:GOSUB 10000 180 BLOAD"13.scc",S:GOSUB 10000 190 BLOAD"14.scc",S:GOSUB 10000 200 BLOAD"15.scc",S:GOSUB 10000 210 BLOAD"16.scc",S:GOSUB 10000 220 BLOAD"17.scc",S:GOSUB 10000 230 BLOAD"18.scc",S:GOSUB 10000 240 BLOAD"19.scc",S:GOSUB 10000 250 BLOAD"20.scc",S:GOSUB 10000 260 BLOAD"21.scc",S:GOSUB 10000 270 BLOAD"22.scc",S:GOSUB 10000 280 BLOAD"23.scc",S:GOSUB 10000 290 BLOAD"24.scc",S:GOSUB 10000 300 BLOAD"25.scc",S:GOSUB 10000 310 BLOAD"26.scc",S:GOSUB 10000 320 BLOAD"27.scc",S:GOSUB 10000 330 BLOAD"28.scc",S:GOSUB 10000 340 BLOAD"29.scc",S:GOSUB 10000 350 BLOAD"30.scc",S:GOSUB 10000 360 BLOAD"31.scc",S:GOSUB 10000 370 BLOAD"32.scc",S:GOSUB 10000 380 BLOAD"33.scc",S:GOSUB 10000 390 BLOAD"34.scc",S:GOSUB 10000 400 BLOAD"35.scc",S:GOSUB 10000 410 BLOAD"36.scc",S:GOSUB 10000 420 BLOAD"37.scc",S:GOSUB 10000 430 BLOAD"38.scc",S:GOSUB 10000 440 BLOAD"39.scc",S:GOSUB 10000 450 BLOAD"40.scc",S:GOSUB 10000 460 BLOAD"41.scc",S:GOSUB 10000 470 BLOAD"42.scc",S:GOSUB 10000 480 BLOAD"43.scc",S:GOSUB 10000 490 BLOAD"44.scc",S:GOSUB 10000 500 BLOAD"45.scc",S:GOSUB 10000 510 BLOAD"46.scc",S:GOSUB 10000 520 BLOAD"47.scc",S:GOSUB 10000 530 BLOAD"48.scc",S:GOSUB 10000 540 BLOAD"49.scc",S:GOSUB 10000 550 BLOAD"50.scc",S:GOSUB 10000 560 BLOAD"51.scc",S:GOSUB 10000 570 BLOAD"52.scc",S:GOSUB 10000 580 BLOAD"53.scc",S:GOSUB 10000 590 BLOAD"54.scc",S:GOSUB 10000 600 BLOAD"55.scc",S:GOSUB 10000 610 BLOAD"56.scc",S:GOSUB 10000 620 BLOAD"57.scc",S:GOSUB 10000 630 BLOAD"58.scc",S:GOSUB 10000 640 BLOAD"59.scc",S:GOSUB 10000 650 BLOAD"60.scc",S:GOSUB 10000 660 BLOAD"61.scc",S:GOSUB 10000 670 BLOAD"62.scc",S:GOSUB 10000 680 BLOAD"63.scc",S:GOSUB 10000 1340 CALL CHDIR(".."):P=P+1:GOTO40 10000 VDP(27)=(N+7)/8:VDP(28)=-NAND7:S=STICK(0):ONS+1 GOSUB 11000,12000,13000,14000,15000,16000,17000,18000,19000:RETURN 10010 ' 11000 'STATIQUE 11010 COPY(H,0)-(H+3,212),1TO(H,0),0:H=H+4AND255:N=N+4AND255:RETURN 11020 ' 12000 'HAUT 12010 Y=Y-8:RETURN 12020 ' 13000 'DIAGO HAUT DROITE 13010 Y=Y-16:VDP(27)=VDP(27)+1AND255:RETURN 13020 ' 14000 'DROITE 14010 RETURN 14020 ' 15000 'DIAGO DROITE BAS 15010 Y=Y+16:VDP(27)=VDP(27)+1AND255::RETURN 15020 ' 15030 ' 16000 'BAS 16010 Y=Y+8:RETURN 16020 ' 17000 'DIAGO BAS GAUCHE 17010 Y=Y+16:VDP(27)=VDP(27)+255AND255:RETURN 17020 ' 18000 'GAUCHE 18010 VDP(27)=VDP(27)+255AND255:RETURN 18020 ' 19000 'DIAGO HAUT GAUCHE 19010 VDP(27)=VDP(27)+255AND255:Y=Y-16:RETURN
Voila à peu près tout dans les grandes lignes Edité par igal Le 06/10/2014 à 15h29
igal
Membre non connecté
Conseiller Municipal
Voici le Scroll de Magic Sword:
http://youtu.be/DcCevMLlrMY
Voici le gabarit qui va bien
La technique consiste à prendre le BAS GAUCHE de l'image 2 pour la mettre en BAS A GAUCHE de l'image 1, l aBAS GAUCHE de l'image 3 pour la mettre en BAS A GAUCHE de l'image 2 et ainsi de suite jusqu'à la dernière image.
Sur la vidéo ci dessous vous pouvez voir une discordance entre la dernière image et la première simplement parce que la MAP originale n'était pas un multiple de 256, il y a donc un reste qui créer un "Discordance" entre la FIN et le DEBUT.
Pour y remédier, soit je modifie l'agencement des décors de la dernière page ou alors simplement rogne la map pour obtenir un multiple de 256
Le filtre ci dessus permet de créer un "Pseudo filtre" qu'il suffit d'appliquer sur l'image 2 puis sélectionner la partie BAS GAUCHE de l'image pour la coller à l'image 1.
Le filtre fait 256 X 256. l'image en SCREEN 12 étant en 256 X 212 , il faut donc "Déplacer" le Calque pour qu'il déborde sur la partie haute de l'image.
La partie haute sera comblée par les 11 Bribes allant de 0-44 à 0-1.
Afin de réduire les temps de chargement des Bribes allant de 0-44 à 0-1, j'ai modifié le générateur de sorte à ne créer des fichier ne contenant qu'un seul pixel.
Cette technique permet de garder une Lecture de 64 Bribes dont certaines sont pleines de "Vide".
Cette technique permettra de créer des décors "scrollés" du genre "Gradius 4"
Voici les générateurs modifiés:
[img]
10 'SAVE"GEN16-23.asc",A
20 'generateur de bribes d'images [11x(4x256)]+[(53x(4x256)]
30 VDP(10)=0: SCREEN 12
99 CALL CHDIR ("H-16-17")
100 BLOAD"00000016.scc",S: BSAVE"00.scc",256*0,256*0+1,S
101 BLOAD"00000016.scc",S: BSAVE"01.scc",256*4,256*4+1,S
102 BLOAD"00000016.scc",S: BSAVE"02.scc",256*8,256*8+1,S
103 BLOAD"00000016.scc",S: BSAVE"03.scc",256*12,256*12+1,S
104 BLOAD"00000016.scc",S: BSAVE"04.scc",256*16,256*16+1,S
105 BLOAD"00000016.scc",S: BSAVE"05.scc",256*20,256*20+1,S
106 BLOAD"00000016.scc",S: BSAVE"06.scc",256*24,256*24+1,S
107 BLOAD"00000016.scc",S: BSAVE"07.scc",256*28,256*28+1,S
108 BLOAD"00000016.scc",S: BSAVE"08.scc",256*32,256*32+1,S
109 BLOAD"00000016.scc",S: BSAVE"09.scc",256*36,256*36+1,S
110 BLOAD"00000016.scc",S: BSAVE"10.scc",256*40,256*40+1,S
111 BLOAD"00000017.scc",S: BSAVE"11.scc",256*0,256*4-1,S
112 BLOAD"00000017.scc",S: BSAVE"12.scc",256*4,256*8-1,S
113 BLOAD"00000017.scc",S: BSAVE"13.scc",256*8,256*12-1,S
114 BLOAD"00000017.scc",S: BSAVE"14.scc",256*12,256*16-1,S
115 BLOAD"00000017.scc",S: BSAVE"15.scc",256*16,256*20-1,S
116 BLOAD"00000017.scc",S: BSAVE"16.scc",256*20,256*24-1,S
117 BLOAD"00000017.scc",S: BSAVE"17.scc",256*24,256*28-1,S
118 BLOAD"00000017.scc",S: BSAVE"18.scc",256*28,256*32-1,S
119 BLOAD"00000017.scc",S: BSAVE"19.scc",256*32,256*36-1,S
120 BLOAD"00000017.scc",S: BSAVE"20.scc",256*36,256*40-1,S
121 BLOAD"00000017.scc",S: BSAVE"21.scc",256*40,256*44-1,S
122 BLOAD"00000017.scc",S: BSAVE"22.scc",256*44,256*48-1,S
123 BLOAD"00000017.scc",S: BSAVE"23.scc",256*48,256*52-1,S
124 BLOAD"00000017.scc",S: BSAVE"24.scc",256*52,256*56-1,S
125 BLOAD"00000017.scc",S: BSAVE"25.scc",256*56,256*60-1,S
126 BLOAD"00000017.scc",S: BSAVE"26.scc",256*60,256*64-1,S
127 BLOAD"00000017.scc",S: BSAVE"27.scc",256*64,256*68-1,S
128 BLOAD"00000017.scc",S: BSAVE"28.scc",256*68,256*72-1,S
129 BLOAD"00000017.scc",S: BSAVE"29.scc",256*72,256*76-1,S
130 BLOAD"00000017.scc",S: BSAVE"30.scc",256*76,256*80-1,S
131 BLOAD"00000017.scc",S: BSAVE"31.scc",256*80,256*84-1,S
132 BLOAD"00000017.scc",S: BSAVE"32.scc",256*84,256*88-1,S
133 BLOAD"00000017.scc",S: BSAVE"33.scc",256*88,256*92-1,S
134 BLOAD"00000017.scc",S: BSAVE"34.scc",256*92,256*96-1,S
135 BLOAD"00000017.scc",S: BSAVE"35.scc",256*96,256*100-1,S
136 BLOAD"00000017.scc",S: BSAVE"36.scc",256*100,256*104-1,S
137 BLOAD"00000017.scc",S: BSAVE"37.scc",256*104,256*108-1,S
138 BLOAD"00000017.scc",S: BSAVE"38.scc",256*108,256*112-1,S
139 BLOAD"00000017.scc",S: BSAVE"39.scc",256*112,256*116-1,S
140 BLOAD"00000017.scc",S: BSAVE"40.scc",256*116,256*120-1,S
141 BLOAD"00000017.scc",S: BSAVE"41.scc",256*120,256*124-1,S
142 BLOAD"00000017.scc",S: BSAVE"42.scc",256*124,256*128-1,S
143 BLOAD"00000017.scc",S: BSAVE"43.scc",256*128,256*132-1,S
144 BLOAD"00000017.scc",S: BSAVE"44.scc",256*132,256*136-1,S
145 BLOAD"00000017.scc",S: BSAVE"45.scc",256*136,256*140-1,S
146 BLOAD"00000017.scc",S: BSAVE"46.scc",256*140,256*144-1,S
147 BLOAD"00000017.scc",S: BSAVE"47.scc",256*144,256*148-1,S
148 BLOAD"00000017.scc",S: BSAVE"48.scc",256*148,256*152-1,S
149 BLOAD"00000017.scc",S: BSAVE"49.scc",256*152,256*156-1,S
150 BLOAD"00000017.scc",S: BSAVE"50.scc",256*156,256*160-1,S
151 BLOAD"00000017.scc",S: BSAVE"51.scc",256*160,256*164-1,S
152 BLOAD"00000017.scc",S: BSAVE"52.scc",256*164,256*168-1,S
153 BLOAD"00000017.scc",S: BSAVE"53.scc",256*168,256*172-1,S
154 BLOAD"00000017.scc",S: BSAVE"54.scc",256*172,256*176-1,S
155 BLOAD"00000017.scc",S: BSAVE"55.scc",256*176,256*180-1,S
156 BLOAD"00000017.scc",S: BSAVE"56.scc",256*180,256*184-1,S
157 BLOAD"00000017.scc",S: BSAVE"57.scc",256*184,256*188-1,S
158 BLOAD"00000017.scc",S: BSAVE"58.scc",256*188,256*192-1,S
159 BLOAD"00000017.scc",S: BSAVE"59.scc",256*192,256*196-1,S
160 BLOAD"00000017.scc",S: BSAVE"60.scc",256*196,256*200-1,S
161 BLOAD"00000017.scc",S: BSAVE"61.scc",256*200,256*204-1,S
162 BLOAD"00000017.scc",S: BSAVE"62.scc",256*204,256*208-1,S
163 BLOAD"00000017.scc",S: BSAVE"63.scc",256*208,256*212-1,S
164 kill"00000016.scc
165 kill"00000017.scc
199 CALL CHDIR (".."): CALL CHDIR ("H-18-19")
200 BLOAD"00000018.scc",S: BSAVE"00.scc",256*0,256*0+1,S
201 BLOAD"00000018.scc",S: BSAVE"01.scc",256*4,256*4+1,S
202 BLOAD"00000018.scc",S: BSAVE"02.scc",256*8,256*8+1,S
203 BLOAD"00000018.scc",S: BSAVE"03.scc",256*12,256*12+1,S
204 BLOAD"00000018.scc",S: BSAVE"04.scc",256*16,256*16+1,S
205 BLOAD"00000018.scc",S: BSAVE"05.scc",256*20,256*20+1,S
206 BLOAD"00000018.scc",S: BSAVE"06.scc",256*24,256*24+1,S
207 BLOAD"00000018.scc",S: BSAVE"07.scc",256*28,256*28+1,S
208 BLOAD"00000018.scc",S: BSAVE"08.scc",256*32,256*32+1,S
209 BLOAD"00000018.scc",S: BSAVE"09.scc",256*36,256*36+1,S
210 BLOAD"00000018.scc",S: BSAVE"10.scc",256*40,256*40+1,S
211 BLOAD"00000019.scc",S: BSAVE"11.scc",256*0,256*4-1,S
212 BLOAD"00000019.scc",S: BSAVE"12.scc",256*4,256*8-1,S
213 BLOAD"00000019.scc",S: BSAVE"13.scc",256*8,256*12-1,S
214 BLOAD"00000019.scc",S: BSAVE"14.scc",256*12,256*16-1,S
215 BLOAD"00000019.scc",S: BSAVE"15.scc",256*16,256*20-1,S
216 BLOAD"00000019.scc",S: BSAVE"16.scc",256*20,256*24-1,S
217 BLOAD"00000019.scc",S: BSAVE"17.scc",256*24,256*28-1,S
218 BLOAD"00000019.scc",S: BSAVE"18.scc",256*28,256*32-1,S
219 BLOAD"00000019.scc",S: BSAVE"19.scc",256*32,256*36-1,S
220 BLOAD"00000019.scc",S: BSAVE"20.scc",256*36,256*40-1,S
221 BLOAD"00000019.scc",S: BSAVE"21.scc",256*40,256*44-1,S
222 BLOAD"00000019.scc",S: BSAVE"22.scc",256*44,256*48-1,S
223 BLOAD"00000019.scc",S: BSAVE"23.scc",256*48,256*52-1,S
224 BLOAD"00000019.scc",S: BSAVE"24.scc",256*52,256*56-1,S
225 BLOAD"00000019.scc",S: BSAVE"25.scc",256*56,256*60-1,S
226 BLOAD"00000019.scc",S: BSAVE"26.scc",256*60,256*64-1,S
227 BLOAD"00000019.scc",S: BSAVE"27.scc",256*64,256*68-1,S
228 BLOAD"00000019.scc",S: BSAVE"28.scc",256*68,256*72-1,S
229 BLOAD"00000019.scc",S: BSAVE"29.scc",256*72,256*76-1,S
230 BLOAD"00000019.scc",S: BSAVE"30.scc",256*76,256*80-1,S
231 BLOAD"00000019.scc",S: BSAVE"31.scc",256*80,256*84-1,S
232 BLOAD"00000019.scc",S: BSAVE"32.scc",256*84,256*88-1,S
233 BLOAD"00000019.scc",S: BSAVE"33.scc",256*88,256*92-1,S
234 BLOAD"00000019.scc",S: BSAVE"34.scc",256*92,256*96-1,S
235 BLOAD"00000019.scc",S: BSAVE"35.scc",256*96,256*100-1,S
236 BLOAD"00000019.scc",S: BSAVE"36.scc",256*100,256*104-1,S
237 BLOAD"00000019.scc",S: BSAVE"37.scc",256*104,256*108-1,S
238 BLOAD"00000019.scc",S: BSAVE"38.scc",256*108,256*112-1,S
239 BLOAD"00000019.scc",S: BSAVE"39.scc",256*112,256*116-1,S
240 BLOAD"00000019.scc",S: BSAVE"40.scc",256*116,256*120-1,S
241 BLOAD"00000019.scc",S: BSAVE"41.scc",256*120,256*124-1,S
242 BLOAD"00000019.scc",S: BSAVE"42.scc",256*124,256*128-1,S
243 BLOAD"00000019.scc",S: BSAVE"43.scc",256*128,256*132-1,S
244 BLOAD"00000019.scc",S: BSAVE"44.scc",256*132,256*136-1,S
245 BLOAD"00000019.scc",S: BSAVE"45.scc",256*136,256*140-1,S
246 BLOAD"00000019.scc",S: BSAVE"46.scc",256*140,256*144-1,S
247 BLOAD"00000019.scc",S: BSAVE"47.scc",256*144,256*148-1,S
248 BLOAD"00000019.scc",S: BSAVE"48.scc",256*148,256*152-1,S
249 BLOAD"00000019.scc",S: BSAVE"49.scc",256*152,256*156-1,S
250 BLOAD"00000019.scc",S: BSAVE"50.scc",256*156,256*160-1,S
251 BLOAD"00000019.scc",S: BSAVE"51.scc",256*160,256*164-1,S
252 BLOAD"00000019.scc",S: BSAVE"52.scc",256*164,256*168-1,S
253 BLOAD"00000019.scc",S: BSAVE"53.scc",256*168,256*172-1,S
254 BLOAD"00000019.scc",S: BSAVE"54.scc",256*172,256*176-1,S
255 BLOAD"00000019.scc",S: BSAVE"55.scc",256*176,256*180-1,S
256 BLOAD"00000019.scc",S: BSAVE"56.scc",256*180,256*184-1,S
257 BLOAD"00000019.scc",S: BSAVE"57.scc",256*184,256*188-1,S
258 BLOAD"00000019.scc",S: BSAVE"58.scc",256*188,256*192-1,S
259 BLOAD"00000019.scc",S: BSAVE"59.scc",256*192,256*196-1,S
260 BLOAD"00000019.scc",S: BSAVE"60.scc",256*196,256*200-1,S
261 BLOAD"00000019.scc",S: BSAVE"61.scc",256*200,256*204-1,S
262 BLOAD"00000019.scc",S: BSAVE"62.scc",256*204,256*208-1,S
263 BLOAD"00000019.scc",S: BSAVE"63.scc",256*208,256*212-1,S
264 kill"00000018.scc
265 kill"00000019.scc
299 CALL CHDIR (".."): CALL CHDIR ("H-20-21")
300 BLOAD"00000020.scc",S: BSAVE"00.scc",256*0,256*0+1,S
301 BLOAD"00000020.scc",S: BSAVE"01.scc",256*4,256*4+1,S
302 BLOAD"00000020.scc",S: BSAVE"02.scc",256*8,256*8+1,S
303 BLOAD"00000020.scc",S: BSAVE"03.scc",256*12,256*12+1,S
304 BLOAD"00000020.scc",S: BSAVE"04.scc",256*16,256*16+1,S
305 BLOAD"00000020.scc",S: BSAVE"05.scc",256*20,256*20+1,S
306 BLOAD"00000020.scc",S: BSAVE"06.scc",256*24,256*24+1,S
307 BLOAD"00000020.scc",S: BSAVE"07.scc",256*28,256*28+1,S
308 BLOAD"00000020.scc",S: BSAVE"08.scc",256*32,256*32+1,S
309 BLOAD"00000020.scc",S: BSAVE"09.scc",256*36,256*36+1,S
310 BLOAD"00000020.scc",S: BSAVE"10.scc",256*40,256*40+1,S
311 BLOAD"00000021.scc",S: BSAVE"11.scc",256*0,256*4-1,S
312 BLOAD"00000021.scc",S: BSAVE"12.scc",256*4,256*8-1,S
313 BLOAD"00000021.scc",S: BSAVE"13.scc",256*8,256*12-1,S
314 BLOAD"00000021.scc",S: BSAVE"14.scc",256*12,256*16-1,S
315 BLOAD"00000021.scc",S: BSAVE"15.scc",256*16,256*20-1,S
316 BLOAD"00000021.scc",S: BSAVE"16.scc",256*20,256*24-1,S
317 BLOAD"00000021.scc",S: BSAVE"17.scc",256*24,256*28-1,S
318 BLOAD"00000021.scc",S: BSAVE"18.scc",256*28,256*32-1,S
319 BLOAD"00000021.scc",S: BSAVE"19.scc",256*32,256*36-1,S
320 BLOAD"00000021.scc",S: BSAVE"20.scc",256*36,256*40-1,S
321 BLOAD"00000021.scc",S: BSAVE"21.scc",256*40,256*44-1,S
322 BLOAD"00000021.scc",S: BSAVE"22.scc",256*44,256*48-1,S
323 BLOAD"00000021.scc",S: BSAVE"23.scc",256*48,256*52-1,S
324 BLOAD"00000021.scc",S: BSAVE"24.scc",256*52,256*56-1,S
325 BLOAD"00000021.scc",S: BSAVE"25.scc",256*56,256*60-1,S
326 BLOAD"00000021.scc",S: BSAVE"26.scc",256*60,256*64-1,S
327 BLOAD"00000021.scc",S: BSAVE"27.scc",256*64,256*68-1,S
328 BLOAD"00000021.scc",S: BSAVE"28.scc",256*68,256*72-1,S
329 BLOAD"00000021.scc",S: BSAVE"29.scc",256*72,256*76-1,S
330 BLOAD"00000021.scc",S: BSAVE"30.scc",256*76,256*80-1,S
331 BLOAD"00000021.scc",S: BSAVE"31.scc",256*80,256*84-1,S
332 BLOAD"00000021.scc",S: BSAVE"32.scc",256*84,256*88-1,S
333 BLOAD"00000021.scc",S: BSAVE"33.scc",256*88,256*92-1,S
334 BLOAD"00000021.scc",S: BSAVE"34.scc",256*92,256*96-1,S
335 BLOAD"00000021.scc",S: BSAVE"35.scc",256*96,256*100-1,S
336 BLOAD"00000021.scc",S: BSAVE"36.scc",256*100,256*104-1,S
337 BLOAD"00000021.scc",S: BSAVE"37.scc",256*104,256*108-1,S
338 BLOAD"00000021.scc",S: BSAVE"38.scc",256*108,256*112-1,S
339 BLOAD"00000021.scc",S: BSAVE"39.scc",256*112,256*116-1,S
340 BLOAD"00000021.scc",S: BSAVE"40.scc",256*116,256*120-1,S
341 BLOAD"00000021.scc",S: BSAVE"41.scc",256*120,256*124-1,S
342 BLOAD"00000021.scc",S: BSAVE"42.scc",256*124,256*128-1,S
343 BLOAD"00000021.scc",S: BSAVE"43.scc",256*128,256*132-1,S
344 BLOAD"00000021.scc",S: BSAVE"44.scc",256*132,256*136-1,S
345 BLOAD"00000021.scc",S: BSAVE"45.scc",256*136,256*140-1,S
346 BLOAD"00000021.scc",S: BSAVE"46.scc",256*140,256*144-1,S
347 BLOAD"00000021.scc",S: BSAVE"47.scc",256*144,256*148-1,S
348 BLOAD"00000021.scc",S: BSAVE"48.scc",256*148,256*152-1,S
349 BLOAD"00000021.scc",S: BSAVE"49.scc",256*152,256*156-1,S
350 BLOAD"00000021.scc",S: BSAVE"50.scc",256*156,256*160-1,S
351 BLOAD"00000021.scc",S: BSAVE"51.scc",256*160,256*164-1,S
352 BLOAD"00000021.scc",S: BSAVE"52.scc",256*164,256*168-1,S
353 BLOAD"00000021.scc",S: BSAVE"53.scc",256*168,256*172-1,S
354 BLOAD"00000021.scc",S: BSAVE"54.scc",256*172,256*176-1,S
355 BLOAD"00000021.scc",S: BSAVE"55.scc",256*176,256*180-1,S
356 BLOAD"00000021.scc",S: BSAVE"56.scc",256*180,256*184-1,S
357 BLOAD"00000021.scc",S: BSAVE"57.scc",256*184,256*188-1,S
358 BLOAD"00000021.scc",S: BSAVE"58.scc",256*188,256*192-1,S
359 BLOAD"00000021.scc",S: BSAVE"59.scc",256*192,256*196-1,S
360 BLOAD"00000021.scc",S: BSAVE"60.scc",256*196,256*200-1,S
361 BLOAD"00000021.scc",S: BSAVE"61.scc",256*200,256*204-1,S
362 BLOAD"00000021.scc",S: BSAVE"62.scc",256*204,256*208-1,S
363 BLOAD"00000021.scc",S: BSAVE"63.scc",256*208,256*212-1,S
364 kill"00000020.scc
365 kill"00000021.scc
399 CALL CHDIR (".."): CALL CHDIR ("H-22-23")
400 BLOAD"00000022.scc",S: BSAVE"00.scc",256*0,256*0+1,S
401 BLOAD"00000022.scc",S: BSAVE"01.scc",256*4,256*4+1,S
402 BLOAD"00000022.scc",S: BSAVE"02.scc",256*8,256*8+1,S
403 BLOAD"00000022.scc",S: BSAVE"03.scc",256*12,256*12+1,S
404 BLOAD"00000022.scc",S: BSAVE"04.scc",256*16,256*16+1,S
405 BLOAD"00000022.scc",S: BSAVE"05.scc",256*20,256*20+1,S
406 BLOAD"00000022.scc",S: BSAVE"06.scc",256*24,256*24+1,S
407 BLOAD"00000022.scc",S: BSAVE"07.scc",256*28,256*28+1,S
408 BLOAD"00000022.scc",S: BSAVE"08.scc",256*32,256*32+1,S
409 BLOAD"00000022.scc",S: BSAVE"09.scc",256*36,256*36+1,S
410 BLOAD"00000022.scc",S: BSAVE"10.scc",256*40,256*40+1,S
411 BLOAD"00000023.scc",S: BSAVE"11.scc",256*0,256*4-1,S
412 BLOAD"00000023.scc",S: BSAVE"12.scc",256*4,256*8-1,S
413 BLOAD"00000023.scc",S: BSAVE"13.scc",256*8,256*12-1,S
414 BLOAD"00000023.scc",S: BSAVE"14.scc",256*12,256*16-1,S
415 BLOAD"00000023.scc",S: BSAVE"15.scc",256*16,256*20-1,S
416 BLOAD"00000023.scc",S: BSAVE"16.scc",256*20,256*24-1,S
417 BLOAD"00000023.scc",S: BSAVE"17.scc",256*24,256*28-1,S
418 BLOAD"00000023.scc",S: BSAVE"18.scc",256*28,256*32-1,S
419 BLOAD"00000023.scc",S: BSAVE"19.scc",256*32,256*36-1,S
420 BLOAD"00000023.scc",S: BSAVE"20.scc",256*36,256*40-1,S
421 BLOAD"00000023.scc",S: BSAVE"21.scc",256*40,256*44-1,S
422 BLOAD"00000023.scc",S: BSAVE"22.scc",256*44,256*48-1,S
423 BLOAD"00000023.scc",S: BSAVE"23.scc",256*48,256*52-1,S
424 BLOAD"00000023.scc",S: BSAVE"24.scc",256*52,256*56-1,S
425 BLOAD"00000023.scc",S: BSAVE"25.scc",256*56,256*60-1,S
426 BLOAD"00000023.scc",S: BSAVE"26.scc",256*60,256*64-1,S
427 BLOAD"00000023.scc",S: BSAVE"27.scc",256*64,256*68-1,S
428 BLOAD"00000023.scc",S: BSAVE"28.scc",256*68,256*72-1,S
429 BLOAD"00000023.scc",S: BSAVE"29.scc",256*72,256*76-1,S
430 BLOAD"00000023.scc",S: BSAVE"30.scc",256*76,256*80-1,S
431 BLOAD"00000023.scc",S: BSAVE"31.scc",256*80,256*84-1,S
432 BLOAD"00000023.scc",S: BSAVE"32.scc",256*84,256*88-1,S
433 BLOAD"00000023.scc",S: BSAVE"33.scc",256*88,256*92-1,S
434 BLOAD"00000023.scc",S: BSAVE"34.scc",256*92,256*96-1,S
435 BLOAD"00000023.scc",S: BSAVE"35.scc",256*96,256*100-1,S
436 BLOAD"00000023.scc",S: BSAVE"36.scc",256*100,256*104-1,S
437 BLOAD"00000023.scc",S: BSAVE"37.scc",256*104,256*108-1,S
438 BLOAD"00000023.scc",S: BSAVE"38.scc",256*108,256*112-1,S
439 BLOAD"00000023.scc",S: BSAVE"39.scc",256*112,256*116-1,S
440 BLOAD"00000023.scc",S: BSAVE"40.scc",256*116,256*120-1,S
441 BLOAD"00000023.scc",S: BSAVE"41.scc",256*120,256*124-1,S
442 BLOAD"00000023.scc",S: BSAVE"42.scc",256*124,256*128-1,S
443 BLOAD"00000023.scc",S: BSAVE"43.scc",256*128,256*132-1,S
444 BLOAD"00000023.scc",S: BSAVE"44.scc",256*132,256*136-1,S
445 BLOAD"00000023.scc",S: BSAVE"45.scc",256*136,256*140-1,S
446 BLOAD"00000023.scc",S: BSAVE"46.scc",256*140,256*144-1,S
447 BLOAD"00000023.scc",S: BSAVE"47.scc",256*144,256*148-1,S
448 BLOAD"00000023.scc",S: BSAVE"48.scc",256*148,256*152-1,S
449 BLOAD"00000023.scc",S: BSAVE"49.scc",256*152,256*156-1,S
450 BLOAD"00000023.scc",S: BSAVE"50.scc",256*156,256*160-1,S
451 BLOAD"00000023.scc",S: BSAVE"51.scc",256*160,256*164-1,S
452 BLOAD"00000023.scc",S: BSAVE"52.scc",256*164,256*168-1,S
453 BLOAD"00000023.scc",S: BSAVE"53.scc",256*168,256*172-1,S
454 BLOAD"00000023.scc",S: BSAVE"54.scc",256*172,256*176-1,S
455 BLOAD"00000023.scc",S: BSAVE"55.scc",256*176,256*180-1,S
456 BLOAD"00000023.scc",S: BSAVE"56.scc",256*180,256*184-1,S
457 BLOAD"00000023.scc",S: BSAVE"57.scc",256*184,256*188-1,S
458 BLOAD"00000023.scc",S: BSAVE"58.scc",256*188,256*192-1,S
459 BLOAD"00000023.scc",S: BSAVE"59.scc",256*192,256*196-1,S
460 BLOAD"00000023.scc",S: BSAVE"60.scc",256*196,256*200-1,S
461 BLOAD"00000023.scc",S: BSAVE"61.scc",256*200,256*204-1,S
462 BLOAD"00000023.scc",S: BSAVE"62.scc",256*204,256*208-1,S
463 BLOAD"00000023.scc",S: BSAVE"63.scc",256*208,256*212-1,S
464 kill"00000022.scc
465 kill"00000023.scc
499 CALL CHDIR ("..")
[/img]
Voici le Player à peine modifié:
http://youtu.be/DcCevMLlrMY
Voici le gabarit qui va bien
La technique consiste à prendre le BAS GAUCHE de l'image 2 pour la mettre en BAS A GAUCHE de l'image 1, l aBAS GAUCHE de l'image 3 pour la mettre en BAS A GAUCHE de l'image 2 et ainsi de suite jusqu'à la dernière image.
Sur la vidéo ci dessous vous pouvez voir une discordance entre la dernière image et la première simplement parce que la MAP originale n'était pas un multiple de 256, il y a donc un reste qui créer un "Discordance" entre la FIN et le DEBUT.
Pour y remédier, soit je modifie l'agencement des décors de la dernière page ou alors simplement rogne la map pour obtenir un multiple de 256
Le filtre ci dessus permet de créer un "Pseudo filtre" qu'il suffit d'appliquer sur l'image 2 puis sélectionner la partie BAS GAUCHE de l'image pour la coller à l'image 1.
Le filtre fait 256 X 256. l'image en SCREEN 12 étant en 256 X 212 , il faut donc "Déplacer" le Calque pour qu'il déborde sur la partie haute de l'image.
La partie haute sera comblée par les 11 Bribes allant de 0-44 à 0-1.
Afin de réduire les temps de chargement des Bribes allant de 0-44 à 0-1, j'ai modifié le générateur de sorte à ne créer des fichier ne contenant qu'un seul pixel.
Cette technique permet de garder une Lecture de 64 Bribes dont certaines sont pleines de "Vide".
Cette technique permettra de créer des décors "scrollés" du genre "Gradius 4"
Voici les générateurs modifiés:
Code TEXT :
10 'SAVE"GEN0-7.asc",A 20 'generateur de bribes d'images [11x(4x256)]+[(53x(4x256)] 30 VDP(10)=0: SCREEN 12 31 GOTO 399 99 CALL CHDIR ("H-00-01") 100 BLOAD"00000000.scc",S: BSAVE"00.scc",256*0,256*0+1,S 101 BLOAD"00000000.scc",S: BSAVE"01.scc",256*4,256*4+1,S 102 BLOAD"00000000.scc",S: BSAVE"02.scc",256*8,256*8+1,S 103 BLOAD"00000000.scc",S: BSAVE"03.scc",256*12,256*12+1,S 104 BLOAD"00000000.scc",S: BSAVE"04.scc",256*16,256*16+1,S 105 BLOAD"00000000.scc",S: BSAVE"05.scc",256*20,256*20+1,S 106 BLOAD"00000000.scc",S: BSAVE"06.scc",256*24,256*24+1,S 107 BLOAD"00000000.scc",S: BSAVE"07.scc",256*28,256*28+1,S 108 BLOAD"00000000.scc",S: BSAVE"08.scc",256*32,256*32+1,S 109 BLOAD"00000000.scc",S: BSAVE"09.scc",256*36,256*36+1,S 110 BLOAD"00000000.scc",S: BSAVE"10.scc",256*40,256*40+1,S 111 BLOAD"00000001.scc",S: BSAVE"11.scc",256*0,256*4-1,S 112 BLOAD"00000001.scc",S: BSAVE"12.scc",256*4,256*8-1,S 113 BLOAD"00000001.scc",S: BSAVE"13.scc",256*8,256*12-1,S 114 BLOAD"00000001.scc",S: BSAVE"14.scc",256*12,256*16-1,S 115 BLOAD"00000001.scc",S: BSAVE"15.scc",256*16,256*20-1,S 116 BLOAD"00000001.scc",S: BSAVE"16.scc",256*20,256*24-1,S 117 BLOAD"00000001.scc",S: BSAVE"17.scc",256*24,256*28-1,S 118 BLOAD"00000001.scc",S: BSAVE"18.scc",256*28,256*32-1,S 119 BLOAD"00000001.scc",S: BSAVE"19.scc",256*32,256*36-1,S 120 BLOAD"00000001.scc",S: BSAVE"20.scc",256*36,256*40-1,S 121 BLOAD"00000001.scc",S: BSAVE"21.scc",256*40,256*44-1,S 122 BLOAD"00000001.scc",S: BSAVE"22.scc",256*44,256*48-1,S 123 BLOAD"00000001.scc",S: BSAVE"23.scc",256*48,256*52-1,S 124 BLOAD"00000001.scc",S: BSAVE"24.scc",256*52,256*56-1,S 125 BLOAD"00000001.scc",S: BSAVE"25.scc",256*56,256*60-1,S 126 BLOAD"00000001.scc",S: BSAVE"26.scc",256*60,256*64-1,S 127 BLOAD"00000001.scc",S: BSAVE"27.scc",256*64,256*68-1,S 128 BLOAD"00000001.scc",S: BSAVE"28.scc",256*68,256*72-1,S 129 BLOAD"00000001.scc",S: BSAVE"29.scc",256*72,256*76-1,S 130 BLOAD"00000001.scc",S: BSAVE"30.scc",256*76,256*80-1,S 131 BLOAD"00000001.scc",S: BSAVE"31.scc",256*80,256*84-1,S 132 BLOAD"00000001.scc",S: BSAVE"32.scc",256*84,256*88-1,S 133 BLOAD"00000001.scc",S: BSAVE"33.scc",256*88,256*92-1,S 134 BLOAD"00000001.scc",S: BSAVE"34.scc",256*92,256*96-1,S 135 BLOAD"00000001.scc",S: BSAVE"35.scc",256*96,256*100-1,S 136 BLOAD"00000001.scc",S: BSAVE"36.scc",256*100,256*104-1,S 137 BLOAD"00000001.scc",S: BSAVE"37.scc",256*104,256*108-1,S 138 BLOAD"00000001.scc",S: BSAVE"38.scc",256*108,256*112-1,S 139 BLOAD"00000001.scc",S: BSAVE"39.scc",256*112,256*116-1,S 140 BLOAD"00000001.scc",S: BSAVE"40.scc",256*116,256*120-1,S 141 BLOAD"00000001.scc",S: BSAVE"41.scc",256*120,256*124-1,S 142 BLOAD"00000001.scc",S: BSAVE"42.scc",256*124,256*128-1,S 143 BLOAD"00000001.scc",S: BSAVE"43.scc",256*128,256*132-1,S 144 BLOAD"00000001.scc",S: BSAVE"44.scc",256*132,256*136-1,S 145 BLOAD"00000001.scc",S: BSAVE"45.scc",256*136,256*140-1,S 146 BLOAD"00000001.scc",S: BSAVE"46.scc",256*140,256*144-1,S 147 BLOAD"00000001.scc",S: BSAVE"47.scc",256*144,256*148-1,S 148 BLOAD"00000001.scc",S: BSAVE"48.scc",256*148,256*152-1,S 149 BLOAD"00000001.scc",S: BSAVE"49.scc",256*152,256*156-1,S 150 BLOAD"00000001.scc",S: BSAVE"50.scc",256*156,256*160-1,S 151 BLOAD"00000001.scc",S: BSAVE"51.scc",256*160,256*164-1,S 152 BLOAD"00000001.scc",S: BSAVE"52.scc",256*164,256*168-1,S 153 BLOAD"00000001.scc",S: BSAVE"53.scc",256*168,256*172-1,S 154 BLOAD"00000001.scc",S: BSAVE"54.scc",256*172,256*176-1,S 155 BLOAD"00000001.scc",S: BSAVE"55.scc",256*176,256*180-1,S 156 BLOAD"00000001.scc",S: BSAVE"56.scc",256*180,256*184-1,S 157 BLOAD"00000001.scc",S: BSAVE"57.scc",256*184,256*188-1,S 158 BLOAD"00000001.scc",S: BSAVE"58.scc",256*188,256*192-1,S 159 BLOAD"00000001.scc",S: BSAVE"59.scc",256*192,256*196-1,S 160 BLOAD"00000001.scc",S: BSAVE"60.scc",256*196,256*200-1,S 161 BLOAD"00000001.scc",S: BSAVE"61.scc",256*200,256*204-1,S 162 BLOAD"00000001.scc",S: BSAVE"62.scc",256*204,256*208-1,S 163 BLOAD"00000001.scc",S: BSAVE"63.scc",256*208,256*212-1,S 164 kill"00000000.scc 165 kill"00000001.scc 199 CALL CHDIR (".."): CALL CHDIR ("H-02-03") 200 BLOAD"00000002.scc",S: BSAVE"00.scc",256*0,256*0+1,S 201 BLOAD"00000002.scc",S: BSAVE"01.scc",256*4,256*4+1,S 202 BLOAD"00000002.scc",S: BSAVE"02.scc",256*8,256*8+1,S 203 BLOAD"00000002.scc",S: BSAVE"03.scc",256*12,256*12+1,S 204 BLOAD"00000002.scc",S: BSAVE"04.scc",256*16,256*16+1,S 205 BLOAD"00000002.scc",S: BSAVE"05.scc",256*20,256*20+1,S 206 BLOAD"00000002.scc",S: BSAVE"06.scc",256*24,256*24+1,S 207 BLOAD"00000002.scc",S: BSAVE"07.scc",256*28,256*28+1,S 208 BLOAD"00000002.scc",S: BSAVE"08.scc",256*32,256*32+1,S 209 BLOAD"00000002.scc",S: BSAVE"09.scc",256*36,256*36+1,S 210 BLOAD"00000002.scc",S: BSAVE"10.scc",256*40,256*40+1,S 211 BLOAD"00000003.scc",S: BSAVE"11.scc",256*0,256*4-1,S 212 BLOAD"00000003.scc",S: BSAVE"12.scc",256*4,256*8-1,S 213 BLOAD"00000003.scc",S: BSAVE"13.scc",256*8,256*12-1,S 214 BLOAD"00000003.scc",S: BSAVE"14.scc",256*12,256*16-1,S 215 BLOAD"00000003.scc",S: BSAVE"15.scc",256*16,256*20-1,S 216 BLOAD"00000003.scc",S: BSAVE"16.scc",256*20,256*24-1,S 217 BLOAD"00000003.scc",S: BSAVE"17.scc",256*24,256*28-1,S 218 BLOAD"00000003.scc",S: BSAVE"18.scc",256*28,256*32-1,S 219 BLOAD"00000003.scc",S: BSAVE"19.scc",256*32,256*36-1,S 220 BLOAD"00000003.scc",S: BSAVE"20.scc",256*36,256*40-1,S 221 BLOAD"00000003.scc",S: BSAVE"21.scc",256*40,256*44-1,S 222 BLOAD"00000003.scc",S: BSAVE"22.scc",256*44,256*48-1,S 223 BLOAD"00000003.scc",S: BSAVE"23.scc",256*48,256*52-1,S 224 BLOAD"00000003.scc",S: BSAVE"24.scc",256*52,256*56-1,S 225 BLOAD"00000003.scc",S: BSAVE"25.scc",256*56,256*60-1,S 226 BLOAD"00000003.scc",S: BSAVE"26.scc",256*60,256*64-1,S 227 BLOAD"00000003.scc",S: BSAVE"27.scc",256*64,256*68-1,S 228 BLOAD"00000003.scc",S: BSAVE"28.scc",256*68,256*72-1,S 229 BLOAD"00000003.scc",S: BSAVE"29.scc",256*72,256*76-1,S 230 BLOAD"00000003.scc",S: BSAVE"30.scc",256*76,256*80-1,S 231 BLOAD"00000003.scc",S: BSAVE"31.scc",256*80,256*84-1,S 232 BLOAD"00000003.scc",S: BSAVE"32.scc",256*84,256*88-1,S 233 BLOAD"00000003.scc",S: BSAVE"33.scc",256*88,256*92-1,S 234 BLOAD"00000003.scc",S: BSAVE"34.scc",256*92,256*96-1,S 235 BLOAD"00000003.scc",S: BSAVE"35.scc",256*96,256*100-1,S 236 BLOAD"00000003.scc",S: BSAVE"36.scc",256*100,256*104-1,S 237 BLOAD"00000003.scc",S: BSAVE"37.scc",256*104,256*108-1,S 238 BLOAD"00000003.scc",S: BSAVE"38.scc",256*108,256*112-1,S 239 BLOAD"00000003.scc",S: BSAVE"39.scc",256*112,256*116-1,S 240 BLOAD"00000003.scc",S: BSAVE"40.scc",256*116,256*120-1,S 241 BLOAD"00000003.scc",S: BSAVE"41.scc",256*120,256*124-1,S 242 BLOAD"00000003.scc",S: BSAVE"42.scc",256*124,256*128-1,S 243 BLOAD"00000003.scc",S: BSAVE"43.scc",256*128,256*132-1,S 244 BLOAD"00000003.scc",S: BSAVE"44.scc",256*132,256*136-1,S 245 BLOAD"00000003.scc",S: BSAVE"45.scc",256*136,256*140-1,S 246 BLOAD"00000003.scc",S: BSAVE"46.scc",256*140,256*144-1,S 247 BLOAD"00000003.scc",S: BSAVE"47.scc",256*144,256*148-1,S 248 BLOAD"00000003.scc",S: BSAVE"48.scc",256*148,256*152-1,S 249 BLOAD"00000003.scc",S: BSAVE"49.scc",256*152,256*156-1,S 250 BLOAD"00000003.scc",S: BSAVE"50.scc",256*156,256*160-1,S 251 BLOAD"00000003.scc",S: BSAVE"51.scc",256*160,256*164-1,S 252 BLOAD"00000003.scc",S: BSAVE"52.scc",256*164,256*168-1,S 253 BLOAD"00000003.scc",S: BSAVE"53.scc",256*168,256*172-1,S 254 BLOAD"00000003.scc",S: BSAVE"54.scc",256*172,256*176-1,S 255 BLOAD"00000003.scc",S: BSAVE"55.scc",256*176,256*180-1,S 256 BLOAD"00000003.scc",S: BSAVE"56.scc",256*180,256*184-1,S 257 BLOAD"00000003.scc",S: BSAVE"57.scc",256*184,256*188-1,S 258 BLOAD"00000003.scc",S: BSAVE"58.scc",256*188,256*192-1,S 259 BLOAD"00000003.scc",S: BSAVE"59.scc",256*192,256*196-1,S 260 BLOAD"00000003.scc",S: BSAVE"60.scc",256*196,256*200-1,S 261 BLOAD"00000003.scc",S: BSAVE"61.scc",256*200,256*204-1,S 262 BLOAD"00000003.scc",S: BSAVE"62.scc",256*204,256*208-1,S 263 BLOAD"00000003.scc",S: BSAVE"63.scc",256*208,256*212-1,S 264 kill"00000002.scc 265 kill"00000003.scc 299 CALL CHDIR (".."): CALL CHDIR ("H-04-05") 300 BLOAD"00000004.scc",S: BSAVE"00.scc",256*0,256*0+1,S 301 BLOAD"00000004.scc",S: BSAVE"01.scc",256*4,256*4+1,S 302 BLOAD"00000004.scc",S: BSAVE"02.scc",256*8,256*8+1,S 303 BLOAD"00000004.scc",S: BSAVE"03.scc",256*12,256*12+1,S 304 BLOAD"00000004.scc",S: BSAVE"04.scc",256*16,256*16+1,S 305 BLOAD"00000004.scc",S: BSAVE"05.scc",256*20,256*20+1,S 306 BLOAD"00000004.scc",S: BSAVE"06.scc",256*24,256*24+1,S 307 BLOAD"00000004.scc",S: BSAVE"07.scc",256*28,256*28+1,S 308 BLOAD"00000004.scc",S: BSAVE"08.scc",256*32,256*32+1,S 309 BLOAD"00000004.scc",S: BSAVE"09.scc",256*36,256*36+1,S 310 BLOAD"00000004.scc",S: BSAVE"10.scc",256*40,256*40+1,S 311 BLOAD"00000005.scc",S: BSAVE"11.scc",256*0,256*4-1,S 312 BLOAD"00000005.scc",S: BSAVE"12.scc",256*4,256*8-1,S 313 BLOAD"00000005.scc",S: BSAVE"13.scc",256*8,256*12-1,S 314 BLOAD"00000005.scc",S: BSAVE"14.scc",256*12,256*16-1,S 315 BLOAD"00000005.scc",S: BSAVE"15.scc",256*16,256*20-1,S 316 BLOAD"00000005.scc",S: BSAVE"16.scc",256*20,256*24-1,S 317 BLOAD"00000005.scc",S: BSAVE"17.scc",256*24,256*28-1,S 318 BLOAD"00000005.scc",S: BSAVE"18.scc",256*28,256*32-1,S 319 BLOAD"00000005.scc",S: BSAVE"19.scc",256*32,256*36-1,S 320 BLOAD"00000005.scc",S: BSAVE"20.scc",256*36,256*40-1,S 321 BLOAD"00000005.scc",S: BSAVE"21.scc",256*40,256*44-1,S 322 BLOAD"00000005.scc",S: BSAVE"22.scc",256*44,256*48-1,S 323 BLOAD"00000005.scc",S: BSAVE"23.scc",256*48,256*52-1,S 324 BLOAD"00000005.scc",S: BSAVE"24.scc",256*52,256*56-1,S 325 BLOAD"00000005.scc",S: BSAVE"25.scc",256*56,256*60-1,S 326 BLOAD"00000005.scc",S: BSAVE"26.scc",256*60,256*64-1,S 327 BLOAD"00000005.scc",S: BSAVE"27.scc",256*64,256*68-1,S 328 BLOAD"00000005.scc",S: BSAVE"28.scc",256*68,256*72-1,S 329 BLOAD"00000005.scc",S: BSAVE"29.scc",256*72,256*76-1,S 330 BLOAD"00000005.scc",S: BSAVE"30.scc",256*76,256*80-1,S 331 BLOAD"00000005.scc",S: BSAVE"31.scc",256*80,256*84-1,S 332 BLOAD"00000005.scc",S: BSAVE"32.scc",256*84,256*88-1,S 333 BLOAD"00000005.scc",S: BSAVE"33.scc",256*88,256*92-1,S 334 BLOAD"00000005.scc",S: BSAVE"34.scc",256*92,256*96-1,S 335 BLOAD"00000005.scc",S: BSAVE"35.scc",256*96,256*100-1,S 336 BLOAD"00000005.scc",S: BSAVE"36.scc",256*100,256*104-1,S 337 BLOAD"00000005.scc",S: BSAVE"37.scc",256*104,256*108-1,S 338 BLOAD"00000005.scc",S: BSAVE"38.scc",256*108,256*112-1,S 339 BLOAD"00000005.scc",S: BSAVE"39.scc",256*112,256*116-1,S 340 BLOAD"00000005.scc",S: BSAVE"40.scc",256*116,256*120-1,S 341 BLOAD"00000005.scc",S: BSAVE"41.scc",256*120,256*124-1,S 342 BLOAD"00000005.scc",S: BSAVE"42.scc",256*124,256*128-1,S 343 BLOAD"00000005.scc",S: BSAVE"43.scc",256*128,256*132-1,S 344 BLOAD"00000005.scc",S: BSAVE"44.scc",256*132,256*136-1,S 345 BLOAD"00000005.scc",S: BSAVE"45.scc",256*136,256*140-1,S 346 BLOAD"00000005.scc",S: BSAVE"46.scc",256*140,256*144-1,S 347 BLOAD"00000005.scc",S: BSAVE"47.scc",256*144,256*148-1,S 348 BLOAD"00000005.scc",S: BSAVE"48.scc",256*148,256*152-1,S 349 BLOAD"00000005.scc",S: BSAVE"49.scc",256*152,256*156-1,S 350 BLOAD"00000005.scc",S: BSAVE"50.scc",256*156,256*160-1,S 351 BLOAD"00000005.scc",S: BSAVE"51.scc",256*160,256*164-1,S 352 BLOAD"00000005.scc",S: BSAVE"52.scc",256*164,256*168-1,S 353 BLOAD"00000005.scc",S: BSAVE"53.scc",256*168,256*172-1,S 354 BLOAD"00000005.scc",S: BSAVE"54.scc",256*172,256*176-1,S 355 BLOAD"00000005.scc",S: BSAVE"55.scc",256*176,256*180-1,S 356 BLOAD"00000005.scc",S: BSAVE"56.scc",256*180,256*184-1,S 357 BLOAD"00000005.scc",S: BSAVE"57.scc",256*184,256*188-1,S 358 BLOAD"00000005.scc",S: BSAVE"58.scc",256*188,256*192-1,S 359 BLOAD"00000005.scc",S: BSAVE"59.scc",256*192,256*196-1,S 360 BLOAD"00000005.scc",S: BSAVE"60.scc",256*196,256*200-1,S 361 BLOAD"00000005.scc",S: BSAVE"61.scc",256*200,256*204-1,S 362 BLOAD"00000005.scc",S: BSAVE"62.scc",256*204,256*208-1,S 363 BLOAD"00000005.scc",S: BSAVE"63.scc",256*208,256*212-1,S 364 kill"00000004.scc 365 kill"00000005.scc 399 CALL CHDIR ("H-06-07") 400 BLOAD"00000006.scc",S: BSAVE"00.scc",256*0,256*0+1,S 401 BLOAD"00000006.scc",S: BSAVE"01.scc",256*4,256*4+1,S 402 BLOAD"00000006.scc",S: BSAVE"02.scc",256*8,256*8+1,S 403 BLOAD"00000006.scc",S: BSAVE"03.scc",256*12,256*12+1,S 404 BLOAD"00000006.scc",S: BSAVE"04.scc",256*16,256*16+1,S 405 BLOAD"00000006.scc",S: BSAVE"05.scc",256*20,256*20+1,S 406 BLOAD"00000006.scc",S: BSAVE"06.scc",256*24,256*24+1,S 407 BLOAD"00000006.scc",S: BSAVE"07.scc",256*28,256*28+1,S 408 BLOAD"00000006.scc",S: BSAVE"08.scc",256*32,256*32+1,S 409 BLOAD"00000006.scc",S: BSAVE"09.scc",256*36,256*36+1,S 410 BLOAD"00000006.scc",S: BSAVE"10.scc",256*40,256*40+1,S 411 BLOAD"00000007.scc",S: BSAVE"11.scc",256*0,256*4-1,S 412 BLOAD"00000007.scc",S: BSAVE"12.scc",256*4,256*8-1,S 413 BLOAD"00000007.scc",S: BSAVE"13.scc",256*8,256*12-1,S 414 BLOAD"00000007.scc",S: BSAVE"14.scc",256*12,256*16-1,S 415 BLOAD"00000007.scc",S: BSAVE"15.scc",256*16,256*20-1,S 416 BLOAD"00000007.scc",S: BSAVE"16.scc",256*20,256*24-1,S 417 BLOAD"00000007.scc",S: BSAVE"17.scc",256*24,256*28-1,S 418 BLOAD"00000007.scc",S: BSAVE"18.scc",256*28,256*32-1,S 419 BLOAD"00000007.scc",S: BSAVE"19.scc",256*32,256*36-1,S 420 BLOAD"00000007.scc",S: BSAVE"20.scc",256*36,256*40-1,S 421 BLOAD"00000007.scc",S: BSAVE"21.scc",256*40,256*44-1,S 422 BLOAD"00000007.scc",S: BSAVE"22.scc",256*44,256*48-1,S 423 BLOAD"00000007.scc",S: BSAVE"23.scc",256*48,256*52-1,S 424 BLOAD"00000007.scc",S: BSAVE"24.scc",256*52,256*56-1,S 425 BLOAD"00000007.scc",S: BSAVE"25.scc",256*56,256*60-1,S 426 BLOAD"00000007.scc",S: BSAVE"26.scc",256*60,256*64-1,S 427 BLOAD"00000007.scc",S: BSAVE"27.scc",256*64,256*68-1,S 428 BLOAD"00000007.scc",S: BSAVE"28.scc",256*68,256*72-1,S 429 BLOAD"00000007.scc",S: BSAVE"29.scc",256*72,256*76-1,S 430 BLOAD"00000007.scc",S: BSAVE"30.scc",256*76,256*80-1,S 431 BLOAD"00000007.scc",S: BSAVE"31.scc",256*80,256*84-1,S 432 BLOAD"00000007.scc",S: BSAVE"32.scc",256*84,256*88-1,S 433 BLOAD"00000007.scc",S: BSAVE"33.scc",256*88,256*92-1,S 434 BLOAD"00000007.scc",S: BSAVE"34.scc",256*92,256*96-1,S 435 BLOAD"00000007.scc",S: BSAVE"35.scc",256*96,256*100-1,S 436 BLOAD"00000007.scc",S: BSAVE"36.scc",256*100,256*104-1,S 437 BLOAD"00000007.scc",S: BSAVE"37.scc",256*104,256*108-1,S 438 BLOAD"00000007.scc",S: BSAVE"38.scc",256*108,256*112-1,S 439 BLOAD"00000007.scc",S: BSAVE"39.scc",256*112,256*116-1,S 440 BLOAD"00000007.scc",S: BSAVE"40.scc",256*116,256*120-1,S 441 BLOAD"00000007.scc",S: BSAVE"41.scc",256*120,256*124-1,S 442 BLOAD"00000007.scc",S: BSAVE"42.scc",256*124,256*128-1,S 443 BLOAD"00000007.scc",S: BSAVE"43.scc",256*128,256*132-1,S 444 BLOAD"00000007.scc",S: BSAVE"44.scc",256*132,256*136-1,S 445 BLOAD"00000007.scc",S: BSAVE"45.scc",256*136,256*140-1,S 446 BLOAD"00000007.scc",S: BSAVE"46.scc",256*140,256*144-1,S 447 BLOAD"00000007.scc",S: BSAVE"47.scc",256*144,256*148-1,S 448 BLOAD"00000007.scc",S: BSAVE"48.scc",256*148,256*152-1,S 449 BLOAD"00000007.scc",S: BSAVE"49.scc",256*152,256*156-1,S 450 BLOAD"00000007.scc",S: BSAVE"50.scc",256*156,256*160-1,S 451 BLOAD"00000007.scc",S: BSAVE"51.scc",256*160,256*164-1,S 452 BLOAD"00000007.scc",S: BSAVE"52.scc",256*164,256*168-1,S 453 BLOAD"00000007.scc",S: BSAVE"53.scc",256*168,256*172-1,S 454 BLOAD"00000007.scc",S: BSAVE"54.scc",256*172,256*176-1,S 455 BLOAD"00000007.scc",S: BSAVE"55.scc",256*176,256*180-1,S 456 BLOAD"00000007.scc",S: BSAVE"56.scc",256*180,256*184-1,S 457 BLOAD"00000007.scc",S: BSAVE"57.scc",256*184,256*188-1,S 458 BLOAD"00000007.scc",S: BSAVE"58.scc",256*188,256*192-1,S 459 BLOAD"00000007.scc",S: BSAVE"59.scc",256*192,256*196-1,S 460 BLOAD"00000007.scc",S: BSAVE"60.scc",256*196,256*200-1,S 461 BLOAD"00000007.scc",S: BSAVE"61.scc",256*200,256*204-1,S 462 BLOAD"00000007.scc",S: BSAVE"62.scc",256*204,256*208-1,S 463 BLOAD"00000007.scc",S: BSAVE"63.scc",256*208,256*212-1,S 464 kill"00000006.scc 465 kill"00000007.scc 499 CALL CHDIR ("..")
Code TEXT :
10 'SAVE"GEN8-15.asc",A 20 'generateur de bribes d'images [11x(4x256)]+[(53x(4x256)] 30 VDP(10)=0: SCREEN 12 99 CALL CHDIR ("H-08-09") 100 BLOAD"00000008.scc",S: BSAVE"00.scc",256*0,256*0+1,S 101 BLOAD"00000008.scc",S: BSAVE"01.scc",256*4,256*4+1,S 102 BLOAD"00000008.scc",S: BSAVE"02.scc",256*8,256*8+1,S 103 BLOAD"00000008.scc",S: BSAVE"03.scc",256*12,256*12+1,S 104 BLOAD"00000008.scc",S: BSAVE"04.scc",256*16,256*16+1,S 105 BLOAD"00000008.scc",S: BSAVE"05.scc",256*20,256*20+1,S 106 BLOAD"00000008.scc",S: BSAVE"06.scc",256*24,256*24+1,S 107 BLOAD"00000008.scc",S: BSAVE"07.scc",256*28,256*28+1,S 108 BLOAD"00000008.scc",S: BSAVE"08.scc",256*32,256*32+1,S 109 BLOAD"00000008.scc",S: BSAVE"09.scc",256*36,256*36+1,S 110 BLOAD"00000008.scc",S: BSAVE"10.scc",256*40,256*40+1,S 111 BLOAD"00000009.scc",S: BSAVE"11.scc",256*0,256*4-1,S 112 BLOAD"00000009.scc",S: BSAVE"12.scc",256*4,256*8-1,S 113 BLOAD"00000009.scc",S: BSAVE"13.scc",256*8,256*12-1,S 114 BLOAD"00000009.scc",S: BSAVE"14.scc",256*12,256*16-1,S 115 BLOAD"00000009.scc",S: BSAVE"15.scc",256*16,256*20-1,S 116 BLOAD"00000009.scc",S: BSAVE"16.scc",256*20,256*24-1,S 117 BLOAD"00000009.scc",S: BSAVE"17.scc",256*24,256*28-1,S 118 BLOAD"00000009.scc",S: BSAVE"18.scc",256*28,256*32-1,S 119 BLOAD"00000009.scc",S: BSAVE"19.scc",256*32,256*36-1,S 120 BLOAD"00000009.scc",S: BSAVE"20.scc",256*36,256*40-1,S 121 BLOAD"00000009.scc",S: BSAVE"21.scc",256*40,256*44-1,S 122 BLOAD"00000009.scc",S: BSAVE"22.scc",256*44,256*48-1,S 123 BLOAD"00000009.scc",S: BSAVE"23.scc",256*48,256*52-1,S 124 BLOAD"00000009.scc",S: BSAVE"24.scc",256*52,256*56-1,S 125 BLOAD"00000009.scc",S: BSAVE"25.scc",256*56,256*60-1,S 126 BLOAD"00000009.scc",S: BSAVE"26.scc",256*60,256*64-1,S 127 BLOAD"00000009.scc",S: BSAVE"27.scc",256*64,256*68-1,S 128 BLOAD"00000009.scc",S: BSAVE"28.scc",256*68,256*72-1,S 129 BLOAD"00000009.scc",S: BSAVE"29.scc",256*72,256*76-1,S 130 BLOAD"00000009.scc",S: BSAVE"30.scc",256*76,256*80-1,S 131 BLOAD"00000009.scc",S: BSAVE"31.scc",256*80,256*84-1,S 132 BLOAD"00000009.scc",S: BSAVE"32.scc",256*84,256*88-1,S 133 BLOAD"00000009.scc",S: BSAVE"33.scc",256*88,256*92-1,S 134 BLOAD"00000009.scc",S: BSAVE"34.scc",256*92,256*96-1,S 135 BLOAD"00000009.scc",S: BSAVE"35.scc",256*96,256*100-1,S 136 BLOAD"00000009.scc",S: BSAVE"36.scc",256*100,256*104-1,S 137 BLOAD"00000009.scc",S: BSAVE"37.scc",256*104,256*108-1,S 138 BLOAD"00000009.scc",S: BSAVE"38.scc",256*108,256*112-1,S 139 BLOAD"00000009.scc",S: BSAVE"39.scc",256*112,256*116-1,S 140 BLOAD"00000009.scc",S: BSAVE"40.scc",256*116,256*120-1,S 141 BLOAD"00000009.scc",S: BSAVE"41.scc",256*120,256*124-1,S 142 BLOAD"00000009.scc",S: BSAVE"42.scc",256*124,256*128-1,S 143 BLOAD"00000009.scc",S: BSAVE"43.scc",256*128,256*132-1,S 144 BLOAD"00000009.scc",S: BSAVE"44.scc",256*132,256*136-1,S 145 BLOAD"00000009.scc",S: BSAVE"45.scc",256*136,256*140-1,S 146 BLOAD"00000009.scc",S: BSAVE"46.scc",256*140,256*144-1,S 147 BLOAD"00000009.scc",S: BSAVE"47.scc",256*144,256*148-1,S 148 BLOAD"00000009.scc",S: BSAVE"48.scc",256*148,256*152-1,S 149 BLOAD"00000009.scc",S: BSAVE"49.scc",256*152,256*156-1,S 150 BLOAD"00000009.scc",S: BSAVE"50.scc",256*156,256*160-1,S 151 BLOAD"00000009.scc",S: BSAVE"51.scc",256*160,256*164-1,S 152 BLOAD"00000009.scc",S: BSAVE"52.scc",256*164,256*168-1,S 153 BLOAD"00000009.scc",S: BSAVE"53.scc",256*168,256*172-1,S 154 BLOAD"00000009.scc",S: BSAVE"54.scc",256*172,256*176-1,S 155 BLOAD"00000009.scc",S: BSAVE"55.scc",256*176,256*180-1,S 156 BLOAD"00000009.scc",S: BSAVE"56.scc",256*180,256*184-1,S 157 BLOAD"00000009.scc",S: BSAVE"57.scc",256*184,256*188-1,S 158 BLOAD"00000009.scc",S: BSAVE"58.scc",256*188,256*192-1,S 159 BLOAD"00000009.scc",S: BSAVE"59.scc",256*192,256*196-1,S 160 BLOAD"00000009.scc",S: BSAVE"60.scc",256*196,256*200-1,S 161 BLOAD"00000009.scc",S: BSAVE"61.scc",256*200,256*204-1,S 162 BLOAD"00000009.scc",S: BSAVE"62.scc",256*204,256*208-1,S 163 BLOAD"00000009.scc",S: BSAVE"63.scc",256*208,256*212-1,S 164 kill"00000008.scc 165 kill"00000009.scc 199 CALL CHDIR (".."): CALL CHDIR ("H-10-11") 200 BLOAD"00000010.scc",S: BSAVE"00.scc",256*0,256*0+1,S 201 BLOAD"00000010.scc",S: BSAVE"01.scc",256*4,256*4+1,S 202 BLOAD"00000010.scc",S: BSAVE"02.scc",256*8,256*8+1,S 203 BLOAD"00000010.scc",S: BSAVE"03.scc",256*12,256*12+1,S 204 BLOAD"00000010.scc",S: BSAVE"04.scc",256*16,256*16+1,S 205 BLOAD"00000010.scc",S: BSAVE"05.scc",256*20,256*20+1,S 206 BLOAD"00000010.scc",S: BSAVE"06.scc",256*24,256*24+1,S 207 BLOAD"00000010.scc",S: BSAVE"07.scc",256*28,256*28+1,S 208 BLOAD"00000010.scc",S: BSAVE"08.scc",256*32,256*32+1,S 209 BLOAD"00000010.scc",S: BSAVE"09.scc",256*36,256*36+1,S 210 BLOAD"00000010.scc",S: BSAVE"10.scc",256*40,256*40+1,S 211 BLOAD"00000011.scc",S: BSAVE"11.scc",256*0,256*4-1,S 212 BLOAD"00000011.scc",S: BSAVE"12.scc",256*4,256*8-1,S 213 BLOAD"00000011.scc",S: BSAVE"13.scc",256*8,256*12-1,S 214 BLOAD"00000011.scc",S: BSAVE"14.scc",256*12,256*16-1,S 215 BLOAD"00000011.scc",S: BSAVE"15.scc",256*16,256*20-1,S 216 BLOAD"00000011.scc",S: BSAVE"16.scc",256*20,256*24-1,S 217 BLOAD"00000011.scc",S: BSAVE"17.scc",256*24,256*28-1,S 218 BLOAD"00000011.scc",S: BSAVE"18.scc",256*28,256*32-1,S 219 BLOAD"00000011.scc",S: BSAVE"19.scc",256*32,256*36-1,S 220 BLOAD"00000011.scc",S: BSAVE"20.scc",256*36,256*40-1,S 221 BLOAD"00000011.scc",S: BSAVE"21.scc",256*40,256*44-1,S 222 BLOAD"00000011.scc",S: BSAVE"22.scc",256*44,256*48-1,S 223 BLOAD"00000011.scc",S: BSAVE"23.scc",256*48,256*52-1,S 224 BLOAD"00000011.scc",S: BSAVE"24.scc",256*52,256*56-1,S 225 BLOAD"00000011.scc",S: BSAVE"25.scc",256*56,256*60-1,S 226 BLOAD"00000011.scc",S: BSAVE"26.scc",256*60,256*64-1,S 227 BLOAD"00000011.scc",S: BSAVE"27.scc",256*64,256*68-1,S 228 BLOAD"00000011.scc",S: BSAVE"28.scc",256*68,256*72-1,S 229 BLOAD"00000011.scc",S: BSAVE"29.scc",256*72,256*76-1,S 230 BLOAD"00000011.scc",S: BSAVE"30.scc",256*76,256*80-1,S 231 BLOAD"00000011.scc",S: BSAVE"31.scc",256*80,256*84-1,S 232 BLOAD"00000011.scc",S: BSAVE"32.scc",256*84,256*88-1,S 233 BLOAD"00000011.scc",S: BSAVE"33.scc",256*88,256*92-1,S 234 BLOAD"00000011.scc",S: BSAVE"34.scc",256*92,256*96-1,S 235 BLOAD"00000011.scc",S: BSAVE"35.scc",256*96,256*100-1,S 236 BLOAD"00000011.scc",S: BSAVE"36.scc",256*100,256*104-1,S 237 BLOAD"00000011.scc",S: BSAVE"37.scc",256*104,256*108-1,S 238 BLOAD"00000011.scc",S: BSAVE"38.scc",256*108,256*112-1,S 239 BLOAD"00000011.scc",S: BSAVE"39.scc",256*112,256*116-1,S 240 BLOAD"00000011.scc",S: BSAVE"40.scc",256*116,256*120-1,S 241 BLOAD"00000011.scc",S: BSAVE"41.scc",256*120,256*124-1,S 242 BLOAD"00000011.scc",S: BSAVE"42.scc",256*124,256*128-1,S 243 BLOAD"00000011.scc",S: BSAVE"43.scc",256*128,256*132-1,S 244 BLOAD"00000011.scc",S: BSAVE"44.scc",256*132,256*136-1,S 245 BLOAD"00000011.scc",S: BSAVE"45.scc",256*136,256*140-1,S 246 BLOAD"00000011.scc",S: BSAVE"46.scc",256*140,256*144-1,S 247 BLOAD"00000011.scc",S: BSAVE"47.scc",256*144,256*148-1,S 248 BLOAD"00000011.scc",S: BSAVE"48.scc",256*148,256*152-1,S 249 BLOAD"00000011.scc",S: BSAVE"49.scc",256*152,256*156-1,S 250 BLOAD"00000011.scc",S: BSAVE"50.scc",256*156,256*160-1,S 251 BLOAD"00000011.scc",S: BSAVE"51.scc",256*160,256*164-1,S 252 BLOAD"00000011.scc",S: BSAVE"52.scc",256*164,256*168-1,S 253 BLOAD"00000011.scc",S: BSAVE"53.scc",256*168,256*172-1,S 254 BLOAD"00000011.scc",S: BSAVE"54.scc",256*172,256*176-1,S 255 BLOAD"00000011.scc",S: BSAVE"55.scc",256*176,256*180-1,S 256 BLOAD"00000011.scc",S: BSAVE"56.scc",256*180,256*184-1,S 257 BLOAD"00000011.scc",S: BSAVE"57.scc",256*184,256*188-1,S 258 BLOAD"00000011.scc",S: BSAVE"58.scc",256*188,256*192-1,S 259 BLOAD"00000011.scc",S: BSAVE"59.scc",256*192,256*196-1,S 260 BLOAD"00000011.scc",S: BSAVE"60.scc",256*196,256*200-1,S 261 BLOAD"00000011.scc",S: BSAVE"61.scc",256*200,256*204-1,S 262 BLOAD"00000011.scc",S: BSAVE"62.scc",256*204,256*208-1,S 263 BLOAD"00000011.scc",S: BSAVE"63.scc",256*208,256*212-1,S 264 kill"00000010.scc 265 kill"00000011.scc 266 goto 499 299 CALL CHDIR (".."): CALL CHDIR ("H-12-13") 300 BLOAD"00000012.scc",S: BSAVE"00.scc",256*0,256*0+1,S 301 BLOAD"00000012.scc",S: BSAVE"01.scc",256*4,256*4+1,S 302 BLOAD"00000012.scc",S: BSAVE"02.scc",256*8,256*8+1,S 303 BLOAD"00000012.scc",S: BSAVE"03.scc",256*12,256*12+1,S 304 BLOAD"00000012.scc",S: BSAVE"04.scc",256*16,256*16+1,S 305 BLOAD"00000012.scc",S: BSAVE"05.scc",256*20,256*20+1,S 306 BLOAD"00000012.scc",S: BSAVE"06.scc",256*24,256*24+1,S 307 BLOAD"00000012.scc",S: BSAVE"07.scc",256*28,256*28+1,S 308 BLOAD"00000012.scc",S: BSAVE"08.scc",256*32,256*32+1,S 309 BLOAD"00000012.scc",S: BSAVE"09.scc",256*36,256*36+1,S 310 BLOAD"00000012.scc",S: BSAVE"10.scc",256*40,256*40+1,S 311 BLOAD"00000013.scc",S: BSAVE"11.scc",256*0,256*4-1,S 312 BLOAD"00000013.scc",S: BSAVE"12.scc",256*4,256*8-1,S 313 BLOAD"00000013.scc",S: BSAVE"13.scc",256*8,256*12-1,S 314 BLOAD"00000013.scc",S: BSAVE"14.scc",256*12,256*16-1,S 315 BLOAD"00000013.scc",S: BSAVE"15.scc",256*16,256*20-1,S 316 BLOAD"00000013.scc",S: BSAVE"16.scc",256*20,256*24-1,S 317 BLOAD"00000013.scc",S: BSAVE"17.scc",256*24,256*28-1,S 318 BLOAD"00000013.scc",S: BSAVE"18.scc",256*28,256*32-1,S 319 BLOAD"00000013.scc",S: BSAVE"19.scc",256*32,256*36-1,S 320 BLOAD"00000013.scc",S: BSAVE"20.scc",256*36,256*40-1,S 321 BLOAD"00000013.scc",S: BSAVE"21.scc",256*40,256*44-1,S 322 BLOAD"00000013.scc",S: BSAVE"22.scc",256*44,256*48-1,S 323 BLOAD"00000013.scc",S: BSAVE"23.scc",256*48,256*52-1,S 324 BLOAD"00000013.scc",S: BSAVE"24.scc",256*52,256*56-1,S 325 BLOAD"00000013.scc",S: BSAVE"25.scc",256*56,256*60-1,S 326 BLOAD"00000013.scc",S: BSAVE"26.scc",256*60,256*64-1,S 327 BLOAD"00000013.scc",S: BSAVE"27.scc",256*64,256*68-1,S 328 BLOAD"00000013.scc",S: BSAVE"28.scc",256*68,256*72-1,S 329 BLOAD"00000013.scc",S: BSAVE"29.scc",256*72,256*76-1,S 330 BLOAD"00000013.scc",S: BSAVE"30.scc",256*76,256*80-1,S 331 BLOAD"00000013.scc",S: BSAVE"31.scc",256*80,256*84-1,S 332 BLOAD"00000013.scc",S: BSAVE"32.scc",256*84,256*88-1,S 333 BLOAD"00000013.scc",S: BSAVE"33.scc",256*88,256*92-1,S 334 BLOAD"00000013.scc",S: BSAVE"34.scc",256*92,256*96-1,S 335 BLOAD"00000013.scc",S: BSAVE"35.scc",256*96,256*100-1,S 336 BLOAD"00000013.scc",S: BSAVE"36.scc",256*100,256*104-1,S 337 BLOAD"00000013.scc",S: BSAVE"37.scc",256*104,256*108-1,S 338 BLOAD"00000013.scc",S: BSAVE"38.scc",256*108,256*112-1,S 339 BLOAD"00000013.scc",S: BSAVE"39.scc",256*112,256*116-1,S 340 BLOAD"00000013.scc",S: BSAVE"40.scc",256*116,256*120-1,S 341 BLOAD"00000013.scc",S: BSAVE"41.scc",256*120,256*124-1,S 342 BLOAD"00000013.scc",S: BSAVE"42.scc",256*124,256*128-1,S 343 BLOAD"00000013.scc",S: BSAVE"43.scc",256*128,256*132-1,S 344 BLOAD"00000013.scc",S: BSAVE"44.scc",256*132,256*136-1,S 345 BLOAD"00000013.scc",S: BSAVE"45.scc",256*136,256*140-1,S 346 BLOAD"00000013.scc",S: BSAVE"46.scc",256*140,256*144-1,S 347 BLOAD"00000013.scc",S: BSAVE"47.scc",256*144,256*148-1,S 348 BLOAD"00000013.scc",S: BSAVE"48.scc",256*148,256*152-1,S 349 BLOAD"00000013.scc",S: BSAVE"49.scc",256*152,256*156-1,S 350 BLOAD"00000013.scc",S: BSAVE"50.scc",256*156,256*160-1,S 351 BLOAD"00000013.scc",S: BSAVE"51.scc",256*160,256*164-1,S 352 BLOAD"00000013.scc",S: BSAVE"52.scc",256*164,256*168-1,S 353 BLOAD"00000013.scc",S: BSAVE"53.scc",256*168,256*172-1,S 354 BLOAD"00000013.scc",S: BSAVE"54.scc",256*172,256*176-1,S 355 BLOAD"00000013.scc",S: BSAVE"55.scc",256*176,256*180-1,S 356 BLOAD"00000013.scc",S: BSAVE"56.scc",256*180,256*184-1,S 357 BLOAD"00000013.scc",S: BSAVE"57.scc",256*184,256*188-1,S 358 BLOAD"00000013.scc",S: BSAVE"58.scc",256*188,256*192-1,S 359 BLOAD"00000013.scc",S: BSAVE"59.scc",256*192,256*196-1,S 360 BLOAD"00000013.scc",S: BSAVE"60.scc",256*196,256*200-1,S 361 BLOAD"00000013.scc",S: BSAVE"61.scc",256*200,256*204-1,S 362 BLOAD"00000013.scc",S: BSAVE"62.scc",256*204,256*208-1,S 363 BLOAD"00000013.scc",S: BSAVE"63.scc",256*208,256*212-1,S 364 kill"00000012.scc 365 kill"00000013.scc 399 CALL CHDIR (".."): CALL CHDIR ("H-14-15") 400 BLOAD"00000014.scc",S: BSAVE"00.scc",256*0,256*0+1,S 401 BLOAD"00000014.scc",S: BSAVE"01.scc",256*4,256*4+1,S 402 BLOAD"00000014.scc",S: BSAVE"02.scc",256*8,256*8+1,S 403 BLOAD"00000014.scc",S: BSAVE"03.scc",256*12,256*12+1,S 404 BLOAD"00000014.scc",S: BSAVE"04.scc",256*16,256*16+1,S 405 BLOAD"00000014.scc",S: BSAVE"05.scc",256*20,256*20+1,S 406 BLOAD"00000014.scc",S: BSAVE"06.scc",256*24,256*24+1,S 407 BLOAD"00000014.scc",S: BSAVE"07.scc",256*28,256*28+1,S 408 BLOAD"00000014.scc",S: BSAVE"08.scc",256*32,256*32+1,S 409 BLOAD"00000014.scc",S: BSAVE"09.scc",256*36,256*36+1,S 410 BLOAD"00000014.scc",S: BSAVE"10.scc",256*40,256*40+1,S 411 BLOAD"00000015.scc",S: BSAVE"11.scc",256*0,256*4-1,S 412 BLOAD"00000015.scc",S: BSAVE"12.scc",256*4,256*8-1,S 413 BLOAD"00000015.scc",S: BSAVE"13.scc",256*8,256*12-1,S 414 BLOAD"00000015.scc",S: BSAVE"14.scc",256*12,256*16-1,S 415 BLOAD"00000015.scc",S: BSAVE"15.scc",256*16,256*20-1,S 416 BLOAD"00000015.scc",S: BSAVE"16.scc",256*20,256*24-1,S 417 BLOAD"00000015.scc",S: BSAVE"17.scc",256*24,256*28-1,S 418 BLOAD"00000015.scc",S: BSAVE"18.scc",256*28,256*32-1,S 419 BLOAD"00000015.scc",S: BSAVE"19.scc",256*32,256*36-1,S 420 BLOAD"00000015.scc",S: BSAVE"20.scc",256*36,256*40-1,S 421 BLOAD"00000015.scc",S: BSAVE"21.scc",256*40,256*44-1,S 422 BLOAD"00000015.scc",S: BSAVE"22.scc",256*44,256*48-1,S 423 BLOAD"00000015.scc",S: BSAVE"23.scc",256*48,256*52-1,S 424 BLOAD"00000015.scc",S: BSAVE"24.scc",256*52,256*56-1,S 425 BLOAD"00000015.scc",S: BSAVE"25.scc",256*56,256*60-1,S 426 BLOAD"00000015.scc",S: BSAVE"26.scc",256*60,256*64-1,S 427 BLOAD"00000015.scc",S: BSAVE"27.scc",256*64,256*68-1,S 428 BLOAD"00000015.scc",S: BSAVE"28.scc",256*68,256*72-1,S 429 BLOAD"00000015.scc",S: BSAVE"29.scc",256*72,256*76-1,S 430 BLOAD"00000015.scc",S: BSAVE"30.scc",256*76,256*80-1,S 431 BLOAD"00000015.scc",S: BSAVE"31.scc",256*80,256*84-1,S 432 BLOAD"00000015.scc",S: BSAVE"32.scc",256*84,256*88-1,S 433 BLOAD"00000015.scc",S: BSAVE"33.scc",256*88,256*92-1,S 434 BLOAD"00000015.scc",S: BSAVE"34.scc",256*92,256*96-1,S 435 BLOAD"00000015.scc",S: BSAVE"35.scc",256*96,256*100-1,S 436 BLOAD"00000015.scc",S: BSAVE"36.scc",256*100,256*104-1,S 437 BLOAD"00000015.scc",S: BSAVE"37.scc",256*104,256*108-1,S 438 BLOAD"00000015.scc",S: BSAVE"38.scc",256*108,256*112-1,S 439 BLOAD"00000015.scc",S: BSAVE"39.scc",256*112,256*116-1,S 440 BLOAD"00000015.scc",S: BSAVE"40.scc",256*116,256*120-1,S 441 BLOAD"00000015.scc",S: BSAVE"41.scc",256*120,256*124-1,S 442 BLOAD"00000015.scc",S: BSAVE"42.scc",256*124,256*128-1,S 443 BLOAD"00000015.scc",S: BSAVE"43.scc",256*128,256*132-1,S 444 BLOAD"00000015.scc",S: BSAVE"44.scc",256*132,256*136-1,S 445 BLOAD"00000015.scc",S: BSAVE"45.scc",256*136,256*140-1,S 446 BLOAD"00000015.scc",S: BSAVE"46.scc",256*140,256*144-1,S 447 BLOAD"00000015.scc",S: BSAVE"47.scc",256*144,256*148-1,S 448 BLOAD"00000015.scc",S: BSAVE"48.scc",256*148,256*152-1,S 449 BLOAD"00000015.scc",S: BSAVE"49.scc",256*152,256*156-1,S 450 BLOAD"00000015.scc",S: BSAVE"50.scc",256*156,256*160-1,S 451 BLOAD"00000015.scc",S: BSAVE"51.scc",256*160,256*164-1,S 452 BLOAD"00000015.scc",S: BSAVE"52.scc",256*164,256*168-1,S 453 BLOAD"00000015.scc",S: BSAVE"53.scc",256*168,256*172-1,S 454 BLOAD"00000015.scc",S: BSAVE"54.scc",256*172,256*176-1,S 455 BLOAD"00000015.scc",S: BSAVE"55.scc",256*176,256*180-1,S 456 BLOAD"00000015.scc",S: BSAVE"56.scc",256*180,256*184-1,S 457 BLOAD"00000015.scc",S: BSAVE"57.scc",256*184,256*188-1,S 458 BLOAD"00000015.scc",S: BSAVE"58.scc",256*188,256*192-1,S 459 BLOAD"00000015.scc",S: BSAVE"59.scc",256*192,256*196-1,S 460 BLOAD"00000015.scc",S: BSAVE"60.scc",256*196,256*200-1,S 461 BLOAD"00000015.scc",S: BSAVE"61.scc",256*200,256*204-1,S 462 BLOAD"00000015.scc",S: BSAVE"62.scc",256*204,256*208-1,S 463 BLOAD"00000015.scc",S: BSAVE"63.scc",256*208,256*212-1,S 464 kill"00000014.scc 465 kill"00000015.scc 499 CALL CHDIR ("..")
[img]
10 'SAVE"GEN16-23.asc",A
20 'generateur de bribes d'images [11x(4x256)]+[(53x(4x256)]
30 VDP(10)=0: SCREEN 12
99 CALL CHDIR ("H-16-17")
100 BLOAD"00000016.scc",S: BSAVE"00.scc",256*0,256*0+1,S
101 BLOAD"00000016.scc",S: BSAVE"01.scc",256*4,256*4+1,S
102 BLOAD"00000016.scc",S: BSAVE"02.scc",256*8,256*8+1,S
103 BLOAD"00000016.scc",S: BSAVE"03.scc",256*12,256*12+1,S
104 BLOAD"00000016.scc",S: BSAVE"04.scc",256*16,256*16+1,S
105 BLOAD"00000016.scc",S: BSAVE"05.scc",256*20,256*20+1,S
106 BLOAD"00000016.scc",S: BSAVE"06.scc",256*24,256*24+1,S
107 BLOAD"00000016.scc",S: BSAVE"07.scc",256*28,256*28+1,S
108 BLOAD"00000016.scc",S: BSAVE"08.scc",256*32,256*32+1,S
109 BLOAD"00000016.scc",S: BSAVE"09.scc",256*36,256*36+1,S
110 BLOAD"00000016.scc",S: BSAVE"10.scc",256*40,256*40+1,S
111 BLOAD"00000017.scc",S: BSAVE"11.scc",256*0,256*4-1,S
112 BLOAD"00000017.scc",S: BSAVE"12.scc",256*4,256*8-1,S
113 BLOAD"00000017.scc",S: BSAVE"13.scc",256*8,256*12-1,S
114 BLOAD"00000017.scc",S: BSAVE"14.scc",256*12,256*16-1,S
115 BLOAD"00000017.scc",S: BSAVE"15.scc",256*16,256*20-1,S
116 BLOAD"00000017.scc",S: BSAVE"16.scc",256*20,256*24-1,S
117 BLOAD"00000017.scc",S: BSAVE"17.scc",256*24,256*28-1,S
118 BLOAD"00000017.scc",S: BSAVE"18.scc",256*28,256*32-1,S
119 BLOAD"00000017.scc",S: BSAVE"19.scc",256*32,256*36-1,S
120 BLOAD"00000017.scc",S: BSAVE"20.scc",256*36,256*40-1,S
121 BLOAD"00000017.scc",S: BSAVE"21.scc",256*40,256*44-1,S
122 BLOAD"00000017.scc",S: BSAVE"22.scc",256*44,256*48-1,S
123 BLOAD"00000017.scc",S: BSAVE"23.scc",256*48,256*52-1,S
124 BLOAD"00000017.scc",S: BSAVE"24.scc",256*52,256*56-1,S
125 BLOAD"00000017.scc",S: BSAVE"25.scc",256*56,256*60-1,S
126 BLOAD"00000017.scc",S: BSAVE"26.scc",256*60,256*64-1,S
127 BLOAD"00000017.scc",S: BSAVE"27.scc",256*64,256*68-1,S
128 BLOAD"00000017.scc",S: BSAVE"28.scc",256*68,256*72-1,S
129 BLOAD"00000017.scc",S: BSAVE"29.scc",256*72,256*76-1,S
130 BLOAD"00000017.scc",S: BSAVE"30.scc",256*76,256*80-1,S
131 BLOAD"00000017.scc",S: BSAVE"31.scc",256*80,256*84-1,S
132 BLOAD"00000017.scc",S: BSAVE"32.scc",256*84,256*88-1,S
133 BLOAD"00000017.scc",S: BSAVE"33.scc",256*88,256*92-1,S
134 BLOAD"00000017.scc",S: BSAVE"34.scc",256*92,256*96-1,S
135 BLOAD"00000017.scc",S: BSAVE"35.scc",256*96,256*100-1,S
136 BLOAD"00000017.scc",S: BSAVE"36.scc",256*100,256*104-1,S
137 BLOAD"00000017.scc",S: BSAVE"37.scc",256*104,256*108-1,S
138 BLOAD"00000017.scc",S: BSAVE"38.scc",256*108,256*112-1,S
139 BLOAD"00000017.scc",S: BSAVE"39.scc",256*112,256*116-1,S
140 BLOAD"00000017.scc",S: BSAVE"40.scc",256*116,256*120-1,S
141 BLOAD"00000017.scc",S: BSAVE"41.scc",256*120,256*124-1,S
142 BLOAD"00000017.scc",S: BSAVE"42.scc",256*124,256*128-1,S
143 BLOAD"00000017.scc",S: BSAVE"43.scc",256*128,256*132-1,S
144 BLOAD"00000017.scc",S: BSAVE"44.scc",256*132,256*136-1,S
145 BLOAD"00000017.scc",S: BSAVE"45.scc",256*136,256*140-1,S
146 BLOAD"00000017.scc",S: BSAVE"46.scc",256*140,256*144-1,S
147 BLOAD"00000017.scc",S: BSAVE"47.scc",256*144,256*148-1,S
148 BLOAD"00000017.scc",S: BSAVE"48.scc",256*148,256*152-1,S
149 BLOAD"00000017.scc",S: BSAVE"49.scc",256*152,256*156-1,S
150 BLOAD"00000017.scc",S: BSAVE"50.scc",256*156,256*160-1,S
151 BLOAD"00000017.scc",S: BSAVE"51.scc",256*160,256*164-1,S
152 BLOAD"00000017.scc",S: BSAVE"52.scc",256*164,256*168-1,S
153 BLOAD"00000017.scc",S: BSAVE"53.scc",256*168,256*172-1,S
154 BLOAD"00000017.scc",S: BSAVE"54.scc",256*172,256*176-1,S
155 BLOAD"00000017.scc",S: BSAVE"55.scc",256*176,256*180-1,S
156 BLOAD"00000017.scc",S: BSAVE"56.scc",256*180,256*184-1,S
157 BLOAD"00000017.scc",S: BSAVE"57.scc",256*184,256*188-1,S
158 BLOAD"00000017.scc",S: BSAVE"58.scc",256*188,256*192-1,S
159 BLOAD"00000017.scc",S: BSAVE"59.scc",256*192,256*196-1,S
160 BLOAD"00000017.scc",S: BSAVE"60.scc",256*196,256*200-1,S
161 BLOAD"00000017.scc",S: BSAVE"61.scc",256*200,256*204-1,S
162 BLOAD"00000017.scc",S: BSAVE"62.scc",256*204,256*208-1,S
163 BLOAD"00000017.scc",S: BSAVE"63.scc",256*208,256*212-1,S
164 kill"00000016.scc
165 kill"00000017.scc
199 CALL CHDIR (".."): CALL CHDIR ("H-18-19")
200 BLOAD"00000018.scc",S: BSAVE"00.scc",256*0,256*0+1,S
201 BLOAD"00000018.scc",S: BSAVE"01.scc",256*4,256*4+1,S
202 BLOAD"00000018.scc",S: BSAVE"02.scc",256*8,256*8+1,S
203 BLOAD"00000018.scc",S: BSAVE"03.scc",256*12,256*12+1,S
204 BLOAD"00000018.scc",S: BSAVE"04.scc",256*16,256*16+1,S
205 BLOAD"00000018.scc",S: BSAVE"05.scc",256*20,256*20+1,S
206 BLOAD"00000018.scc",S: BSAVE"06.scc",256*24,256*24+1,S
207 BLOAD"00000018.scc",S: BSAVE"07.scc",256*28,256*28+1,S
208 BLOAD"00000018.scc",S: BSAVE"08.scc",256*32,256*32+1,S
209 BLOAD"00000018.scc",S: BSAVE"09.scc",256*36,256*36+1,S
210 BLOAD"00000018.scc",S: BSAVE"10.scc",256*40,256*40+1,S
211 BLOAD"00000019.scc",S: BSAVE"11.scc",256*0,256*4-1,S
212 BLOAD"00000019.scc",S: BSAVE"12.scc",256*4,256*8-1,S
213 BLOAD"00000019.scc",S: BSAVE"13.scc",256*8,256*12-1,S
214 BLOAD"00000019.scc",S: BSAVE"14.scc",256*12,256*16-1,S
215 BLOAD"00000019.scc",S: BSAVE"15.scc",256*16,256*20-1,S
216 BLOAD"00000019.scc",S: BSAVE"16.scc",256*20,256*24-1,S
217 BLOAD"00000019.scc",S: BSAVE"17.scc",256*24,256*28-1,S
218 BLOAD"00000019.scc",S: BSAVE"18.scc",256*28,256*32-1,S
219 BLOAD"00000019.scc",S: BSAVE"19.scc",256*32,256*36-1,S
220 BLOAD"00000019.scc",S: BSAVE"20.scc",256*36,256*40-1,S
221 BLOAD"00000019.scc",S: BSAVE"21.scc",256*40,256*44-1,S
222 BLOAD"00000019.scc",S: BSAVE"22.scc",256*44,256*48-1,S
223 BLOAD"00000019.scc",S: BSAVE"23.scc",256*48,256*52-1,S
224 BLOAD"00000019.scc",S: BSAVE"24.scc",256*52,256*56-1,S
225 BLOAD"00000019.scc",S: BSAVE"25.scc",256*56,256*60-1,S
226 BLOAD"00000019.scc",S: BSAVE"26.scc",256*60,256*64-1,S
227 BLOAD"00000019.scc",S: BSAVE"27.scc",256*64,256*68-1,S
228 BLOAD"00000019.scc",S: BSAVE"28.scc",256*68,256*72-1,S
229 BLOAD"00000019.scc",S: BSAVE"29.scc",256*72,256*76-1,S
230 BLOAD"00000019.scc",S: BSAVE"30.scc",256*76,256*80-1,S
231 BLOAD"00000019.scc",S: BSAVE"31.scc",256*80,256*84-1,S
232 BLOAD"00000019.scc",S: BSAVE"32.scc",256*84,256*88-1,S
233 BLOAD"00000019.scc",S: BSAVE"33.scc",256*88,256*92-1,S
234 BLOAD"00000019.scc",S: BSAVE"34.scc",256*92,256*96-1,S
235 BLOAD"00000019.scc",S: BSAVE"35.scc",256*96,256*100-1,S
236 BLOAD"00000019.scc",S: BSAVE"36.scc",256*100,256*104-1,S
237 BLOAD"00000019.scc",S: BSAVE"37.scc",256*104,256*108-1,S
238 BLOAD"00000019.scc",S: BSAVE"38.scc",256*108,256*112-1,S
239 BLOAD"00000019.scc",S: BSAVE"39.scc",256*112,256*116-1,S
240 BLOAD"00000019.scc",S: BSAVE"40.scc",256*116,256*120-1,S
241 BLOAD"00000019.scc",S: BSAVE"41.scc",256*120,256*124-1,S
242 BLOAD"00000019.scc",S: BSAVE"42.scc",256*124,256*128-1,S
243 BLOAD"00000019.scc",S: BSAVE"43.scc",256*128,256*132-1,S
244 BLOAD"00000019.scc",S: BSAVE"44.scc",256*132,256*136-1,S
245 BLOAD"00000019.scc",S: BSAVE"45.scc",256*136,256*140-1,S
246 BLOAD"00000019.scc",S: BSAVE"46.scc",256*140,256*144-1,S
247 BLOAD"00000019.scc",S: BSAVE"47.scc",256*144,256*148-1,S
248 BLOAD"00000019.scc",S: BSAVE"48.scc",256*148,256*152-1,S
249 BLOAD"00000019.scc",S: BSAVE"49.scc",256*152,256*156-1,S
250 BLOAD"00000019.scc",S: BSAVE"50.scc",256*156,256*160-1,S
251 BLOAD"00000019.scc",S: BSAVE"51.scc",256*160,256*164-1,S
252 BLOAD"00000019.scc",S: BSAVE"52.scc",256*164,256*168-1,S
253 BLOAD"00000019.scc",S: BSAVE"53.scc",256*168,256*172-1,S
254 BLOAD"00000019.scc",S: BSAVE"54.scc",256*172,256*176-1,S
255 BLOAD"00000019.scc",S: BSAVE"55.scc",256*176,256*180-1,S
256 BLOAD"00000019.scc",S: BSAVE"56.scc",256*180,256*184-1,S
257 BLOAD"00000019.scc",S: BSAVE"57.scc",256*184,256*188-1,S
258 BLOAD"00000019.scc",S: BSAVE"58.scc",256*188,256*192-1,S
259 BLOAD"00000019.scc",S: BSAVE"59.scc",256*192,256*196-1,S
260 BLOAD"00000019.scc",S: BSAVE"60.scc",256*196,256*200-1,S
261 BLOAD"00000019.scc",S: BSAVE"61.scc",256*200,256*204-1,S
262 BLOAD"00000019.scc",S: BSAVE"62.scc",256*204,256*208-1,S
263 BLOAD"00000019.scc",S: BSAVE"63.scc",256*208,256*212-1,S
264 kill"00000018.scc
265 kill"00000019.scc
299 CALL CHDIR (".."): CALL CHDIR ("H-20-21")
300 BLOAD"00000020.scc",S: BSAVE"00.scc",256*0,256*0+1,S
301 BLOAD"00000020.scc",S: BSAVE"01.scc",256*4,256*4+1,S
302 BLOAD"00000020.scc",S: BSAVE"02.scc",256*8,256*8+1,S
303 BLOAD"00000020.scc",S: BSAVE"03.scc",256*12,256*12+1,S
304 BLOAD"00000020.scc",S: BSAVE"04.scc",256*16,256*16+1,S
305 BLOAD"00000020.scc",S: BSAVE"05.scc",256*20,256*20+1,S
306 BLOAD"00000020.scc",S: BSAVE"06.scc",256*24,256*24+1,S
307 BLOAD"00000020.scc",S: BSAVE"07.scc",256*28,256*28+1,S
308 BLOAD"00000020.scc",S: BSAVE"08.scc",256*32,256*32+1,S
309 BLOAD"00000020.scc",S: BSAVE"09.scc",256*36,256*36+1,S
310 BLOAD"00000020.scc",S: BSAVE"10.scc",256*40,256*40+1,S
311 BLOAD"00000021.scc",S: BSAVE"11.scc",256*0,256*4-1,S
312 BLOAD"00000021.scc",S: BSAVE"12.scc",256*4,256*8-1,S
313 BLOAD"00000021.scc",S: BSAVE"13.scc",256*8,256*12-1,S
314 BLOAD"00000021.scc",S: BSAVE"14.scc",256*12,256*16-1,S
315 BLOAD"00000021.scc",S: BSAVE"15.scc",256*16,256*20-1,S
316 BLOAD"00000021.scc",S: BSAVE"16.scc",256*20,256*24-1,S
317 BLOAD"00000021.scc",S: BSAVE"17.scc",256*24,256*28-1,S
318 BLOAD"00000021.scc",S: BSAVE"18.scc",256*28,256*32-1,S
319 BLOAD"00000021.scc",S: BSAVE"19.scc",256*32,256*36-1,S
320 BLOAD"00000021.scc",S: BSAVE"20.scc",256*36,256*40-1,S
321 BLOAD"00000021.scc",S: BSAVE"21.scc",256*40,256*44-1,S
322 BLOAD"00000021.scc",S: BSAVE"22.scc",256*44,256*48-1,S
323 BLOAD"00000021.scc",S: BSAVE"23.scc",256*48,256*52-1,S
324 BLOAD"00000021.scc",S: BSAVE"24.scc",256*52,256*56-1,S
325 BLOAD"00000021.scc",S: BSAVE"25.scc",256*56,256*60-1,S
326 BLOAD"00000021.scc",S: BSAVE"26.scc",256*60,256*64-1,S
327 BLOAD"00000021.scc",S: BSAVE"27.scc",256*64,256*68-1,S
328 BLOAD"00000021.scc",S: BSAVE"28.scc",256*68,256*72-1,S
329 BLOAD"00000021.scc",S: BSAVE"29.scc",256*72,256*76-1,S
330 BLOAD"00000021.scc",S: BSAVE"30.scc",256*76,256*80-1,S
331 BLOAD"00000021.scc",S: BSAVE"31.scc",256*80,256*84-1,S
332 BLOAD"00000021.scc",S: BSAVE"32.scc",256*84,256*88-1,S
333 BLOAD"00000021.scc",S: BSAVE"33.scc",256*88,256*92-1,S
334 BLOAD"00000021.scc",S: BSAVE"34.scc",256*92,256*96-1,S
335 BLOAD"00000021.scc",S: BSAVE"35.scc",256*96,256*100-1,S
336 BLOAD"00000021.scc",S: BSAVE"36.scc",256*100,256*104-1,S
337 BLOAD"00000021.scc",S: BSAVE"37.scc",256*104,256*108-1,S
338 BLOAD"00000021.scc",S: BSAVE"38.scc",256*108,256*112-1,S
339 BLOAD"00000021.scc",S: BSAVE"39.scc",256*112,256*116-1,S
340 BLOAD"00000021.scc",S: BSAVE"40.scc",256*116,256*120-1,S
341 BLOAD"00000021.scc",S: BSAVE"41.scc",256*120,256*124-1,S
342 BLOAD"00000021.scc",S: BSAVE"42.scc",256*124,256*128-1,S
343 BLOAD"00000021.scc",S: BSAVE"43.scc",256*128,256*132-1,S
344 BLOAD"00000021.scc",S: BSAVE"44.scc",256*132,256*136-1,S
345 BLOAD"00000021.scc",S: BSAVE"45.scc",256*136,256*140-1,S
346 BLOAD"00000021.scc",S: BSAVE"46.scc",256*140,256*144-1,S
347 BLOAD"00000021.scc",S: BSAVE"47.scc",256*144,256*148-1,S
348 BLOAD"00000021.scc",S: BSAVE"48.scc",256*148,256*152-1,S
349 BLOAD"00000021.scc",S: BSAVE"49.scc",256*152,256*156-1,S
350 BLOAD"00000021.scc",S: BSAVE"50.scc",256*156,256*160-1,S
351 BLOAD"00000021.scc",S: BSAVE"51.scc",256*160,256*164-1,S
352 BLOAD"00000021.scc",S: BSAVE"52.scc",256*164,256*168-1,S
353 BLOAD"00000021.scc",S: BSAVE"53.scc",256*168,256*172-1,S
354 BLOAD"00000021.scc",S: BSAVE"54.scc",256*172,256*176-1,S
355 BLOAD"00000021.scc",S: BSAVE"55.scc",256*176,256*180-1,S
356 BLOAD"00000021.scc",S: BSAVE"56.scc",256*180,256*184-1,S
357 BLOAD"00000021.scc",S: BSAVE"57.scc",256*184,256*188-1,S
358 BLOAD"00000021.scc",S: BSAVE"58.scc",256*188,256*192-1,S
359 BLOAD"00000021.scc",S: BSAVE"59.scc",256*192,256*196-1,S
360 BLOAD"00000021.scc",S: BSAVE"60.scc",256*196,256*200-1,S
361 BLOAD"00000021.scc",S: BSAVE"61.scc",256*200,256*204-1,S
362 BLOAD"00000021.scc",S: BSAVE"62.scc",256*204,256*208-1,S
363 BLOAD"00000021.scc",S: BSAVE"63.scc",256*208,256*212-1,S
364 kill"00000020.scc
365 kill"00000021.scc
399 CALL CHDIR (".."): CALL CHDIR ("H-22-23")
400 BLOAD"00000022.scc",S: BSAVE"00.scc",256*0,256*0+1,S
401 BLOAD"00000022.scc",S: BSAVE"01.scc",256*4,256*4+1,S
402 BLOAD"00000022.scc",S: BSAVE"02.scc",256*8,256*8+1,S
403 BLOAD"00000022.scc",S: BSAVE"03.scc",256*12,256*12+1,S
404 BLOAD"00000022.scc",S: BSAVE"04.scc",256*16,256*16+1,S
405 BLOAD"00000022.scc",S: BSAVE"05.scc",256*20,256*20+1,S
406 BLOAD"00000022.scc",S: BSAVE"06.scc",256*24,256*24+1,S
407 BLOAD"00000022.scc",S: BSAVE"07.scc",256*28,256*28+1,S
408 BLOAD"00000022.scc",S: BSAVE"08.scc",256*32,256*32+1,S
409 BLOAD"00000022.scc",S: BSAVE"09.scc",256*36,256*36+1,S
410 BLOAD"00000022.scc",S: BSAVE"10.scc",256*40,256*40+1,S
411 BLOAD"00000023.scc",S: BSAVE"11.scc",256*0,256*4-1,S
412 BLOAD"00000023.scc",S: BSAVE"12.scc",256*4,256*8-1,S
413 BLOAD"00000023.scc",S: BSAVE"13.scc",256*8,256*12-1,S
414 BLOAD"00000023.scc",S: BSAVE"14.scc",256*12,256*16-1,S
415 BLOAD"00000023.scc",S: BSAVE"15.scc",256*16,256*20-1,S
416 BLOAD"00000023.scc",S: BSAVE"16.scc",256*20,256*24-1,S
417 BLOAD"00000023.scc",S: BSAVE"17.scc",256*24,256*28-1,S
418 BLOAD"00000023.scc",S: BSAVE"18.scc",256*28,256*32-1,S
419 BLOAD"00000023.scc",S: BSAVE"19.scc",256*32,256*36-1,S
420 BLOAD"00000023.scc",S: BSAVE"20.scc",256*36,256*40-1,S
421 BLOAD"00000023.scc",S: BSAVE"21.scc",256*40,256*44-1,S
422 BLOAD"00000023.scc",S: BSAVE"22.scc",256*44,256*48-1,S
423 BLOAD"00000023.scc",S: BSAVE"23.scc",256*48,256*52-1,S
424 BLOAD"00000023.scc",S: BSAVE"24.scc",256*52,256*56-1,S
425 BLOAD"00000023.scc",S: BSAVE"25.scc",256*56,256*60-1,S
426 BLOAD"00000023.scc",S: BSAVE"26.scc",256*60,256*64-1,S
427 BLOAD"00000023.scc",S: BSAVE"27.scc",256*64,256*68-1,S
428 BLOAD"00000023.scc",S: BSAVE"28.scc",256*68,256*72-1,S
429 BLOAD"00000023.scc",S: BSAVE"29.scc",256*72,256*76-1,S
430 BLOAD"00000023.scc",S: BSAVE"30.scc",256*76,256*80-1,S
431 BLOAD"00000023.scc",S: BSAVE"31.scc",256*80,256*84-1,S
432 BLOAD"00000023.scc",S: BSAVE"32.scc",256*84,256*88-1,S
433 BLOAD"00000023.scc",S: BSAVE"33.scc",256*88,256*92-1,S
434 BLOAD"00000023.scc",S: BSAVE"34.scc",256*92,256*96-1,S
435 BLOAD"00000023.scc",S: BSAVE"35.scc",256*96,256*100-1,S
436 BLOAD"00000023.scc",S: BSAVE"36.scc",256*100,256*104-1,S
437 BLOAD"00000023.scc",S: BSAVE"37.scc",256*104,256*108-1,S
438 BLOAD"00000023.scc",S: BSAVE"38.scc",256*108,256*112-1,S
439 BLOAD"00000023.scc",S: BSAVE"39.scc",256*112,256*116-1,S
440 BLOAD"00000023.scc",S: BSAVE"40.scc",256*116,256*120-1,S
441 BLOAD"00000023.scc",S: BSAVE"41.scc",256*120,256*124-1,S
442 BLOAD"00000023.scc",S: BSAVE"42.scc",256*124,256*128-1,S
443 BLOAD"00000023.scc",S: BSAVE"43.scc",256*128,256*132-1,S
444 BLOAD"00000023.scc",S: BSAVE"44.scc",256*132,256*136-1,S
445 BLOAD"00000023.scc",S: BSAVE"45.scc",256*136,256*140-1,S
446 BLOAD"00000023.scc",S: BSAVE"46.scc",256*140,256*144-1,S
447 BLOAD"00000023.scc",S: BSAVE"47.scc",256*144,256*148-1,S
448 BLOAD"00000023.scc",S: BSAVE"48.scc",256*148,256*152-1,S
449 BLOAD"00000023.scc",S: BSAVE"49.scc",256*152,256*156-1,S
450 BLOAD"00000023.scc",S: BSAVE"50.scc",256*156,256*160-1,S
451 BLOAD"00000023.scc",S: BSAVE"51.scc",256*160,256*164-1,S
452 BLOAD"00000023.scc",S: BSAVE"52.scc",256*164,256*168-1,S
453 BLOAD"00000023.scc",S: BSAVE"53.scc",256*168,256*172-1,S
454 BLOAD"00000023.scc",S: BSAVE"54.scc",256*172,256*176-1,S
455 BLOAD"00000023.scc",S: BSAVE"55.scc",256*176,256*180-1,S
456 BLOAD"00000023.scc",S: BSAVE"56.scc",256*180,256*184-1,S
457 BLOAD"00000023.scc",S: BSAVE"57.scc",256*184,256*188-1,S
458 BLOAD"00000023.scc",S: BSAVE"58.scc",256*188,256*192-1,S
459 BLOAD"00000023.scc",S: BSAVE"59.scc",256*192,256*196-1,S
460 BLOAD"00000023.scc",S: BSAVE"60.scc",256*196,256*200-1,S
461 BLOAD"00000023.scc",S: BSAVE"61.scc",256*200,256*204-1,S
462 BLOAD"00000023.scc",S: BSAVE"62.scc",256*204,256*208-1,S
463 BLOAD"00000023.scc",S: BSAVE"63.scc",256*208,256*212-1,S
464 kill"00000022.scc
465 kill"00000023.scc
499 CALL CHDIR ("..")
[/img]
Voici le Player à peine modifié:
Code TEXT :
Edité par
igal
Le 08/10/2014 à 12h03
10 'SAVE"HPLAY13.asc",A 16 CALL CHDIR ("h-00-01") 20 'PLAYER DE BRIBES HORIZONTAL [11X(4X256)]+[(53X(4X256)] 22 VDP(10)=0:SCREEN 12,,,,,1:N=N+4AND255:P=0 24 SET PAGE 0,1 26 IF P=0THEN CALL CHDIR (".."):CALL CHDIR ("H-00-01"):Z=0:GOTO50 28 IF P=1THEN CALL CHDIR (".."):CALL CHDIR ("H-02-03"):Z=2:GOTO50 30 IF P=2THEN CALL CHDIR (".."):CALL CHDIR ("H-04-05"):Z=4:GOTO50 32 IF P=3THEN CALL CHDIR (".."):CALL CHDIR ("H-06-07"):Z=6:GOTO50 34 IF P=4THEN CALL CHDIR (".."):CALL CHDIR ("H-08-09"):Z=8:GOTO50 36 IF P=5THEN CALL CHDIR (".."):CALL CHDIR ("H-10-11"):Z=10:GOTO50 38 IF P=6THEN CALL CHDIR (".."):CALL CHDIR ("H-12-13"):Z=12:GOTO50 41 IF P=7THEN CALL CHDIR (".."):CALL CHDIR ("H-14-15"):Z=14:GOTO50 42 IF P=8THEN CALL CHDIR (".."):CALL CHDIR ("H-16-17"):Z=16:GOTO50 43 IF P=9THEN CALL CHDIR (".."):CALL CHDIR ("H-18-19"):Z=18:GOTO50 44 IF P=10THEN CALL CHDIR (".."):CALL CHDIR ("H-20-21"):Z=20:P=0:GOTO50 50 BLOAD"00.scc",S,0-11264:GOSUB 10000 60 BLOAD"01.scc",S,0-11264:GOSUB 10000 70 BLOAD"02.scc",S,0-11264:GOSUB 10000 80 BLOAD"03.scc",S,0-11264:GOSUB 10000 90 BLOAD"04.scc",S,0-11264:GOSUB 10000 100 BLOAD"05.scc",S,0-11264:GOSUB 10000 110 BLOAD"06.scc",S,0-11264:GOSUB 10000 120 BLOAD"07.scc",S,0-11264:GOSUB 10000 130 BLOAD"08.scc",S,0-11264:GOSUB 10000 140 BLOAD"09.scc",S,0-11264:GOSUB 10000 150 BLOAD"10.scc",S,0-11264:GOSUB 10000 160 BLOAD"11.scc",S:GOSUB 10000 170 BLOAD"12.scc",S:GOSUB 10000 180 BLOAD"13.scc",S:GOSUB 10000 190 BLOAD"14.scc",S:GOSUB 10000 200 BLOAD"15.scc",S:GOSUB 10000 210 BLOAD"16.scc",S:GOSUB 10000 220 BLOAD"17.scc",S:GOSUB 10000 230 BLOAD"18.scc",S:GOSUB 10000 240 BLOAD"19.scc",S:GOSUB 10000 250 BLOAD"20.scc",S:GOSUB 10000 260 BLOAD"21.scc",S:GOSUB 10000 270 BLOAD"22.scc",S:GOSUB 10000 280 BLOAD"23.scc",S:GOSUB 10000 290 BLOAD"24.scc",S:GOSUB 10000 300 BLOAD"25.scc",S:GOSUB 10000 310 BLOAD"26.scc",S:GOSUB 10000 320 BLOAD"27.scc",S:GOSUB 10000 330 BLOAD"28.scc",S:GOSUB 10000 340 BLOAD"29.scc",S:GOSUB 10000 350 BLOAD"30.scc",S:GOSUB 10000 360 BLOAD"31.scc",S:GOSUB 10000 370 BLOAD"32.scc",S:GOSUB 10000 380 BLOAD"33.scc",S:GOSUB 10000 390 BLOAD"34.scc",S:GOSUB 10000 400 BLOAD"35.scc",S:GOSUB 10000 410 BLOAD"36.scc",S:GOSUB 10000 420 BLOAD"37.scc",S:GOSUB 10000 430 BLOAD"38.scc",S:GOSUB 10000 440 BLOAD"39.scc",S:GOSUB 10000 450 BLOAD"40.scc",S:GOSUB 10000 460 BLOAD"41.scc",S:GOSUB 10000 470 BLOAD"42.scc",S:GOSUB 10000 480 BLOAD"43.scc",S:GOSUB 10000 490 BLOAD"44.scc",S:GOSUB 10000 500 BLOAD"45.scc",S:GOSUB 10000 510 BLOAD"46.scc",S:GOSUB 10000 520 BLOAD"47.scc",S:GOSUB 10000 530 BLOAD"48.scc",S:GOSUB 10000 540 BLOAD"49.scc",S:GOSUB 10000 550 BLOAD"50.scc",S:GOSUB 10000 560 BLOAD"51.scc",S:GOSUB 10000 570 BLOAD"52.scc",S:GOSUB 10000 580 BLOAD"53.scc",S:GOSUB 10000 590 BLOAD"54.scc",S:GOSUB 10000 600 BLOAD"55.scc",S:GOSUB 10000 610 BLOAD"56.scc",S:GOSUB 10000 620 BLOAD"57.scc",S:GOSUB 10000 630 BLOAD"58.scc",S:GOSUB 10000 640 BLOAD"59.scc",S:GOSUB 10000 650 BLOAD"60.scc",S:GOSUB 10000 660 BLOAD"61.scc",S:GOSUB 10000 670 BLOAD"62.scc",S:GOSUB 10000 680 BLOAD"63.scc",S:GOSUB 10000 1340 P=P+1:GOTO26 10000 VDP(27)=(N+7)/8:VDP(28)=-NAND7:S=STICK(0):ONS+1 GOSUB 11000,12000,13000,14000,15000,16000,17000,18000,19000:RETURN 10010 ' 11000 'STATIQUE 11010 COPY(H,0)-(H+3,212),1TO(H,0),0:H=H+4AND255:N=N+4AND255:RETURN 11020 ' 12000 'HAUT 12010 Y=Y-8:RETURN 12020 ' 13000 'DIAGO HAUT DROITE 13010 Y=Y-16:VDP(27)=VDP(27)+1AND255:RETURN 13020 ' 14000 'DROITE 14010 RETURN 14020 ' 15000 'DIAGO DROITE BAS 15010 Y=Y+16:VDP(27)=VDP(27)+1AND255::RETURN 15020 ' 15030 ' 16000 'BAS 16010 Y=Y+8:RETURN 16020 ' 17000 'DIAGO BAS GAUCHE 17010 Y=Y+16:VDP(27)=VDP(27)+255AND255:RETURN 17020 ' 18000 'GAUCHE 18010 VDP(27)=VDP(27)+255AND255:RETURN 18020 ' 19000 'DIAGO HAUT GAUCHE 19010 VDP(27)=VDP(27)+255AND255:Y=Y-16:RETURN
igal
Membre non connecté
Conseiller Municipal
Salut à tous.
J'essai d'implanter une bande SON avec simultanément à l'animation mais un problème se pose!
Il semble que les commandes appelant la lecture des fichiers soit incompatible avec les Players Audio
Je me trompe peut être mais je pense que certaines adresses utilisés par les Players "empiètent" sur une partie "Mémoire" qui gère les "accès disques"
Pourtant, il doit être possible de faire les deux en même temps
Je me souviens que dans certains jeux comme Fray, il y a des accès disque simultanés à la lecture musicale sans que cela plante.
Evidemment, cela produit des ralentissements dans la lecture audio, mais je suis optimiste sur le rendu final
J'ai donc essayé différents replayer audio comme le chargeur SCC de Salamander Démo => http://www.msxvillage.fr/forum/topic.php?id=528
J'ai aussi essayé le replayer FM que MsxLégend nous avait rapporté ci dessous:
Si vous avez une idée
J'essai d'implanter une bande SON avec simultanément à l'animation mais un problème se pose!
Il semble que les commandes appelant la lecture des fichiers soit incompatible avec les Players Audio
Je me trompe peut être mais je pense que certaines adresses utilisés par les Players "empiètent" sur une partie "Mémoire" qui gère les "accès disques"
Pourtant, il doit être possible de faire les deux en même temps
Je me souviens que dans certains jeux comme Fray, il y a des accès disque simultanés à la lecture musicale sans que cela plante.
Evidemment, cela produit des ralentissements dans la lecture audio, mais je suis optimiste sur le rendu final
J'ai donc essayé différents replayer audio comme le chargeur SCC de Salamander Démo => http://www.msxvillage.fr/forum/topic.php?id=528
Code TEXT :
42 ' -----------INSERTION DES MUSIQUES ET SONS---------- 43 GOTO 20000:' DIRECTION CHARGEUR SCC SALAMANDER 44 '-----------------SCC SALAMANDER GESTION------------- 45 ' 46 'DEFUSR=&HD000:A=USR(0):'STOP LA MUSIQUE 47 DEFUSR=&HD000:A=USR(0):POKE&HCFFF,32:A=USR2(0):' MUSIQUE STAGE 6 20000 '---------DEBUT DE SALAMANDER DEMO MODIFIE---------------- 20010 'POKE&HFBB1,1: 'EMPECHE CONTROL+STOP 20030 BLOAD"1.006":DEFUSR4=&HD600:' CHARGE LE PLAYER ? 20040 BLOAD"1.007":U=USR4(1):' CHARGE SONS ET MUSIQUES 20050 BLOAD"1.008":U=USR4(2):' CHARGE SONS ET MUSIQUES 20060 BLOAD"1.009":U=USR4(3):' CHARGE SONS ET MUSIQUES 20070 BLOAD"1.010":U=USR4(4):' CHARGE SONS ET MUSIQUES 20080 BLOAD"1.011":FORT=0TO2000:NEXT 20090 DEFUSR=&HD000:A=USR(0): 'PREREQUIS ARRET LA MUSIQUE 20100 DEFUSR2=&HD003:' PREREQUIS FONCTION INCONNUE 20101 POKE&HFD9F,201 20105 POKE&HFDA0,&H6:POKE&HFDA1,&HD0:POKE&HFD9F,&HC3 20115 ' LISTE COMPLETE DES MUSIQUES ET SONS DANS POKE SALAMANDER 20117 ' 20120 'DEFUSR=&HD000:A=USR(0):POKE&HCFFF,32:A=USR2(0):' MUSIQUE STAGE 6 20750 'POKE&HCFFF,67:A=USR2(0):' EXPLOSION D'ENNEMI MOYENNE 20755 ' 20760 'DEFUSR=&HD000:A=USR(0):FORP=0TO10:NEXT:POKE&HFD9F,201:'PERMET ACCES DISK MAIS ARRETER MUSIQUE AVANT 20770 GOTO 44:' RETOUR A L ANIMATION 20800 ' 20810 '---------FIN DE SALAMANDER DEMO MODIFIE-------------------
J'ai aussi essayé le replayer FM que MsxLégend nous avait rapporté ci dessous:
Code TEXT :
48 ' ---------------BGM GESTION------------------ 49 GOTO 30000:' DIRECTION CHARGEUR BGM 50 A=USR(0)+USR1(VARPTR(A(0))):'DEMARRE LA MUSIQUE 51 'A=USR2(0):' STOP LA MUSIQUE 30000 '---------DEBUT LOADER BGM PAR MSXLEGEND------------------- 30010 BLOAD"bgm.bin":'CLEAR200,&H9000:DEFINTA-Z 30020 DEFUSR=&HCE00:DEFUSR1=&HCE03:DEFUSR2=&HCE06:DEFUSR3=&HCE09 30030 DIMA(1):A$="ys-2b.bgm" 30040 OPENA$FORINPUTAS1:B$=INPUT$(1,1):B$=INPUT$(1,1):C$=INPUT$(1,1):CLOSE 30050 BLOADA$ 30060 B=(ASC(B$)+ASC(C$)*256)-65536! 30070 IFB=0THENBLOADA$,&H9000:B=&H9000 30080 A(0)=0:A(1)=B 30090 'A=USR(0)+USR1(VARPTR(A(0))) 30091 GOTO 50 30100 'END 30110 'A=USR2(0) 30111 '------------FIN LOADER BGM PAR MSXLEGEND-----------------
Si vous avez une idée
ericb59
Membre non connecté
Conseiller Municipal
oui j'ai une idée.
Nestor Basic !
cependant même avec Nestor Basic qui se charge de jouer une lusique Fm paq, les acces disque bloque la musique, ou la ralentie
Nestor Basic !
cependant même avec Nestor Basic qui se charge de jouer une lusique Fm paq, les acces disque bloque la musique, ou la ralentie
igal
Membre non connecté
Conseiller Municipal
Je garde cette option sous le coude
En fait je me demande si quelqu'un peut faire ceci:
1) Les accès disques (BLOAD, FILES etc..) se faisant de la l'adresse X à Z
2) Les Players utilisant les plages mémoires Y
3) Il y a donc un chevauchement des plage mémoires!
4) Il suffit de déplacer Y vers V ou W pour que tout fonctionne
Pour cela évidemment, il faut avoir les connaissances
Tu sais faire ça?
En fait je me demande si quelqu'un peut faire ceci:
1) Les accès disques (BLOAD, FILES etc..) se faisant de la l'adresse X à Z
2) Les Players utilisant les plages mémoires Y
3) Il y a donc un chevauchement des plage mémoires!
4) Il suffit de déplacer Y vers V ou W pour que tout fonctionne
Pour cela évidemment, il faut avoir les connaissances
Tu sais faire ça?
Je ne pense pas que ce soit un conflit de mémoire.
C'est probablement plutôt un conflit d'interruptions : les replayers utilisent l'interruption hardware RST 38h pour cadencer la musique.
Et les accès disques utilisent également cette même interruption pour leur gestion.
C'est probablement plutôt un conflit d'interruptions : les replayers utilisent l'interruption hardware RST 38h pour cadencer la musique.
Et les accès disques utilisent également cette même interruption pour leur gestion.
MSX1: Daewoo DPC-200 / Yamaha CX5M
MSX2: Sony HB-F9P
MSXVR
Vidéo: V9990 (GFX-9)
Audio: MSX-Music (FM-PAC) / MSX-Audio (Audiowave) / OPL4 (Monster Sound FM Blaster) / OPNB (Neotron)
igal :
Il y a un moyen de contourner ce problème?
Je ne sais pas.
Peut être en reprogrammant le replayer, mais c'est au dessus de mes compétences.
MSX1: Daewoo DPC-200 / Yamaha CX5M
MSX2: Sony HB-F9P
MSXVR
Vidéo: V9990 (GFX-9)
Audio: MSX-Music (FM-PAC) / MSX-Audio (Audiowave) / OPL4 (Monster Sound FM Blaster) / OPNB (Neotron)
igal
Membre non connecté
Conseiller Municipal
Je me trompe ou alors le Music Module a la particularité de pouvoir interpréter des données "Samples" simultanément à un chargement en cours!
Vous connaissez une démo qui fait ça?
On pourrait peut être charger des Bribes de Samples et les jouer à mesure un peu comme pour le VDP
Vous connaissez une démo qui fait ça?
On pourrait peut être charger des Bribes de Samples et les jouer à mesure un peu comme pour le VDP
igal
Membre non connecté
Conseiller Municipal
Voila..J'avais trifouillé dans le Music module y a quelques temps.
On voit bien que le MSX fait des BSAVE sans gêner la lecture de l'ADPCM en cours de lecture sur le Music Module.
Le sujet est par là => http://www.msxvillage.fr/forum/post.php?new=msg&idm=37038&id=21&idt=1673
Je vais ouvrir un autre post pour ne pas noyer celui là
On voit bien que le MSX fait des BSAVE sans gêner la lecture de l'ADPCM en cours de lecture sur le Music Module.
Le sujet est par là => http://www.msxvillage.fr/forum/post.php?new=msg&idm=37038&id=21&idt=1673
Je vais ouvrir un autre post pour ne pas noyer celui là
ericb59
Membre non connecté
Conseiller Municipal
Igal, j'ai baptisé ton idée de scrolling "Progressive Loading scrolling", et j'en ai parlé au codeur espagnole de Kai Magazine.
Il a dit texto : "It's a very clever idea !"
je te laisse traduire...
Il a dit texto : "It's a very clever idea !"
je te laisse traduire...
igal
Membre non connecté
Conseiller Municipal
Répondre
Vous n'êtes pas autorisé à écrire dans cette catégorie