aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications/MindBlow.cs
blob: 54167da2a6882bd70e3ee0ac40ac912cab9be497 (plain) (blame)
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using ShiftOS.Engine;
using System.IO;
using System.Threading;
using System.Collections;
using System.Collections.Concurrent;

namespace ShiftOS.WinForms.Applications
{
    [WinOpen("{WO_MINDBLOW}")]
    [Launcher("{TITLE_MINDBLOW}", false, null, "{AL_PROGRAMMING}")]
    [RequiresUpgrade("mindblow")]
    public partial class MindBlow : UserControl, IShiftOSWindow, IBFListener
    {
        private bool running = true;
        private Action updateMemPtr = null, updateIPtr = null;
        private Action[] updateMem = new Action[30000];
        private AutoResetEvent evwaiting = new AutoResetEvent(false);
        private object evlock = new object();

        private class TextBoxStream : Stream
        {
            private TextBox box;
            private KeysConverter kc;
            public KeyPressEventHandler handler;
            public TextBoxStream(TextBox mybox)
            {
                kc = new KeysConverter();
                box = mybox;
            }
            public override bool CanRead { get { return true; } }

            public override bool CanSeek { get { return false; } }

            public override bool CanWrite { get { return true; } }

            public override long Length { get { return box.Text.Length; } }

            public override long Position
            {
                get
                {
                    return Length;
                }
                set
                {
                    //nothing
                }
            }

            public override void Flush()
            {
            }

            public override int Read(byte[] buffer, int offset, int count)
            {
                int ptr = offset;
                var hnd = new AutoResetEvent(false);
                handler = (o, a) =>
                {
                    if (ptr < offset + count)
                    {
                        buffer[ptr] = (byte)a.KeyChar;
                        ptr++;
                    }
                    if (ptr >= offset + count)
                        hnd.Set();
                };
                Desktop.InvokeOnWorkerThread(() => box.KeyPress += handler);
                hnd.WaitOne();
                Desktop.InvokeOnWorkerThread(() => box.KeyPress -= handler);
                return count;
            }

            public override long Seek(long offset, SeekOrigin origin)
            {
                throw new NotImplementedException();
            }

            public override void SetLength(long value)
            {
                throw new NotImplementedException();
            }

            public override void Write(byte[] buffer, int offset, int count)
            {
                string output = "";
                foreach (byte b in buffer.Skip(offset).Take(count))
                    output += Convert.ToChar(b);
                Desktop.InvokeOnWorkerThread(() => box.Text += output);
            }
        }
        private static string[] DefaultMem;
        private BFInterpreter Interpreter;
        private Thread InterpreterThread;
        private TextBoxStream consolestr;
        private void DoLayout()
        {
            memlist.Left = 0;
            memlist.Width = monitor.Width;
            memlist.Height = monitor.Height - memlist.Top;
            program.Top = 0;
            program.Left = 0;
            programinput.Width = program.Width;
            programinput.Height = program.Height - load.Height;
            load.Top = save.Top = run.Top = stop.Top = programinput.Height;
            load.Width = save.Width = run.Width = stop.Width = save.Left = program.Width / 4;
            load.Left = 0;
            run.Left = save.Left * 2;
            stop.Left = save.Left * 3;
        }

        public MindBlow()
        {
            InitializeComponent();
            DefaultMem = new string[30000];
            for (ushort i = 0; i < 30000; i++)
                DefaultMem[i] = "0";
            memlist.Items.AddRange(DefaultMem);
            consolestr = new TextBoxStream(consoleout);
            Interpreter = new BFInterpreter(consolestr, this);
        }

        public void IPtrMoved(int newval)
        {
            lock (evlock)
            {
                updateIPtr = () => instptr.Text = "Instruction: " + newval.ToString();
                evwaiting.Set();
            }
        }

        public void MemChanged(ushort pos, byte newval)
        {
            lock (evlock)
            {
                updateMem[pos] = () =>
                {
                    memlist.Items[pos] = newval.ToString();
                };
                evwaiting.Set();
            }
        }

        public void MemReset()
        {
            Desktop.InvokeOnWorkerThread(() =>
            {
                memlist.Items.Clear();
                memlist.Items.AddRange(DefaultMem);
            });
        }

        public void OnLoad()
        {
            DoLayout();
            new Thread(() =>
            {
                while (running)
                {
                    evwaiting.WaitOne();
                    try
                    {
                        lock (evlock)
                        {
                            if (updateIPtr != null)
                            {
                                Desktop.InvokeOnWorkerThread(updateIPtr);
                                updateIPtr = null;
                            }
                            if (updateMemPtr != null)
                            {
                                Desktop.InvokeOnWorkerThread(updateMemPtr);
                                updateMemPtr = null;
                            }
                            for (int i = 0; i < updateMem.Length; i++)
                                if (updateMem[i] != null)
                                {
                                    Desktop.InvokeOnWorkerThread(updateMem[i]);
                                    updateMem[i] = null;
                                }
                        }
                    } catch { }
                    evwaiting.Reset();
                }
            }).Start();
        }

        public void OnSkinLoad()
        {
        }

        public bool OnUnload()
        {
            running = false;
            evwaiting.Set(); // allow the display loop to die of old age
            KillThread(); // mercilessly slaughter the interpreter thread
            return true;
        }

        public void OnUpgrade()
        {
        }

        public void PointerMoved(ushort newval)
        {
            lock (evlock)
            {
                updateMemPtr = () => memptr.Text = "Memory: " + newval.ToString();
                evwaiting.Set();
            }
        }

        private void MindBlow_Resize(object sender, EventArgs e)
        {
            DoLayout();
        }

        private void run_Click(object sender, EventArgs e)
        {
            InterpreterThread = new Thread(() =>
            {
                try
                {
                    Interpreter.Reset();
                    Interpreter.Execute(programinput.Text);
                }
                catch (ThreadAbortException) { } // ignore
                catch (Exception ex)
                {
                    Desktop.InvokeOnWorkerThread(() => Infobox.Show("Program Error", "An error occurred while executing your program: " + ex.GetType().ToString()));
                }
            });
            InterpreterThread.Start();
        }

        private void tabs_Selected(object sender, TabControlEventArgs e)
        {
            DoLayout();
        }

        private void load_Click(object sender, EventArgs e)
        {
            AppearanceManager.SetupDialog(new FileDialog(new string[] { ".bf" }, FileOpenerStyle.Open, new Action<string>((file) => programinput.Text = Objects.ShiftFS.Utils.ReadAllText(file))));
        }

        private void save_Click(object sender, EventArgs e)
        {
            AppearanceManager.SetupDialog(new FileDialog(new string[] { ".bf" }, FileOpenerStyle.Save, new Action<string>((file) => Objects.ShiftFS.Utils.WriteAllText(file, programinput.Text))));
        }

        private void KillThread()
        {
            if (InterpreterThread != null)
                try
                {
                    InterpreterThread.Abort();
                }
                catch { }
            consoleout.KeyPress -= consolestr.handler;
        }

        private void stop_Click(object sender, EventArgs e)
        {
            KillThread();
        }

        private void reset_Click(object sender, EventArgs e)
        {
            if (InterpreterThread != null)
                if (InterpreterThread.IsAlive)
                    Infobox.Show("Cannot Reset", "The program is still running.");
                else
                    Interpreter.Reset();
        }
    }
}