Hi,
There are a lot of legacy libraries around, but it's difficult to search through each one, and find out the kinds of functions I'm looking for.
I'm looking for simple functions like
GetCurrentLocation() - returns an array with Current Column and Current Row position
PrintAt_RowY_ColumnX_WithColor( Y, X, Color ) - Self-explanatory, but also saves the current cursor location and LOCATES it back after the call.
GetCurrentBackGroundColor()
, stuff like that, just for Text Mode Screen 0.
I know how to code all these things in principle, but was looking for a basic library that already covers this functionality robustly.
Also, I'd like to write up some Functional modules for QB. I'm nearly certain it's not available yet, but would like to do
QBArray_Map( fn, SourceArray ) -> TargetArray
QBArray_Reduce( fn, SourceArray ) -> FinalResult
, at the least. If there's already something like that, can you let me know, so as to avoid reinventing the wheel?