Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Pete's Dumb Idea of the Day!
#11
(10-21-2024, 10:15 PM)TempodiBasic Wrote:
(10-21-2024, 07:53 PM)Pete Wrote: Wouldn't it be nice to have this feature for Data Restore?

On x Restore data1, data2, data3

instead of needing to code...

Select Case x
Case 1: Restore data1
Case 2: Restore data2
Case 3: Restore data3
End Select
Hi Pete
what do you think about this alternative solution?

Code: (Select All)

Rem  demo Restore : On x Restore idea

For x = 1 To 4
    On x GOSUB data1, data2, data3, data4
    Read number, nam$, Order$
    Print number, nam$, Order$
Next
I prefer something like TempodiBasic's solution to Pete's because it avoids one thing: adding "proprietary" extensions to the language. (I offer a simple alternative solution later in this posting.) Yes, I know QB64PE is open source, but I'm using it in a more classic sense: when one compiler/interpreter adds new features to the language, new keywords, new operators, etc. This now means that programs using that dialect of the language can't port it to a different compiler. Which can defeat the whole purpose of using a standard language. Which can lead to other issues. I have a bit of a long story to explain why it's not a good idea.

Up until the late 1980s or possibly the 1990s, what was the most popular programming language in the world? I would say, hands down, no question, it was COBOL. Since up until the early 1980s there were no microcomputers other than ones intended for hobbyists, experimenters and home use. Business use was very rare. So what businesses had, were minicomputers and mainframes. And what programming language was available on all of them, in essentially the same dialect? That's right, COBOL.

The reason being was in the mid 1950s, the U.S. Department of Defense (DOD) was sick and tired of having thousands of computers using dozens or hundreds of programming languages, and wanted one it could standardize on. So, in 1959, a committee was formed to develop one, led by Dr. Grace Hopper. Hopper, who then was a lieutenant in the U.S. Navy, aggressively pushed for the development of a standardized language that ordinary people could use, and would make business sense for use by civilian businesses. This became COBOL. Now, effectively every major computer manufacturer was involved in this, but for new ones, how to get them to offer the language? Very simple. The DOD announced that they would not buy any new computer unless it had a COBOL compiler.

Now, everybody having a COBOL compiler was fine for the government, for the manufacturer, how do you distinguish your computer from everyone else's? Well, add new features and add proprietary enhancements to the COBOL compiler to take advantage of them. Well, this means programs again are being made non-transportable to other company's machines, so then the DOD promulgated a new rule: to be able to sell to them, your COBOL compiler had to be able to process ANSI Standard Cobol, and while you could still offer proprietary extensions, there had to be a compile-time switch to tell the compiler to accept programs that only used the standard language, and flag non-standard usage.

So even 60+ years ago it was understood that adding special features makes it difficult to move programs elsewhere. Please do not fall for the siren song of adding "just to be nice" features when existing ones will do the job.

And now, as I mentioned earlier, my suggestion on a solution:

Code: (Select All)

Rem  demo Restore : On x Restore idea

For x = 1 To 4
   select case x
      case 1: restore data1
      case 2: restore data2
      case 3: restore data3
      case 4: restore data4
   end select
   Read number, nam$, Order$
    Print number, nam$, Order$
Next
Maybe I'm different, but I think it's simpler to understand, easier to implement, and keeps everything happening together in one place.
While 1
   Fix Bugs
   report all bugs fixed
   receive bug report
end while
Reply
#12
Why not just make this the simplest thing in the world?  Just read it into a set of arrays and forget about it.

Code: (Select All)
Data 1,one,the first
Data 2,two,the second
Data 3,three,the third
Data 4,four,the forth

Dim number(1 To 4), nam(1 To 4) As String, order(1 To 4) As String

For i = 1 To 4
    Read number(i), nam(i), order(i)
Next

For x = 1 To 4
    Print number(x), nam(x), order(x)
Next

There's no need to ON x RESTORE label1, label2, label3, label4.  You read that data into your array, stored it there, and now it's indexed via that array.

