electro-music.com   Dedicated to experimental electro-acoustic
and electronic music
 
    Front Page  |  Radio
 |  Media  |  Forum  |  Wiki  |  Links
Forum with support of Syndicator RSS
 FAQFAQ   CalendarCalendar   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   LinksLinks
 RegisterRegister   ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in  Chat RoomChat Room 
 Forum index » DIY Hardware and Software » ChucK programming language
ChucK 1.4.1.0 released
Post new topic   Reply to topic Moderators: Kassen
Page 1 of 1 [3 Posts]
View unread posts
View new posts in the last week
Mark the topic unread :: View previous topic :: View next topic
Author Message
Acoustic Interloper



Joined: Jul 07, 2007
Posts: 2073
Location: Berks County, PA
Audio files: 89

PostPosted: Fri Jul 09, 2021 2:49 pm    Post subject: ChucK 1.4.1.0 released
Subject description: ChucK 1.4.1.0 released
Reply with quote  Mark this post and the followings unread

Ge announced this on June 25, 2021 on FB.

http://chuck.stanford.edu/

_________________
When the stream is deep
my wild little dog frolics,
when shallow, she drinks.
Back to top
View user's profile Send private message Visit poster's website
Acoustic Interloper



Joined: Jul 07, 2007
Posts: 2073
Location: Berks County, PA
Audio files: 89

PostPosted: Tue Jul 13, 2021 9:29 am    Post subject:
Subject description: Ge Wang's FB post from June 25
Reply with quote  Mark this post and the followings unread

Ge Wang's FB post from June 25:

New ChucK (1.4.1.0) release!
http://chuck.stanford.edu/
What's new:
http://chuck.stanford.edu/release/VERSIONS
(significant update! new bug fixes, new features, new bugs!)
Brand new examples that demonstrate just a few 1.4.1.0 features:
http://chuck.stanford.edu/doc/examples/help.ck
http://chuck.stanford.edu/doc/examples/stk/frenchrn-algo2.ck
http://chuck.stanford.edu/.../stk/hevymetl-acoustic-algo3.ck
http://chuck.stanford.edu/.../stk/hevymetl-trumpet-algo3.ck
http://chuck.stanford.edu/.../exa.../stk/honkeytonk-algo1.ck
http://chuck.stanford.edu/doc/examples/stk/krstlchr-algo7.ck
http://chuck.stanford.edu/doc/examples/stk/rhodey-song.ck
Happy ChucKing!

_________________
When the stream is deep
my wild little dog frolics,
when shallow, she drinks.
Back to top
View user's profile Send private message Visit poster's website
Acoustic Interloper



Joined: Jul 07, 2007
Posts: 2073
Location: Berks County, PA
Audio files: 89

PostPosted: Tue Jul 13, 2021 9:31 am    Post subject:
Subject description: from ChucK maillist
Reply with quote  Mark this post and the followings unread

Ge's email to the ChucK maillist June 25:

Dear all,

chuck-1.4.1.0 (numchucks) is available:

http://chuck.stanford.edu/
http://chuck.cs.princeton.edu/

This is a significant update to ChucK that addresses many issues while
adding new features, UGens, examples, and internal groundwork for future
directions. We heartily recommend updating to this latest version. The
release notes are reproduced below and can be found at this URL:

http://chuck.stanford.edu/release/VERSIONS

Thank you and keep on chuckin'...

Perry, Spencer, Ge and ChucK Team


-------
1.4.1.0

