Commit Graph

698 Commits

Author SHA1 Message Date
kevin
f158026c1d cwSfScore.h/cpp : Added 'endEvtIndex' to section_t. Add bar_to_event() and event_index_to_section(). 2023-11-26 15:29:46 -05:00
kevin
8fd00ac353 cwSfAnalysis.h/cpp, Makefile.am : Initial commit. 2023-11-26 15:27:59 -05:00
kevin
3f9f72600c cwPresetSel.h/cpp : Added report_presets(). 2023-11-26 15:27:29 -05:00
kevin
e6c70090fa cwPianoScore.h/cpp : Read dyn/even/tempo/cost from score CSV. 2023-11-26 15:26:17 -05:00
kevin
29dd0af4da cwIoMidiRecordPlay.h/cpp : Add 'msg_arg' argument to event_callback_t. Update am_to_midi_file() to take sess_number,take_number,player_name and prefix_label. 2023-11-26 15:23:36 -05:00
kevin
f3e5c8456b Merge branch 'master' of gitea.larke.org:kevin/libcw 2023-11-25 17:38:34 -05:00
kevin
147c960394 cwPresetSel.cpp : Updates to support translate_frags() 2023-11-25 17:38:21 -05:00
kevin
5201c47d5a cwPerfMeas.h/cpp : create() now includes a parameter record. 2023-11-19 15:56:38 -05:00
kevin
2283140e3a cwIoMidiRecordPlay.cpp : am_to_midi_file() now accepts a list of directories to act on. 2023-11-19 15:55:57 -05:00
kevin
597f1ca504 cwFileSys.cpp : isDir(),isFile(),isLink() now automatically expands the path prior to evaluating it. 2023-11-19 15:54:57 -05:00
kevin
d4d325c413 cwText.h/cpp : Added firstMatchChar(0 and lastMatchChar(). 2023-11-19 15:03:42 -05:00
kevin
f42cb04752 cwIoMidiRecordPlay.cpp : Set take number in meta.cfg. 2023-11-19 15:01:32 -05:00
kevin
7330806913 cwIoMidiRecordPlay.h/cpp : am_to_midi_file() now write a CSV equivalent to
the .mid file and a meta file containing the beg/end loc of the MIDI file.
2023-11-19 14:06:37 -05:00
kevin
4ab72761e7 Merge branch 'master' of gitea.larke.org:kevin/libcw 2023-11-14 07:54:11 -05:00
kevin
831b85af64 cwLog.h/cpp: Debug logging is now level controlled rather than by #define cwLOG_DEBUG.
Added levelFromString() levelToString().
2023-11-14 07:53:43 -05:00
kevin
d499dfac1c cwFile.cpp : Added guard to not write if bufByteCnt is 0. 2023-11-14 07:52:15 -05:00
kevin
ce55c64a3b cwCommon.h : Added kDataCorruptRC. 2023-11-14 07:51:50 -05:00
kevin
513bc82381 cwSfScore.h : Added 'perfCnt` to event_t. 2023-10-21 10:12:15 -04:00
kevin
ccb9b7363f cwScoreParse.cpp : Added _order_set_ids_by_time() in create() 2023-10-21 10:06:29 -04:00
kevin
acd22ff005 cwScoreFollowTest.cpp : Added JSON output from _score_follow_one_perf() 2023-10-21 10:05:14 -04:00
kevin
2b55eb9101 cwPerfMeas.h/cpp : Added write_result_csv() and write_result_json(). 2023-10-21 09:59:45 -04:00
kevin
c305b4b4da cwObject.h/cpp : Added putv() and put_numeric_list(). Changed newDictObject() and newListObject()
from:
{ return  _objAllocate( kDictTId, parent); }
to:
{ return _objAppendRightMostNode(parent,  _objAllocate( kDictTId, parent) ); }
2023-10-21 09:58:51 -04:00
kevin
6938e5a278 cwDynRefTbl.cpp : Fixed bug in _fill_level_lookup_table() where incorrect index was used.
Added missing: release(p->levelLookupA) in _destroy().
2023-10-21 09:54:23 -04:00
kevin
f68e98082c cwIoPresetSelApp.cpp : Changes to support use of cwSfScore. 2023-09-12 20:32:38 -04:00
kevin
86c2d2da1f cwPerfMeas.h/cpp, cwScoreFollowTest.h/cpp, Makefile.am : Initial commit. 2023-09-12 20:30:53 -04:00
kevin
6b9682b8a3 cwSvgMidi.cpp : Changes to support use of perf_score::event_t 2023-09-12 20:29:35 -04:00
kevin
0cb68c6b6b cwPresetSel.h/cpp : Initial partial implementation of translate_frags(). 2023-09-12 20:28:29 -04:00
kevin
f9ac5a8f39 cwPianoScore.h/cpp : Added loc_to_pitch_context() in support of cwPresetSel.translate_frags() 2023-09-12 20:27:56 -04:00
kevin
b951e7a09d cwScoreTest.cpp : Added score_warn_fl and parse_warn_fl. 2023-09-12 20:25:28 -04:00
kevin
0193deb9e2 cwScoreFollower.h/cpp : Changed create() to use args_t record.
Replaced 'match_index_array' with 'result_index_array'.
Moved test() to cwScoreFollowTest.   Removed last parts of libcm dependencies.
Moved Perf. Meas. unit out of callback.
2023-09-12 20:24:50 -04:00
kevin
fb8c99e0c4 cwSfTrack.h/cpp : Added kBacktrackResultsFl and kPrintFl.
Added documentation.  Made the sftrack_str private.
2023-09-12 18:03:51 -04:00
kevin
143c7daa91 cwSfMatch.h/cpp : Updates to better integrate with cwSfScore.
Added loc_to_index().
2023-09-12 17:59:56 -04:00
kevin
16ba4d6a3f cwSfScore.h/cpp : Added initial performance update functionality.
Changed location identifiers to consistently use oLocId and eLocId.
Added many fields to event_t.
2023-09-12 17:56:50 -04:00
kevin
b9f497e1ec cwScoreParse.h/cpp : Converted location variables names to consistently use oLocId and eLocId.
Added: event_t.bpm_rval, use of 'show_warnings_fl', more validity checks.
2023-09-12 17:53:35 -04:00
kevin
7c076fbef1 cwSvgScoreFollow.h/cpp : Now works in terms of cwSfScore and cwSfTrack. 2023-09-12 17:43:15 -04:00
kevin
570e4cfc45 cwVectOps.h : Added std(). 2023-09-12 17:42:30 -04:00
kevin
8c37bbe0f0 cwDynRefTbl.cpp : Added use of levelLookupA[] to convert from MIDI vel. to level. 2023-09-12 17:39:55 -04:00
kevin
cea07592bc cwLog.h/cpp : Added flags(),set_flags(). 2023-09-12 17:38:44 -04:00
kevin
75c6959529 cwMidiFile.h/cpp : Added report_begin_end() 2023-09-12 17:37:30 -04:00
kevin
772521e604 cwPianoScore.h/cpp : Removed uid_to_event() function. 2023-08-20 17:15:59 -04:00
kevin
2d88e689b5 cwDynRefTbl.h/cpp : Initial commit. 2023-08-20 17:14:52 -04:00
kevin
01e6ac208d cwSfTrack.h/cpp : Updates to support call to test() from score_test. Added result_count() and result_base(). 2023-08-20 17:14:25 -04:00
kevin
f27124a09a cwSfMatch.h/cpp : Updates to support call to test() from score_test. 2023-08-20 17:12:58 -04:00
kevin
722c845187 cwScore.h,cpp : Updates to base object on score_parse. 2023-08-20 17:11:53 -04:00
kevin
1572e23910 cwScoreParse,cwScoreTest,Makefile : Iniital commit. 2023-08-20 17:10:45 -04:00
kevin
5e3130503d cwSfMatch.h/cpp, cwSfTrack.h/cpp, Makefile.am : Initial commit. 2023-08-05 12:35:29 -04:00
kevin
e1d84b2861 cwSfScore.h/cpp : Added event(),loc_count(),loc() and parse_dyn_ref_cfg(). Remove functions that are now implemented in sfMatch. 2023-08-05 12:34:46 -04:00
kevin
86909a05a8 cwSfScoreParer.h/cpp : Impolement set_count() and set_list(), Changes to report() 2023-08-05 12:32:53 -04:00
kevin
06a8a8ec88 Merge branch 'master' of gitea.larke.org:kevin/libcw 2023-07-25 20:24:39 -04:00
kevin
3fa4acceee cwSfScore.h/cpp, cwSfScoreParser.h/cpp, Makefile.am : Initial commmit. 2023-07-25 20:24:03 -04:00