Doesn't get any simpler than that.  Smile
Reply
#13
(10-23-2024, 01:01 AM)Pete Wrote: Well with Select Case you would use...

Code: (Select All)
 
Rem  demo Restore : On x Restore idea    vs Select Case
For x = 1 To 4
     Select Case x
        Case 1
            Restore data1
        Case 2
            Restore data2
        Case 3
            Restore data3
        Case 4
            Restore data4
    End Select
    Print "----------------------------------------------"
    Read number, nam$, Order$
    Print number, nam$, Order$
Next
End
data1:
Data 1,one,the first
data2:
Data 2,two,the second
data3:
Data 3,three,the third
data4:
Data 4,four,the forth

Pete

Yes Pete you're right
please pay attention to the fact that the FOR loop starts with a value 0 that hasn't been managed by Select case and it triggers a runtime error, while in the complex and tortuose way of ON x GOSUB ... RESTORE /RETURN  it goes on.
In other words, 0 has been used to simulate an unpredictable value of X. Using Select case you must sure that X takes always a predictable value. Using the tortuose way you can avoid this task of predictable value.

All the good and clever ways posted here need to know how many data field are in the code and must sure that it would be used the range of that value in the code.
Please pay attention: 
the tortuose way is not better than the others, but it is nearer old fashion way of coding when DATA was a new great opportunity to bring informations into code.
And in my mind DATA is a good resource of the past.

It's fun and useful getting infos and experiences of professional coders.
Reply
#14
I'm glad to see Steve's apple crop is coming in nicely, but out out here in CA working with oranges!

For some of my apps I use arrays, for some databases, and for some I use data statements. I mentioned apples and oranges because I was using data1, data2, and data3 as labels. Steve is using three data statements followed by numbers.

TDarcos posted what I posted on the previous page, the Select Case method to use Restore.

So basically for user input routines, we can have...

Code: (Select All)

Print "Who do you wish to consult?"
Do
    Input "1) for Pete, 2) for Steve, or 3) for Past Presidents"; x
    Print
    ' So while we can't do this, so far, in QB64:  On x Restore data1, data2, data3
    ' We can do this with Select Case...
    Select Case x
        Case 0: End
        Case 1: Restore data1
        Case 2: Restore data2
        Case 3: Restore data3
        Case Else: Run
    End Select
    Do
        Read Consultant$, blurb$
        If Consultant$ = "eof" Then Exit Do
        Print Consultant$; ": "; blurb$
    Loop
    Print
Loop
data1:
Data Pete,Likes On x Restore
Data Pete,Likes stirring the pot even more!
Data eof,
data2:
Data Steve,Likes using arrays.
Data Steve,Has his own ass but prefers to ride Pete's.
Data eof,
data3:
Data President Trump,More jobs!
Data President Obama,No jobs!
Data President Clinton,Blow jobs!
Data President Biden,Nut jobs!
Data eof,

Pete
Reply
#15
Here's an example of how I like loading my data:

Code: (Select All)
Sub loadData (DataName As String, DataArray() As String)
    '$Include:'EDI_Data.BI'
    Dim As Unsigned Long i, lowerbound
    lowerbound = LBound(DataArray)
    i = lowerbound
    Dim As String EDI
    Select Case UCase$(DataName)
        Case "SEPARATORS"
            Restore Separators
        Case "HEADER"
            Restore Header
        Case "TRAILER"
            Restore Trailer
        Case "DETAILSEGMENTS"
            Restore DetailSegments
        Case "LOOPS"
            Restore Loops
        Case "DOCUMENTS"
            Restore Documents
        Case "VERSIONS"
            Restore Versions
        Case "DOCUMENTTYPES"
            Restore DocumentTypes
    End Select

    Read EDI
    While EDI <> "EOD"
        ReDim Preserve DataArray(lowerbound To UBound(DataArray) + 1)
        DataArray(i) = EDI
        i = i + 1
        Read EDI
    Wend
    ReDim Preserve DataArray(UBound(DataArray) - 1)
