aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs
blob: 1a82f2febf11ceb2a416e0a8955a7360bfa5cadb (plain)
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;

namespace LSL2CS.Converter
{
    public class LSL2CSConverter
    {
        //private Regex rnw = new Regex(@"[a-zA-Z0-9_\-]", RegexOptions.Compiled);
        private Dictionary<string, string> DataTypes = new Dictionary<string, string>();
        private Dictionary<string, string> QUOTES = new Dictionary<string, string>();
        
        public LSL2CSConverter()
        {
            DataTypes.Add("void", "void");
            DataTypes.Add("integer", "int");
            DataTypes.Add("float", "float");
            DataTypes.Add("string", "string");
            DataTypes.Add("key", "string");
            DataTypes.Add("vector", "vector");
            DataTypes.Add("rotation", "rotation");
            DataTypes.Add("list", "list");
            DataTypes.Add("null", "null");
        }



        public string Convert(string Script)
        {
            string Return = "";
            QUOTES.Clear();


            //
            // Prepare script for processing
            //

            // Here we will remove those linebreaks that are allowed in so many languages.
            // One hard-ass regex should do the job.

            // Then we will add some linebreaks.
            Script = Regex.Replace(Script, @"\r\n", "\n");
            Script = Regex.Replace(Script, @"\n", "\r\n");
            //Script = Regex.Replace(Script, @"\n\s*{", @"{");
            //Script = Regex.Replace(Script, @"[\r\n]", @"");

            // Then we remove unwanted linebreaks            


            ////
            //// Split up script to process line by line
            ////
            //int count = 0;
            //string line;
            //Regex r = new Regex("\r?\n", RegexOptions.Multiline | RegexOptions.Compiled);
            //string[] lines = r.Split(Script);

            //for (int i = 0; i < lines.Length; i++)
            //{
            //    // Remove space in front and back
            //    line = lines[i].Trim();
            //    count++;
            //    Return += count + ". " + translate(line) + "\r\n";
            //}

            int level = 0;
            bool Level0Set = false;
            bool Level1Set = false;


            // QUOTE REPLACEMENT
            //char[] SA = Script.ToCharArray();
            string _Script = "";
            string C;
            bool in_quote = false;
            bool quote_replaced = false;
            string quote_replacement_string = "Q_U_O_T_E_REPLACEMENT_";
            string quote = "";
            int quote_replaced_count = 0;
            for (int p = 0; p < Script.Length; p++)
            {

                while (true) {
                    C = Script.Substring(p,1);
                    if (C == "\"") {
                        // Toggle inside/outside quote
                        in_quote = ! in_quote;
                        if(in_quote) {
                            quote_replaced_count++;
                        } else {
                            // We just left a quote
                            QUOTES.Add(quote_replacement_string + quote_replaced_count.ToString().PadLeft(5, "0".ToCharArray()[0]), quote);
                            quote = "";
                        }
                        break;
                    }
                    if (!in_quote) {
                        // We are not inside a quote
                        quote_replaced = false;

                    } else {
                        // We are inside a quote
                        if (!quote_replaced) {
                            // Replace quote
                            _Script += quote_replacement_string + quote_replaced_count.ToString().PadLeft(5, "0".ToCharArray()[0]);
                            quote_replaced = true;
                        }
                        quote += C;
                        break;
                    }
                    _Script += C;
                break;
                }
            }
            //
            // END OF QUOTE REPLACEMENT
            //

            // Replace CAST - (integer) with (int)
            Script = Regex.Replace(_Script, @"\(integer\)", @"(int)", RegexOptions.Compiled | RegexOptions.Multiline);
            // Replace return types and function variables - integer a() and f(integer a, integer a)
            _Script = Regex.Replace(Script, @"(^|[\(,])(\s*int)eger(\s*)", @"$1$2$3", RegexOptions.Compiled | RegexOptions.Multiline);

            // Add void to functions not having that
            Script = Regex.Replace(_Script, @"^(\s*)((?!if|switch|for|foreach)[a-zA-Z0-9_]*\s*\([^\)]*\)[^;]*\{)", @"$1void $2", RegexOptions.Compiled | RegexOptions.Multiline | RegexOptions.Singleline);


            // Replace int (TEMPORARY QUICKFIX)
            //_Script = Regex.Replace(Script, "integer", "int", RegexOptions.Compiled);
            
            foreach (string key in QUOTES.Keys)
            {
                string val;
                QUOTES.TryGetValue(key, out val);
                _Script = Script.Replace(key, "\"" + val + "\"");
                Script = _Script;
            }


            Return = Script;

            return Return;
        }
        //private string GetWord(char[] SA, int p)
        //{
        //    string ret = "";
        //    for (int i = p; p < SA.Length; i++)
        //    {
        //        if (!rnw.IsMatch(SA[i].ToString()))
        //            break;
        //        ret += SA[i];
        //    }
        //    return ret;
        //}

    }
}