(NOTE) chuck-1.4.1.0 is the first significant release resulting from a
coordinated team effort to update and improve ChucK for teaching and
research. In April 2021, Perry and Ge led a ChucK "Global
Repair-a-thon", which identified issues and put forth a new Development
Roadmap. The ChucK dev team will follow this roadmap for updates, new
features, and new ChucK mediums (e.g., Chunity, WebChucK, FaucK,
ChucKTrip, and more). Many people were involved in this significant
release, including Jack Atherton, Mike Mulshine, Matt Wright, Rebecca
Fiebrink, Dan Trueman, Lloyd May, Mark Cerqueira, Mario Buoninfante,
Perry Cook, Spencer Salazar, and Ge Wang. Many thanks to everyone who
contributed. Happy ChucKing!
---
- (added) static Object.help();
All ChucK objects (i.e., all non-primitive types) can now invoke
.help(), which will dynamically generate and print to console
the description and inheritance hierarchy of the underlying type,
as well as the available functions at runtime. This can be called
on any object instance or on any class (without an instance):
// any object instance
SinOsc foo;
// print to console info about its underlying type
foo.help();
(OR)
// call help() from any class (identical output as above)
SinOsc.help();
Intended to be a quick runtime reference / learning tool!
- (added) examples/help.ck -- show .help() in action
- (added) examples/deep/chant.ck (by Perry Cook, 2006) -- a chant
singing synthesizer that makes use of ChucK's strongly-time and
concurrent programming features.
- (added) new Multi-channel LiSa UGens! (LiSa10 was already present)
LiSa2 (stereo)
LiSa4 (quad),
LiSa6 (6-channel; laptop orchestra edition!)
LiSa8 (8-channel),
LiSa16 (16-channel)
- (fixed) LiSa playback bug; voice panning now handles the mono case;
previously was silencing voice playback
- (added) new STK set/get access functions in FM:
float op4Feedback( float value );
Set operator 4 feedback.
float op4Feedback();
Get operator 4 feedback.
float opADSR( int opNum, float a, float d, float s, float r );
Set operator ADSR: attack, decay, sustain, release.
float opAM( int opNum, float value );
Set operator amplitude modulation.
float opAM( int opNum );
Get operator amplitude modulation.
float opGain( int opNum, float value );
Set operator gain.
float opGain( int opNum );
Get gperator gain.
float opRatio( int opNum, float ratio );
Set operator frequency ratio.
float opRatio( int opNum );
Get operator frequency ratio.
float opWave( int opNum, int wave );
Set operator waveform [1-8].
- (added) new Synthesis Toolkit (STK) FM instruments from Perry!
HnkyTonk: STK-style Honkey Tonk Piano FM synthesis instrument.
(aka, Algorithm 1 of the Yamaha TX81Z DX11 FM synthesizer)
FrencHrn: STK-style French Horn FM synthesis instrument.
(aka, Algorithm 2 of the Yamaha TX81Z DX11 FM synthesizer)
KrstlChr: STK-style "Crystal Choir" FM synthesis instrument.
(aka, Algorithm 7 of the Yamaha TX81Z DX11 FM synthesizer)
*** for each of these, try using the new .help() to examine its
documentation and interface; e.g., HnkyTonk.help(); ***
- (added) new Moog function:
float filterStartFreq( float freq );
Set filter starting frequency.
float filterStartFreq();
Get filter starting frequency.
- (added) new STK examples:
examples/stk/frenchrn-algo2.ck -- FM French Horn demo
examples/stk/honkeytonk-algo1.ck -- fun with FM Honkey Tonk
examples/stk/krstlchr-algo7.ck -- heavenly FM Kristal Choir
examples/stk/hevymetl-acoustic-algo3.ck -- FM HevyMetl
=> Nylon Guitar
examples/stk/hevymetl-trumpet-algo3.ck -- FM HevyMetl => Trumpet
examples/stk/rhodey-song.ck -- a lovely little number
- (updated) tweaks to a number of STK UGens, which may result in audio
changes; the affected UGens are:
BandedWG, BeeThree, FMVoices, HevyMetl, PercFlut, Rhodey,
TubeBell, Wurley
- (fixed) issue in PluckTwo in computing delay length; this affects
the tuning of various plucked string models, including Mandolin.
- (added) .frames() for SndBuf and SndBuf2; returns the number of
sample frames in the loaded sound file. This is identical in
behavior to .samples() -- but for stereo+, .frames() is
semantically more accurate than .samples().
- (added) "global" declarations for int, float, string, Object, UGen,
Event; this can be used in-language across ChucK files (each file
must first "declare" the global value before using it). This also
support usage from external hosts such as Chunity. (thanks to Jack
Atherton for this work!)
- (added) constant power panning (as controlled by the .pan parameter)
for all UGen_Stereo--including Pan2, stereo dac, stereo adc; this is
controllable using the new .panType parameter. By default, constant
power panning is NOT enabled for dac and adc, whose panning behavior
is unchanged (panType==0) and favors a kind of unity-gain-preserving
but perceptually suspect panning scheme. By contrast, Pan2 will
default
to use constant power panning (panType==1). This change will alter
the effect of any existing code that uses Pan2. Specifically, it
will introduce a ~3 dB reduction in the output Pan2 (it is possible
to restore the previous behavior by explicitly setting .panType to
0). This ~3 dB reduction corresponds to the equal-powered amplitude
value when pan is at center (pan=0). Mathematically, the reduction
amount can be calculated using Std.lintodb(Math.cos(pi/4))
(To hear this new behavior, check out):
examples/stereo/stereo_noise.ck
- (BEHAVIOR CHANGED) clearly separated array.size() and
array.capacity(); for historical/compatibility reasons, array.cap()
is the same as array.size() and generally should be avoided in favor
of either .size() or .capacity()
- (BEHAVIOR CHANGED): internally, all ChucK static functions are now
passed an extra parameter (Chuck_Type * TYPE) as a pointer to the
base type/class. This will affect Chugins, which should be updated/
rebuilt with the latest headers.
- (BEHAVIOR CHANGED): when connecting two multi-channel UGen's (both
are at least stereo), say LHS => RHS, if LHS channels < RHS
channels, the channels will be connected one-by-one up to the LHS
channel count; previously, the LHS channels will be automatically
repeated to connect to the RHS channels that have no corresponding
LHS channels. This behavior can still be achieved by manually
connecting the individual channels of LHS and and RHS through
LHS.chan(n) and RHS.chan(n).
- (fixed) resolved a bug with SndBuf not playing when .rate < 0 and
while .pos beyond the end
- (fixed) resolved a bug with SndBuf where it could output DC when
.rate <0> (new) Chugraph;
Chubgraph will continue to function, with a deprecation warning.
- (documentation) updated embedded documentation text for all
statically linked UGens and libraries.
- (documentation) brought examples in alignment between distribution
and the online examples collection; many examples updated for
clarity and utility
http://chuck.stanford.edu/doc/examples
http://chuck.cs.princeton.edu/doc/examples
- (internal/refactor) the "Mega Merge 2021" integrates a long-standing
branch since REFACTOR-2017 that includes support for globals and was
the basis for Chunity. Future Chunity releases will align with
mainline ChucK language features. (thanks to Jack Atherton for
several years of laying the groundwork and for ChucK in Chunity!)
- (internal/developement) added m_started flag to the ChucK class to
avoid a strange (but mostly harmless) condition when the virtual
machine is shutting down and ChucK::run() attempt to call
ChucK::start()
- (internal/development) Thanks to Mark Cerqueira -- migrated from old
Travis CI (continuous integration testing) to GHA (GitHub Actions).

_________________
When the stream is deep
my wild little dog frolics,
when shallow, she drinks.
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic Moderators: Kassen
Page 1 of 1 [3 Posts]
View unread posts
View new posts in the last week
Mark the topic unread :: View previous topic :: View next topic
 Forum index » DIY Hardware and Software » ChucK programming language
Jump to:  

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Forum with support of Syndicator RSS
Powered by phpBB © 2001, 2005 phpBB Group
Copyright © 2003 through 2009 by electro-music.com - Conditions Of Use