End Sub

Code: (Select All)
Function isKnownDoc%% (DocType As String)
    ReDim As String Docs(0)
    loadData "Documents", Docs()
    Dim As Long i
    For i = LBound(Docs) To UBound(Docs)
        If Docs(i) = DocType Then
            isKnownDoc = -1
            Exit Function
        End If
    Next
End Function

Function isKnownVersion%% (Version As String)
    ReDim As String Versions(0)
    loadData "Versions", Versions()
    Dim As Long i
    For i = LBound(Versions) To UBound(Versions)
        If Versions(i) = Version Then
            isKnownVersion = -1
            Exit Function
        End If
    Next
End Function

Function docFriendlyName$ (DocType As String)
    ReDim As String DocumentTypes(0)
    loadData "DocumentTypes", DocumentTypes()
    Dim As Long i
    For i = LBound(DocumentTypes) To UBound(DocumentTypes)
        If Left$(DocumentTypes(i), 3) = DocType Then
            docFriendlyName = Mid$(DocumentTypes(i), 5)
            Exit Function
        End If
    Next
End Function


Attached Files
.bi   EDI_Data.BI (Size: 29.52 KB / Downloads: 6)
Tread on those who tread on you

Reply
#16
(10-23-2024, 11:19 AM)SpriggsySpriggs Wrote:     Select Case UCase$(DataName)
        Case "SEPARATORS"
            Restore Separators
        Case "HEADER"
            Restore Header
        Case "TRAILER"
            Restore Trailer
        Case "DETAILSEGMENTS"
            Restore DetailSegments
        Case "LOOPS"
            Restore Loops
        Case "DOCUMENTS"
            Restore Documents
        Case "VERSIONS"
            Restore Versions
        Case "DOCUMENTTYPES"
            Restore DocumentTypes
    End Select

Just because it helps me with focus/distraction and managing challenges with cognitive overload and overstimulation, I added this kind of ability to BAM:

Code: (Select All)
Restore Eval( UCase$(DataName) )

"Eval" not being a function, but just a keyword to let the implementation of "Restore" know that what is coming is not a line labels.
Reply
#17
I've loaded data into arrays using pretty much the same method as Spriggsy, so +1 for posting the example.

I thought about posting what Charlie just implemented, because it does cover using Restore with strings, however it won't substitute for an On Restore statement. Still, a nice implementation of string variables to decide what data label to restore. + 1

Fun discussion,

Pete
Shoot first and shoot people who ask questions, later.
Reply
#18
(10-23-2024, 05:37 PM)Pete Wrote: I've loaded data into arrays using pretty much the same method as Spriggsy, so +1 for posting the example.
I thought about posting what Charlie just implemented, because it does cover using Restore with strings, however it won't substitute for an On Restore statement. Still, a nice implementation of string variables to decide what data label to restore. + 1
Fun discussion,
Pete

Well, that EVAL clause accepts numbers too, so happy with numbers for line numbers instead of strings for labels.

The main reason for EVAL was to not be tied to an index (i.e. 1, 2, 3 etc.) when an index is a pain in the rear.
So I could have a GOTO/GOSUB/RESTORE that will Branch to, say, a concatenation of x,y coordinates.

Code: (Select All)
branchline$ = 'x' + STR$( POINT(0) ) + 'y' + STR$( ( POINT(1) )

IF LABELEXISTS( branchline$ ) THEN GOSUB EVAL ( branchline$ )

Definitely not "standard" BASIC, but I'm building a BASIC I wish had been there for me right out of the gate.  Easy to do when one is one's own one-person standards committee?  Oh sure, I can have some pretty wicked arguments with myself ...
Reply
#19
I never win arguments with myself... So I've learned to accept my own advice! Big Grin 

Pete
Shoot first and shoot people who ask questions, later.
Reply




Users browsing this thread: 1 Guest(s)