Re: [yoshimi-user] 0.060-pre0, testies invited

  • From: Jeremy Jongepier <jeremy@xxxxxxxxxxxxxx>
  • To: yoshimi-user@xxxxxxxxxxxxxxxxxxxxx
  • Date: Fri, 08 Oct 2010 19:56:30 +0200

On 10/08/2010 07:42 PM, Jeremy Jongepier wrote:

On 10/08/2010 04:35 PM, cal wrote:
Basically just good old 0.58.1 plus Paul's Unison and Reverb updates, plus
jack session suppport. Lightly tested so far, so expect anything.

<http://www.graggrag.com/yoshimi/yoshimi-0.060-pre0.tar.bz2>

------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3.
Spend less time writing and rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
_______________________________________________
yoshimi-user mailing list
yoshimi-user@xxxxxxxxxxxxxxxxxxxxx
https://lists.sourceforge.net/lists/listinfo/yoshimi-user

Hello cal,

After modifying some source files Yoshimi builds and runs here. I've got
this book lying in front of me 'C++ Without fear' and I'm only at
chapter 2 ;)

Best,

Jeremy

------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3.
Spend less time writing and rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
_______________________________________________
yoshimi-user mailing list
yoshimi-user@xxxxxxxxxxxxxxxxxxxxx
https://lists.sourceforge.net/lists/listinfo/yoshimi-user

I've attached the quick hacks I did.

Best,

Jeremy
diff -Nru yoshimi-0.060-pre0/src/Misc/Config.cpp
test/lucid/yoshimi-0.060-pre0/src/Misc/Config.cpp
--- yoshimi-0.060-pre0/src/Misc/Config.cpp 2010-10-08 18:15:40.000000000
+0200
+++ test/lucid/yoshimi-0.060-pre0/src/Misc/Config.cpp 2010-10-08
19:26:26.000000000 +0200
@@ -539,10 +539,10 @@
}


-bool Config::restoreJsession(SynthEngine *synth)
+/*bool Config::restoreJsession(SynthEngine *synth)
{
return restoreSessionData(synth, jackSessionFile);
-}
+}*/


bool Config::restoreSessionData(SynthEngine *synth, string sessionfile)
@@ -587,7 +587,7 @@
midiDevice = xml->getparstr("midi_device");
nameTag = xml->getparstr("name_tag");
CurrentXMZ = xml->getparstr("current_xmz");
- jackSessionUuid = xml->getparstr("jack_session_uuid");
+ /*jackSessionUuid = xml->getparstr("jack_session_uuid");*/

xml->exitbranch();
return true;
@@ -604,8 +604,8 @@
xml->addparstr("midi_device", midiDevice);
xml->addparstr("name_tag", nameTag);
xml->addparstr("current_xmz", CurrentXMZ);
- if (!jackSessionUuid.empty())
- xml->addparstr("jack_session_uuid", jackSessionUuid);
+ /*if (!jackSessionUuid.empty())
+ xml->addparstr("jack_session_uuid", jackSessionUuid);*/
xml->endbranch();
}

@@ -987,7 +987,7 @@
settings->Log("Restoring state from " + settings->StateFile);
}
break;
- case 'u': settings->setJackSessionFile(arg); break;
+ /*case 'u': settings->setJackSessionFile(arg); break;*/

case ARGP_KEY_ARG:
case ARGP_KEY_END:
diff -Nru yoshimi-0.060-pre0/src/Misc/Config.h
test/lucid/yoshimi-0.060-pre0/src/Misc/Config.h
--- yoshimi-0.060-pre0/src/Misc/Config.h 2010-10-08 18:15:40.000000000
+0200
+++ test/lucid/yoshimi-0.060-pre0/src/Misc/Config.h 2010-10-08
19:37:48.000000000 +0200
@@ -60,7 +60,7 @@
void saveConfig(void);
void saveState(void);
bool restoreState(SynthEngine *synth);
- bool restoreJsession(SynthEngine *synth);
+ /*bool restoreJsession(SynthEngine *synth);*/
string addParamHistory(string file);
string historyFilename(int index);

@@ -149,11 +149,11 @@
static int sigIntActive;
static int ladi1IntActive;
int sse_level;
-#if defined(JACK_SESSION)
+/*#if defined(JACK_SESSION)
void saveJackSessionTemplate() { }
string jackSessionFile;
int jsessionSave;
-#endif
+#endif*/
};

extern Config Runtime;
diff -Nru yoshimi-0.060-pre0/src/Misc/SynthEngine.cpp
test/lucid/yoshimi-0.060-pre0/src/Misc/SynthEngine.cpp
--- yoshimi-0.060-pre0/src/Misc/SynthEngine.cpp 2010-10-08 18:15:40.000000000
+0200
+++ test/lucid/yoshimi-0.060-pre0/src/Misc/SynthEngine.cpp 2010-10-08
19:37:51.000000000 +0200
@@ -175,7 +175,7 @@
}
}
defaults();
- if (Runtime.doRestoreJackSession)
+ /*if (Runtime.doRestoreJackSession)
{
Runtime.doRestoreJackSession = false;
if (!Runtime.restoreJsession(this))
@@ -183,8 +183,8 @@
Runtime.Log("Restore jack session failed");
goto bail_out;
}
- }
- else if (Runtime.doRestoreState)
+ }*/
+ if (Runtime.doRestoreState)
{
if (!Runtime.restoreState(this))
{

Other related posts: