xxxxxxxxxx
64
var typo;
// ajouter les phrases dans un tableau
var phrases = ["Yo, listen up, here's the story .", "About a guy that lived in a blue world in Russia long ago.", "He was big and strong, in his eyes a flaming glow.", "And all day and all night and everything he sees is just blue like him inside and outside.", "Most people looked at him with terror and with fear but to Moscow chicks he was such a lovely dear.", "Blue his house with a blue little window and a blue Corvette and everything is blue for him and himself and everybody around cause he ain't got nobody to listen.", " İ'm Blue – da ba dee da ba dee, da ba dee da ba dee.", "declared his enemies.", "But the ladies begged.", "Don't you try to do it, please.", "Ra, Ra, Rasputin.","Lover of the Russian Queen.", "They put some poison into his wine.", "He drank it all and he said.", "I have a blue house with a blue window, blue is the color of all that I wear, blue are the streets and all the trees are too, I have a girlfriend and she is so blue.", "Ra, Ra, Rasputin.", "Russia's greatest love machine.", "And so they shot him till he was dead.", "No doubt this Rasputin had lots of hidden charms.", "hey, hey, hey, hey, hey, hey, hey."];
function preload (){
typo = loadFont ('Tox Typewriter.ttf')
}
function setup() {
createCanvas(500, 500);
background(255, 100, 0);
textSize(16);
textFont ('typo');
text("cliquez pour générer un texte", 5, 50);
text("RA RA RA", random(600), random (600));
}
function draw() {
//couleur du petit texte ou mot
fill(200, 150, 100)
// ecrire du code dans la fonction draw qui va s'executer 25 fois par second
//random(minimum, maximum) permet de genneder un numbre aleatoire entre un minimum et maximum
textSize(50);
}
// créer la fonction qui va générer du texte
function generateText(){
// remplir le fond en couleur ou en blanc pour supprimer le texte précédent
background(137, 0, 255);
// changer la taille du texte aléatoirement
textSize(random(12, 20));
// changer l'ordre des phrases dans le tableau de manière aléatoire
var randomize = shuffle(phrases);
// remettre un espace entre chaque mot
var separator = ' ';
// réassembler le tableau en un seul texte. Phrases bout à bout séparés par des espaces
var message = join(randomize, separator);
// afficher le texte
text(message, 5, 50, 400, 400);
}
// au clique de la souris, lancer la fonction de génération du texte
function mousePressed(){
generateText();
}
// fonction qui s'exécute quand une touche est relâché
function keyReleased() {
// appuyer sur "s" permet d'enregistrer l'image
if (key == 's' || key == 'S') {
saveCanvas(year()+month()+day()+'-'+hour()+ minute() + second() +'_combiner-phrases'+ '.jpg');
}
}