exitnow

exitnow — Quitte Csound aussi vite que possible, sans nettoyage.

Description

Dans Csound4 cela appelle une fonction de sortie pour quitter Csound aussi vite que possible. A partir de Csound5, on revient au code appelant.

Syntaxe

exitnow [ivalue]

Initialisation

Arrête Csound lors du cycle d'initialisation et retourne ivalue qui vaut zéro par défaut. A noter qu'il est habituel de trouver cet opcode seul dans un instrument.

Exemples

Voici un exemple de l'opcode exitnow. Il utilise le fichier exitnow.csd.

Exemple 275. Exemple de l'opcode exitnow.

Voir les sections Audio en Temps Réel et Options de la Ligne de Commande pour plus d'information sur l'utilisation des options de la ligne de commande.

<CsoundSynthesizer>
<CsOptions>
; Select audio/midi flags here according to platform
-odac     ;;;realtime audio out
; For Non-realtime ouput leave only the line below:
; -o exitnow.wav -W ;;; for file output any platform
</CsOptions>
<CsInstruments>

sr = 44100
ksmps = 32
nchnls = 2
0dbfs = 1

; plays a sine wav, forces a stop after 2 seconds
instr 1
	; generate a line from 0 to 1 over 2 seconds
	kStop line 0, 2, 1

	; launch instrument 2 once kStop signal is greater than 1
	if(kStop>=1) then
		schedulek 2, 0, 1
	endif

	; print kStop signal every .1 seconds
	printk .1, kStop

	; make some noise
	aSig oscil 1, 440
	outs aSig, aSig
endin

; forces an instant exit of csound
instr 2
	exitnow
endin

</CsInstruments>
<CsScore>
; play oscil instrument infinitely
i 1 0 z
</CsScore>
</CsoundSynthesizer>