trouble with parameters

I am writing a program that will take command-line arguments and convert them to morse code.
What I want to do is, instead of having each case of the switch statement generate the sequence of beeps, having one function that I'll just pass the array of characters with the morse code to. This function will generate the beep sequence. I cannot seem to successfully accomplish this. I keep getting errors whenever I try to pass the array to the beep_sequence function. Can anyone help me out?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#include <iostream>
#include <windows.h>
#include <string>

using namespace std;

const int PAUSE_DURATION = 80; 
const int FREQUENCY = 300;
const int BEEP_DOT = 80;
const int BEEP_DASH = 300;

const string morse_code_alphabet[] = 
{ 
	".-", //A
	"-...", //B
	"-.-.", //C
	"-..", //D
	".", //E
	"..-.",//F
	"--.", //G
	"....", //H
	"..",//I 
	".---",//J
	"-.-",//K
	".-..",//L
	"--", //M
	"-.",//N
	"---",//O
	".--.",//P
	"--.-",//Q
	".-.",//R
	"...",//S
	"-",//T
	"..-",//U
	"...-",//V
	".--",//W
	"-..-",//X
	"-.--",//Y
	"--.." //Z
};

/*
int beep_sequence( char* a_code )
{	
	int idx;
	for ( idx = 0; idx < 3; ++idx ) 
	{
		if ( a_code[ idx ] == '.')
		{
			Beep( FREQUENCY, BEEP_DOT );
		}
		else
		{
			Beep( FREQUENCY, BEEP_DASH );
		}
	}
return 0;
}*/

void process_one_word( char* pchar )
{										 
	int idx;
	while ( *pchar ) 
	{	
		switch( *pchar )
		{
		case 'a':
			{

				char a_code[] = { '.', '-' };
				for ( idx = 0; idx < 2; ++idx ) 
				{
					if ( a_code[ idx ] == '.')
					{
						Beep( FREQUENCY, BEEP_DOT );
					}
					else
					{
						Beep( FREQUENCY, BEEP_DASH );
					}
					cout << a_code[ idx ];
				}
				break;
			}
		case 'b':
			{
				char b_code[] = { '-', '.', '.', '.' };
				for ( idx = 0; idx < 4; ++idx ) 
				{
					if ( b_code[ idx ] == '.')
					{
						Beep( FREQUENCY, BEEP_DOT );
					}
					else
					{
						Beep( FREQUENCY, BEEP_DASH );
					}
				}
				cout << morse_code_alphabet[ 1 ];
				break;
			}
		case 'c':
			{
				char c_code[] = { '-', '.', '-', '.' };
				for ( idx = 0; idx < 4; ++idx ) 
				{
					if ( c_code[ idx ] == '.')
					{
						Beep( FREQUENCY, BEEP_DOT );
					}
					else
					{
						Beep( FREQUENCY, BEEP_DASH );
					}
				}
				cout << morse_code_alphabet[ 2 ];
				break;
			}
		}
		cout << ' ';
		// let's process one character: 
		//cout << *pchar << ' ';
		//int duration = calculate_duration( *pchar );   // calculate_duration(...)
		//Beep( frequency, duration );
		++pchar;
	}
	Sleep( PAUSE_DURATION );
}

int main( int argc, char* argv[] )
{    
	int idx;
	for ( idx = 1; idx < argc; ++idx ) 
	{
		process_one_word( argv[ idx ] );
	}
	return 0;
}
Last edited on
Stupid forum just went off line.
Thought it would take too many questions and answers - so I just fiddled with your code a bit:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#include <iostream>
#include <windows.h>
#include <string>
using namespace std;

const int PAUSE_DURATION = 80; 
const int FREQUENCY = 300;
const int BEEP_DOT = 80;
const int BEEP_DASH = 300;

const string morse_code_alpha[ ] = 
{ 
    ".-", //A
    "-...", //B
    "-.-.", //C
    "-..", //D
    ".", //E
    "..-.",//F
    "--.", //G
    "....", //H
    "..",//I 
    ".---",//J
    "-.-",//K
    ".-..",//L
    "--", //M
    "-.",//N
    "---",//O
    ".--.",//P
    "--.-",//Q
    ".-.",//R
    "...",//S
    "-",//T
    "..-",//U
    "...-",//V
    ".--",//W
    "-..-",//X
    "-.--",//Y
    "--.." //Z
};

const string morse_code_numeric[ ] = 
{
    "-----",//0
    ".----",//1
    "..---",//2
    "...--",//3
    "....-",//4
    ".....",//4
    "-....",//6
    "--...",//7
    "---..",//0
    "----.",//9 
};


void beep_sequence(string letter)
{	
	int idx;
	for ( idx = 0; idx < letter.length(); ++idx ) 
	{
		if ( letter[ idx ] == '.')
		{
			Beep( FREQUENCY, BEEP_DOT );
		}
		else
		{
			Beep( FREQUENCY, BEEP_DASH );
		}
	}
}

void process_one_word( char* pchar )
{
	while ( *pchar ) 
	{	
		
        if(isalpha(*pchar) )
        {
            beep_sequence( morse_code_alpha [toupper (*pchar) - 'A'] );
        }
        else if (isdigit(*pchar))
        {
           beep_sequence( morse_code_numeric [ *pchar - '0' ] );
        }
        
        cout << *pchar;
        
		++pchar;
	}
	Sleep( PAUSE_DURATION );
}

int main( int argc, char* argv[] )
{    
	int idx;
	for ( idx = 1; idx < argc; ++idx ) 
	{
		cout << endl;
        process_one_word( argv[ idx ] );
	}
	return 0;
}

|
Thanks, but I'd prefer getting help with individual questions. This is my final project. I am looking at your code though.
Last edited on
Topic archived. No new replies allowed.