]> git.tdb.fi Git - r2c2.git/blob - source/libr2c2/arducontrol.cpp
6d75c7542dd0490fb3cde74b8b2e771560636eb1
[r2c2.git] / source / libr2c2 / arducontrol.cpp
1 #include <msp/core/maputils.h>
2 #include <msp/datafile/writer.h>
3 #include <msp/fs/redirectedpath.h>
4 #include <msp/fs/stat.h>
5 #include <msp/io/print.h>
6 #include <msp/time/utils.h>
7 #include "arducontrol.h"
8 #include "tracktype.h"
9
10 using namespace std;
11 using namespace Msp;
12
13 namespace R2C2 {
14
15 ArduControl::ProtocolInfo ArduControl::protocol_info[2] =
16 {
17         { 79, 14, 4 },       // MM
18         { 0x3FFF, 126, 15 }  // MFX
19 };
20
21 ArduControl::ArduControl(const Options &opts):
22         serial(opts.get<string>(string(), "ttyUSB0")),
23         debug(opts.get<unsigned>("debug")),
24         state_file("arducontrol.state"),
25         power(false),
26         halted(false),
27         active_accessory(0),
28         command_timeout(200*Time::msec),
29         s88(*this),
30         mfx_search(*this),
31         thread(*this)
32 {
33         if(FS::exists(state_file))
34                 DataFile::load(*this, state_file.str());
35
36         unsigned max_address = 0;
37         for(MfxInfoArray::const_iterator i=mfx_info.begin(); i!=mfx_info.end(); ++i)
38                 max_address = max(max_address, i->address);
39         mfx_search.set_next_address(max_address+1);
40
41         PendingCommand cmd;
42         cmd.command[0] = READ_POWER_STATE;
43         cmd.length = 1;
44         command_queue.push(cmd);
45
46         cmd.command[0] = MFX_SET_STATION_ID;
47         cmd.command[1] = 'R';
48         cmd.command[2] = '2';
49         cmd.command[3] = 'C';
50         cmd.command[4] = '2';
51         cmd.length = 5;
52         command_queue.push(cmd);
53 }
54
55 ArduControl::~ArduControl()
56 {
57         thread.exit();
58 }
59
60 void ArduControl::set_power(bool p)
61 {
62         if(power.set(p))
63         {
64                 PendingCommand cmd(POWER);
65                 cmd.tag.serial = power.serial;
66                 cmd.command[0] = (p ? POWER_ON : POWER_OFF);
67                 cmd.length = 1;
68                 command_queue.push(cmd);
69         }
70 }
71
72 void ArduControl::halt(bool h)
73 {
74         if(h==halted)
75                 return;
76
77         halted = h;
78         if(halted)
79         {
80                 for(LocomotiveMap::const_iterator i=locomotives.begin(); i!=locomotives.end(); ++i)
81                         set_loco_speed(i->first, 0);
82         }
83
84         signal_halt.emit(halted);
85 }
86
87 const char *ArduControl::enumerate_protocols(unsigned i) const
88 {
89         if(i==0)
90                 return "MM";
91         else if(i==1)
92                 return "MFX";
93         else
94                 return 0;
95 }
96
97 ArduControl::Protocol ArduControl::map_protocol(const string &proto_name)
98 {
99         if(proto_name=="MM")
100                 return MM;
101         else if(proto_name=="MFX")
102                 return MFX;
103         else
104                 throw invalid_argument("ArduControl::map_protocol");
105 }
106
107 unsigned ArduControl::get_protocol_speed_steps(const string &proto_name) const
108 {
109         return protocol_info[map_protocol(proto_name)].max_speed;
110 }
111
112 const Driver::DetectedLocomotive *ArduControl::enumerate_detected_locos(unsigned i) const
113 {
114         if(i>=mfx_info.size())
115                 return 0;
116
117         return &mfx_info[i];
118 }
119
120 unsigned ArduControl::add_loco(unsigned addr, const string &proto_name, const VehicleType &)
121 {
122         if(!addr)
123                 throw invalid_argument("ArduControl::add_loco");
124
125         Protocol proto = map_protocol(proto_name);
126         if(addr>protocol_info[proto].max_address)
127                 throw invalid_argument("ArduControl::add_loco");
128
129         Locomotive loco(proto, addr);
130         insert_unique(locomotives, loco.id, loco);
131
132         return loco.id;
133 }
134
135 ArduControl::MfxInfoArray::iterator ArduControl::add_mfx_info(const MfxInfo &info)
136 {
137         MfxInfoArray::iterator i;
138         for(i=mfx_info.begin(); (i!=mfx_info.end() && i->id!=info.id); ++i) ;
139         if(i==mfx_info.end())
140         {
141                 mfx_info.push_back(info);
142                 i = --mfx_info.end();
143         }
144         else
145                 *i = info;
146         return i;
147 }
148
149 void ArduControl::remove_loco(unsigned id)
150 {
151         Locomotive &loco = get_item(locomotives, id);
152         refresh.remove_loco(loco);
153         locomotives.erase(id);
154 }
155
156 void ArduControl::set_loco_speed(unsigned id, unsigned speed)
157 {
158         Locomotive &loco = get_item(locomotives, id);
159         if(speed>protocol_info[loco.proto].max_speed)
160                 throw invalid_argument("ArduControl::set_loco_speed");
161
162         if(speed && halted)
163                 return;
164
165         if(loco.speed.set(speed))
166         {
167                 PendingCommand cmd(loco, Locomotive::SPEED);
168                 command_queue.push(cmd);
169
170                 refresh.add_loco(loco);
171         }
172 }
173
174 void ArduControl::set_loco_reverse(unsigned id, bool rev)
175 {
176         Locomotive &loco = get_item(locomotives, id);
177         if(loco.reverse.set(rev))
178         {
179                 PendingCommand cmd(loco, Locomotive::REVERSE);
180                 command_queue.push(cmd);
181
182                 refresh.add_loco(loco);
183         }
184 }
185
186 void ArduControl::set_loco_function(unsigned id, unsigned func, bool state)
187 {
188         Locomotive &loco = get_item(locomotives, id);
189         if(func>protocol_info[loco.proto].max_func)
190                 throw invalid_argument("ArduControl::set_loco_function");
191
192         unsigned mask = 1<<func;
193         if(loco.funcs.set((loco.funcs&~mask)|(mask*state)))
194         {
195                 if(func>0 || loco.proto!=MM)
196                 {
197                         PendingCommand cmd(loco, Locomotive::FUNCTIONS, func);
198                         command_queue.push(cmd);
199                 }
200
201                 refresh.add_loco(loco);
202         }
203 }
204
205 unsigned ArduControl::add_turnout(unsigned addr, const TrackType &type)
206 {
207         if(!addr || !type.is_turnout())
208                 throw invalid_argument("ArduControl::add_turnout");
209
210         return add_accessory(Accessory::TURNOUT, addr, type.get_state_bits(), type.get_paths());
211 }
212
213 void ArduControl::remove_turnout(unsigned addr)
214 {
215         remove_accessory(Accessory::TURNOUT, addr);
216 }
217
218 void ArduControl::set_turnout(unsigned addr, unsigned state)
219 {
220         set_accessory(Accessory::TURNOUT, addr, state);
221 }
222
223 unsigned ArduControl::get_turnout(unsigned addr) const
224 {
225         return get_accessory(Accessory::TURNOUT, addr);
226 }
227
228 unsigned ArduControl::add_signal(unsigned addr, const SignalType &)
229 {
230         return add_accessory(Accessory::SIGNAL, addr, 1, 3);
231 }
232
233 void ArduControl::remove_signal(unsigned addr)
234 {
235         remove_accessory(Accessory::SIGNAL, addr);
236 }
237
238 void ArduControl::set_signal(unsigned addr, unsigned state)
239 {
240         set_accessory(Accessory::SIGNAL, addr, state);
241 }
242
243 unsigned ArduControl::get_signal(unsigned addr) const
244 {
245         return get_accessory(Accessory::SIGNAL, addr);
246 }
247
248 unsigned ArduControl::add_accessory(Accessory::Kind kind, unsigned addr, unsigned bits, unsigned states)
249 {
250         AccessoryMap::iterator i = accessories.lower_bound(addr);
251         AccessoryMap::iterator j = accessories.upper_bound(addr+bits-1);
252         if(i!=j)
253                 throw key_error(addr);
254         if(i!=accessories.begin())
255         {
256                 --i;
257                 if(i->first+i->second.bits>addr)
258                         throw key_error(addr);
259         }
260
261         insert_unique(accessories, addr, Accessory(kind, addr, bits, states));
262         return addr;
263 }
264
265 void ArduControl::remove_accessory(Accessory::Kind kind, unsigned addr)
266 {
267         Accessory &acc = get_item(accessories, addr);
268         if(acc.kind!=kind)
269                 throw key_error(addr);
270         accessories.erase(addr);
271 }
272
273 void ArduControl::set_accessory(Accessory::Kind kind, unsigned addr, unsigned state)
274 {
275         Accessory &acc = get_item(accessories, addr);
276         if(acc.kind!=kind)
277                 throw key_error(addr);
278
279         if(state!=acc.target || acc.uncertain)
280         {
281                 acc.target = state;
282                 accessory_queue.push_back(&acc);
283         }
284 }
285
286 unsigned ArduControl::get_accessory(Accessory::Kind kind, unsigned addr) const
287 {
288         const Accessory &acc = get_item(accessories, addr);
289         if(acc.kind!=kind)
290                 throw key_error(addr);
291         return acc.state;
292 }
293
294 void ArduControl::activate_accessory_by_mask(Accessory &acc, unsigned mask)
295 {
296         unsigned bit = mask&~(mask-1);
297         for(active_index=0; (bit>>active_index)>1; ++active_index) ;
298         acc.state.set((acc.state&~bit)|(acc.target&bit));
299         if(debug>=1)
300                 IO::print("Setting accessory %d bit %d, state=%d\n", acc.address, active_index, acc.state.pending);
301         PendingCommand cmd(acc, Accessory::ACTIVATE, active_index);
302         command_queue.push(cmd);
303         active_accessory = &acc;
304
305         monitor.reset_peak();
306 }
307
308 unsigned ArduControl::add_sensor(unsigned addr)
309 {
310         if(!addr)
311                 throw invalid_argument("ArduControl::add_sensor");
312
313         insert_unique(sensors, addr, Sensor(addr));
314         s88.grow_n_octets((addr+7)/8);
315
316         return addr;
317 }
318
319 void ArduControl::remove_sensor(unsigned addr)
320 {
321         remove_existing(sensors, addr);
322         // TODO update s88.n_octets
323 }
324
325 bool ArduControl::get_sensor(unsigned addr) const
326 {
327         return get_item(sensors, addr).state;
328 }
329
330 void ArduControl::tick()
331 {
332         Tag tag;
333         while(completed_commands.pop(tag))
334         {
335                 if(tag.type==Tag::GENERAL)
336                 {
337                         if(tag.command==POWER)
338                         {
339                                 if(power.commit(tag.serial))
340                                         signal_power.emit(power.current);
341                         }
342                         else if(tag.command==NEW_LOCO)
343                         {
344                                 MfxInfo info;
345                                 if(mfx_search.pop_info(info))
346                                 {
347                                         MfxInfoArray::iterator i = add_mfx_info(info);
348                                         save_state();
349                                         signal_locomotive_detected.emit(*i);
350                                 }
351                         }
352                 }
353                 else if(tag.type==Tag::LOCOMOTIVE)
354                 {
355                         LocomotiveMap::iterator i = locomotives.find(tag.id);
356                         if(i==locomotives.end())
357                                 continue;
358
359                         Locomotive &loco = i->second;
360                         if(tag.command==Locomotive::SPEED)
361                         {
362                                 if(loco.speed.commit(tag.serial))
363                                         signal_loco_speed.emit(loco.id, loco.speed, loco.reverse);
364                         }
365                         else if(tag.command==Locomotive::REVERSE)
366                         {
367                                 if(loco.reverse.commit(tag.serial))
368                                         signal_loco_speed.emit(loco.id, loco.speed, loco.reverse);
369                         }
370                         else if(tag.command==Locomotive::FUNCTIONS)
371                         {
372                                 unsigned old = loco.funcs;
373                                 if(loco.funcs.commit(tag.serial))
374                                 {
375                                         unsigned changed = old^loco.funcs;
376                                         for(unsigned j=0; changed>>j; ++j)
377                                                 if((changed>>j)&1)
378                                                         signal_loco_function.emit(loco.id, j, (loco.funcs>>j)&1);
379                                 }
380                         }
381                 }
382                 else if(tag.type==Tag::ACCESSORY)
383                 {
384                         AccessoryMap::iterator i = accessories.find(tag.id);
385                         if(i==accessories.end())
386                                 continue;
387
388                         Accessory &acc = i->second;
389                         if(tag.command==Accessory::ACTIVATE)
390                                 off_timeout = Time::now()+acc.active_time;
391                         else if(tag.command==Accessory::DEACTIVATE)
392                         {
393                                 if(acc.state.commit(tag.serial))
394                                 {
395                                         if(&acc==active_accessory)
396                                                 active_accessory = 0;
397                                 }
398                         }
399                 }
400                 else if(tag.type==Tag::SENSOR)
401                 {
402                         SensorMap::iterator i = sensors.find(tag.id);
403                         if(i==sensors.end())
404                                 continue;
405
406                         Sensor &sensor = i->second;
407                         if(tag.command==Sensor::STATE)
408                         {
409                                 if(sensor.state.commit(tag.serial))
410                                         signal_sensor.emit(sensor.address, sensor.state);
411                         }
412                 }
413         }
414
415         while(power && !active_accessory && !accessory_queue.empty())
416         {
417                 Accessory &acc = *accessory_queue.front();
418
419                 if(acc.uncertain)
420                 {
421                         unsigned zeroes = acc.uncertain&~acc.target;
422                         if(zeroes)
423                                 activate_accessory_by_mask(acc, zeroes);
424                         else
425                                 activate_accessory_by_mask(acc, acc.uncertain);
426                 }
427                 else if(acc.state!=acc.target)
428                 {
429                         unsigned changes = acc.state^acc.target;
430                         if(!(changes&((1<<acc.bits)-1)))
431                         {
432                                 // All remaining changes are in non-physical bits
433                                 acc.state.set(acc.state^changes);
434                                 acc.state.commit(acc.state.serial);
435                         }
436                         else
437                         {
438                                 unsigned toggle_bit = 0;
439                                 for(unsigned bit=1; (!toggle_bit && bit<=changes); bit<<=1)
440                                         if((changes&bit) && (acc.valid_states&(1<<(acc.state^bit))))
441                                                 toggle_bit = bit;
442
443                                 activate_accessory_by_mask(acc, toggle_bit);
444                         }
445                 }
446                 else
447                 {
448                         accessory_queue.pop_front();
449
450                         if(acc.state==acc.target)
451                         {
452                                 if(acc.kind==Accessory::TURNOUT)
453                                         signal_turnout.emit(acc.address, acc.state);
454                                 else if(acc.kind==Accessory::SIGNAL)
455                                         signal_signal.emit(acc.address, acc.state);
456                         }
457                 }
458         }
459
460         if(active_accessory && off_timeout)
461         {
462                 bool success = (monitor.get_peak()>0.35f && monitor.get_current()<monitor.get_peak()-0.2f);
463                 Time::TimeStamp t = Time::now();
464                 if(t>off_timeout || success)
465                 {
466                         Accessory &acc = *active_accessory;
467
468                         unsigned bit = 1<<active_index;
469
470                         // Assume success if we were uncertain of the physical setting
471                         if(acc.uncertain&bit)
472                                 acc.uncertain &= ~bit;
473                         else if(acc.kind==Accessory::TURNOUT && !success)
474                         {
475                                 if(debug>=1)
476                                         IO::print("Peak current only %.2f A\n", monitor.get_peak());
477                                 signal_turnout_failed.emit(acc.address);
478                                 acc.state.rollback();
479                                 if(acc.valid_states&(1<<(acc.target^bit)))
480                                         acc.target ^= bit;
481                                 else
482                                         acc.target = acc.state;
483                         }
484
485                         off_timeout = Time::TimeStamp();
486                         PendingCommand cmd(acc, Accessory::DEACTIVATE, active_index);
487                         command_queue.push(cmd);
488                 }
489         }
490 }
491
492 void ArduControl::flush()
493 {
494         while(!command_queue.empty() || (power && !accessory_queue.empty()))
495                 tick();
496 }
497
498 void ArduControl::save_state() const
499 {
500         FS::RedirectedPath tmp_file(state_file);
501         IO::BufferedFile out(tmp_file.str(), IO::M_WRITE);
502         DataFile::Writer writer(out);
503
504         writer.write((DataFile::Statement("mfx_announce_serial"), mfx_announce.get_serial()));
505         for(MfxInfoArray::const_iterator i=mfx_info.begin(); i!=mfx_info.end(); ++i)
506         {
507                 DataFile::Statement st("mfx_locomotive");
508                 st.append(i->id);
509                 st.sub.push_back((DataFile::Statement("address"), i->address));
510                 st.sub.push_back((DataFile::Statement("name"), i->name));
511                 writer.write(st);
512         }
513 }
514
515
516 ArduControl::Tag::Tag():
517         type(NONE),
518         command(0),
519         serial(0),
520         id(0)
521 { }
522
523
524 ArduControl::Locomotive::Locomotive(Protocol p, unsigned a):
525         id((p<<16)|a),
526         proto(p),
527         address(a),
528         speed(0),
529         reverse(false),
530         funcs(0),
531         last_change_age(0)
532 { }
533
534 unsigned ArduControl::Locomotive::create_speed_dir_command(char *buffer) const
535 {
536         if(proto==MM)
537         {
538                 buffer[0] = MOTOROLA_SPEED_DIRECTION;
539                 buffer[1] = address;
540                 buffer[2] = funcs.pending&1;
541                 buffer[3] = speed.pending+reverse.pending*0x80;
542                 return 4;
543         }
544         else if(proto==MFX)
545         {
546                 buffer[0] = MFX_SPEED;
547                 buffer[1] = address>>8;
548                 buffer[2] = address;
549                 buffer[3] = speed.pending+reverse.pending*0x80;
550                 return 4;
551         }
552         else
553                 return 0;
554 }
555
556 unsigned ArduControl::Locomotive::create_speed_func_command(unsigned f, char *buffer) const
557 {
558         if(proto==MM)
559         {
560                 if(f<1 || f>4)
561                         throw invalid_argument("Locomotive::create_speed_func_command");
562
563                 buffer[0] = MOTOROLA_SPEED_FUNCTION;
564                 buffer[1] = address;
565                 buffer[2] = (f<<4)|(((funcs.pending>>f)&1)<<1)|(funcs.pending&1);
566                 buffer[3] = speed.pending;
567                 return 4;
568         }
569         else if(proto==MFX)
570         {
571                 bool f16 = (funcs.pending>0xFF);
572                 buffer[0] = (f16 ? MFX_SPEED_FUNCS16 : MFX_SPEED_FUNCS8);
573                 buffer[1] = address>>8;
574                 buffer[2] = address;
575                 buffer[3] = speed.pending+reverse.pending*0x80;
576                 if(f16)
577                 {
578                         buffer[4] = funcs.pending>>8;
579                         buffer[5] = funcs.pending;
580                         return 6;
581                 }
582                 else
583                 {
584                         buffer[4] = funcs.pending;
585                         return 5;
586                 }
587         }
588         else
589                 return 0;
590 }
591
592
593 ArduControl::Accessory::Accessory(Kind k, unsigned a, unsigned b, unsigned s):
594         kind(k),
595         address(a),
596         bits(b),
597         valid_states(s),
598         state(0),
599         uncertain((1<<bits)-1),
600         target(0),
601         active_time((bits*700)*Time::msec)
602 { }
603
604 unsigned ArduControl::Accessory::create_state_command(unsigned b, bool c, char *buffer) const
605 {
606         if(b>=bits)
607                 throw invalid_argument("Accessory::create_state_command");
608
609         unsigned a = (address+b+3)*2;
610         if(!((state.pending>>b)&1))
611                 ++a;
612         buffer[0] = MOTOROLA_SOLENOID;
613         buffer[1] = a>>3;
614         buffer[2] = ((a&7)<<4)|c;
615         return 3;
616 }
617
618
619 ArduControl::Sensor::Sensor(unsigned a):
620         address(a),
621         state(false)
622 { }
623
624
625 ArduControl::PendingCommand::PendingCommand():
626         length(0),
627         repeat_count(1)
628 { }
629
630 ArduControl::PendingCommand::PendingCommand(GeneralCommand cmd):
631         length(0),
632         repeat_count(1)
633 {
634         tag.type = Tag::GENERAL;
635         tag.command = cmd;
636 }
637
638 ArduControl::PendingCommand::PendingCommand(Locomotive &loco, Locomotive::Command cmd, unsigned index):
639         repeat_count(8)
640 {
641         tag.type = Tag::LOCOMOTIVE;
642         tag.command = cmd;
643         tag.id = loco.id;
644         if(cmd==Locomotive::SPEED)
645         {
646                 tag.serial = loco.speed.serial;
647                 length = loco.create_speed_dir_command(command);
648         }
649         else if(cmd==Locomotive::REVERSE)
650         {
651                 tag.serial = loco.reverse.serial;
652                 length = loco.create_speed_dir_command(command);
653         }
654         else if(cmd==Locomotive::FUNCTIONS)
655         {
656                 tag.serial = loco.funcs.serial;
657                 length = loco.create_speed_func_command(index, command);
658         }
659         else
660                 throw invalid_argument("PendingCommand");
661 }
662
663 ArduControl::PendingCommand::PendingCommand(Accessory &acc, Accessory::Command cmd, unsigned index):
664         repeat_count(1)
665 {
666         tag.type = Tag::ACCESSORY;
667         tag.command = cmd;
668         tag.id = acc.address;
669         if(cmd==Accessory::ACTIVATE || cmd==Accessory::DEACTIVATE)
670         {
671                 tag.serial = acc.state.serial;
672                 length = acc.create_state_command(index, (cmd==Accessory::ACTIVATE), command);
673         }
674         else
675                 throw invalid_argument("PendingCommand");
676 }
677
678
679 template<typename T>
680 void ArduControl::Queue<T>::push(const T &item)
681 {
682         MutexLock lock(mutex);
683         items.push_back(item);
684 }
685
686 template<typename T>
687 bool ArduControl::Queue<T>::pop(T &item)
688 {
689         MutexLock lock(mutex);
690         if(items.empty())
691                 return false;
692
693         item = items.front();
694         items.pop_front();
695         return true;
696 }
697
698 template<typename T>
699 bool ArduControl::Queue<T>::empty() const
700 {
701         return items.empty();
702 }
703
704
705 ArduControl::RefreshTask::RefreshTask():
706         next(cycle.end()),
707         round(0),
708         loco(0),
709         phase(0)
710 { }
711
712 bool ArduControl::RefreshTask::get_work(PendingCommand &cmd)
713 {
714         if(loco && loco->proto==MM && phase==0)
715         {
716                 cmd.length = loco->create_speed_func_command(round%4+1, cmd.command);
717                 cmd.repeat_count = 2;
718                 ++phase;
719                 return true;
720         }
721
722         loco = get_next_loco();
723         if(!loco)
724                 return false;
725
726         phase = 0;
727         if(loco->proto==MM)
728         {
729                 cmd.length = loco->create_speed_dir_command(cmd.command);
730                 cmd.repeat_count = 2;
731         }
732         else if(loco->proto==MFX)
733                 cmd.length = loco->create_speed_func_command(0, cmd.command);
734         else
735                 return false;
736
737         return true;
738 }
739
740 void ArduControl::RefreshTask::add_loco(Locomotive &l)
741 {
742         MutexLock lock(mutex);
743         cycle.push_back(&l);
744         if(cycle.size()>15)
745         {
746                 LocomotivePtrList::iterator oldest = cycle.begin();
747                 for(LocomotivePtrList::iterator i=cycle.begin(); ++i!=cycle.end(); )
748                         if((*i)->last_change_age>(*oldest)->last_change_age)
749                                 oldest = i;
750                 if(oldest==next)
751                         advance();
752                 cycle.erase(oldest);
753         }
754         if(next==cycle.end())
755                 next = cycle.begin();
756 }
757
758 void ArduControl::RefreshTask::remove_loco(Locomotive &l)
759 {
760         MutexLock lock(mutex);
761         for(LocomotivePtrList::iterator i=cycle.begin(); i!=cycle.end(); ++i)
762                 if(*i==&l)
763                 {
764                         if(i==next)
765                         {
766                                 if(cycle.size()>1)
767                                         advance();
768                                 else
769                                         next = cycle.end();
770                         }
771                         cycle.erase(i);
772                         return;
773                 }
774 }
775
776 ArduControl::Locomotive *ArduControl::RefreshTask::get_next_loco()
777 {
778         MutexLock lock(mutex);
779         if(cycle.empty())
780                 return 0;
781
782         Locomotive *l = *next;
783         advance();
784         return l;
785 }
786
787 void ArduControl::RefreshTask::advance()
788 {
789         ++next;
790         if(next==cycle.end())
791         {
792                 next= cycle.begin();
793                 ++round;
794         }
795 }
796
797
798 ArduControl::S88Task::S88Task(ArduControl &c):
799         control(c),
800         n_octets(0),
801         octets_remaining(0),
802         delay(0)
803 { }
804
805 bool ArduControl::S88Task::get_work(PendingCommand &cmd)
806 {
807         if(delay)
808         {
809                 --delay;
810                 return false;
811         }
812         if(octets_remaining || !n_octets)
813                 return false;
814
815         octets_remaining = n_octets;
816         cmd.command[0] = S88_READ;
817         cmd.command[1] = octets_remaining;
818         cmd.length = 2;
819
820         delay = 4;
821
822         return true;
823 }
824
825 void ArduControl::S88Task::process_reply(const char *reply, unsigned length)
826 {
827         unsigned char type = reply[0];
828         if(type==S88_DATA && length>2)
829         {
830                 unsigned offset = static_cast<unsigned char>(reply[1]);
831                 unsigned count = length-2;
832
833                 SensorMap::iterator begin = control.sensors.lower_bound(offset*8+1);
834                 SensorMap::iterator end = control.sensors.upper_bound((offset+count)*8);
835                 for(SensorMap::iterator i=begin; i!=end; ++i)
836                 {
837                         unsigned bit_index = i->first-1-offset*8;
838                         bool state = (reply[2+bit_index/8]>>(7-bit_index%8))&1;
839                         i->second.state.set(state);
840
841                         Tag tag;
842                         tag.type = Tag::SENSOR;
843                         tag.command = Sensor::STATE;
844                         tag.serial = i->second.state.serial;
845                         tag.id = i->first;
846                         control.completed_commands.push(tag);
847                 }
848
849                 if(count>octets_remaining)
850                         octets_remaining = 0;
851                 else
852                         octets_remaining -= count;
853         }
854 }
855
856 void ArduControl::S88Task::set_n_octets(unsigned n)
857 {
858         n_octets = n;
859 }
860
861 void ArduControl::S88Task::grow_n_octets(unsigned n)
862 {
863         if(n>n_octets)
864                 n_octets = n;
865 }
866
867
868 ArduControl::MfxAnnounceTask::MfxAnnounceTask():
869         serial(0)
870 { }
871
872 bool ArduControl::MfxAnnounceTask::get_work(PendingCommand &cmd)
873 {
874         Time::TimeStamp t = Time::now();
875         if(t<next)
876                 return false;
877
878         cmd.command[0] = MFX_ANNOUNCE;
879         cmd.command[1] = serial>>8;
880         cmd.command[2] = serial;
881         cmd.length = 3;
882         next = t+400*Time::msec;
883
884         return true;
885 }
886
887 void ArduControl::MfxAnnounceTask::set_serial(unsigned s)
888 {
889         serial = s;
890 }
891
892
893 ArduControl::MfxSearchTask::MfxSearchTask(ArduControl &c):
894         control(c),
895         next_address(1),
896         size(0),
897         bits(0),
898         misses(0)
899 { }
900
901 bool ArduControl::MfxSearchTask::get_work(PendingCommand &cmd)
902 {
903         if(size>32)
904         {
905                 if(control.debug>=1)
906                         IO::print("Assigning MFX address %d to decoder %08X\n", next_address, bits);
907
908                 MfxInfo info;
909                 info.protocol = "MFX";
910                 info.address = next_address;
911                 info.name = format("%08X", bits);
912                 info.id = bits;
913                 queue.push(info);
914
915                 cmd.command[0] = MFX_ASSIGN_ADDRESS;
916                 cmd.command[1] = next_address>>8;
917                 cmd.command[2] = next_address;
918                 for(unsigned i=0; i<4; ++i)
919                         cmd.command[3+i] = bits>>(24-i*8);
920                 cmd.length = 7;
921
922                 cmd.tag.type = Tag::GENERAL;
923                 cmd.tag.command = NEW_LOCO;
924                 cmd.tag.id = bits;
925
926                 size = 0;
927                 bits = 0;
928                 ++next_address;
929
930                 return true;
931         }
932
933         Time::TimeStamp t = Time::now();
934         if(t<next)
935                 return false;
936
937         cmd.command[0] = MFX_SEARCH;
938         for(unsigned i=0; i<4; ++i)
939                 cmd.command[1+i] = bits>>(24-i*8);
940         cmd.command[5] = size;
941         cmd.length = 6;
942
943         next = t+200*Time::msec;
944
945         if(control.debug>=1)
946                 IO::print("Search %08X/%d\n", bits, size);
947
948         return true;
949 }
950
951 void ArduControl::MfxSearchTask::process_reply(const char *reply, unsigned length)
952 {
953         unsigned char type = reply[0];
954         if(type==MFX_SEARCH_FEEDBACK && length==2)
955         {
956                 if(reply[1])
957                 {
958                         misses = 0;
959                         ++size;
960                 }
961                 else if(size>0 && misses<6)
962                 {
963                         ++misses;
964                         bits ^= 1<<(32-size);
965                 }
966                 else
967                 {
968                         next = Time::now()+2*Time::sec;
969                         bits = 0;
970                         size = 0;
971                         misses = 0;
972                 }
973         }
974 }
975
976 void ArduControl::MfxSearchTask::set_next_address(unsigned a)
977 {
978         next_address = a;
979 }
980
981 bool ArduControl::MfxSearchTask::pop_info(MfxInfo &info)
982 {
983         return queue.pop(info);
984 }
985
986
987 ArduControl::MonitorTask::MonitorTask():
988         voltage(0),
989         current(0),
990         base_level(0),
991         peak_level(0),
992         next_type(0)
993 { }
994
995 bool ArduControl::MonitorTask::get_work(PendingCommand &cmd)
996 {
997         Time::TimeStamp t = Time::now();
998         if(t<next_poll)
999                 return false;
1000
1001         if(next_type==0)
1002                 cmd.command[0] = READ_INPUT_VOLTAGE;
1003         else
1004                 cmd.command[0] = READ_TRACK_CURRENT;
1005         cmd.length = 1;
1006
1007         next_poll = t+200*Time::msec;
1008         next_type = (next_type+1)%5;
1009
1010         return true;
1011 }
1012
1013 void ArduControl::MonitorTask::process_reply(const char *reply, unsigned length)
1014 {
1015         unsigned char type = reply[0];
1016         if(type==INPUT_VOLTAGE && length==3)
1017                 voltage = ((static_cast<unsigned char>(reply[1])<<8) | static_cast<unsigned char>(reply[2]))/1000.0f;
1018         else if(type==TRACK_CURRENT && length==5)
1019         {
1020                 current = ((static_cast<unsigned char>(reply[1])<<8) | static_cast<unsigned char>(reply[2]))/1000.0f;
1021                 float peak = ((static_cast<unsigned char>(reply[3])<<8) | static_cast<unsigned char>(reply[4]))/1000.0f;
1022                 peak_level = max(peak_level, peak);
1023                 base_level = min(base_level, current);
1024         }
1025 }
1026
1027 void ArduControl::MonitorTask::reset_peak()
1028 {
1029         base_level = current;
1030         peak_level = current;
1031 }
1032
1033
1034 ArduControl::ControlThread::ControlThread(ArduControl &c):
1035         control(c),
1036         done(false)
1037 {
1038         tasks.push_back(&control.monitor);
1039         tasks.push_back(&control.mfx_announce);
1040         tasks.push_back(&control.mfx_search);
1041         tasks.push_back(&control.s88);
1042         tasks.push_back(&control.refresh);
1043
1044         launch();
1045 }
1046
1047 void ArduControl::ControlThread::exit()
1048 {
1049         done = true;
1050         join();
1051 }
1052
1053 void ArduControl::ControlThread::main()
1054 {
1055         init_baud_rate();
1056
1057         while(!done)
1058         {
1059                 PendingCommand cmd;
1060                 if(get_work(cmd))
1061                 {
1062                         bool success = true;
1063                         bool resync = false;
1064                         for(unsigned i=0; (success && i<cmd.repeat_count); ++i)
1065                         {
1066                                 unsigned result = do_command(cmd, control.command_timeout);
1067                                 success = (result==COMMAND_OK);
1068                                 resync = (result==0);
1069                         }
1070
1071                         if(success && cmd.tag)
1072                                 control.completed_commands.push(cmd.tag);
1073
1074                         if(resync)
1075                         {
1076                                 if(control.debug>=1)
1077                                         IO::print("Synchronization with ArduControl lost, attempting to recover\n");
1078                                 for(unsigned i=0; (resync && i<16); ++i)
1079                                 {
1080                                         control.serial.put('\xFF');
1081                                         while(IO::poll(control.serial, IO::P_INPUT, control.command_timeout))
1082                                                 resync = (control.serial.get()!=0xFF);
1083                                 }
1084                                 if(resync)
1085                                 {
1086                                         if(control.debug>=1)
1087                                                 IO::print("Resynchronization failed, giving up\n");
1088                                         done = true;
1089                                 }
1090                                 else
1091                                 {
1092                                         if(control.debug>=1)
1093                                                 IO::print("Resynchronization successful\n");
1094                                         if(cmd.tag)
1095                                                 control.command_queue.push(cmd);
1096                                 }
1097                         }
1098                 }
1099                 else
1100                         Time::sleep(10*Time::msec);
1101         }
1102 }
1103
1104 void ArduControl::ControlThread::init_baud_rate()
1105 {
1106         static unsigned rates[] = { 57600, 9600, 19200, 38400, 0 };
1107         unsigned rate = 0;
1108         control.serial.set_data_bits(8);
1109         control.serial.set_parity(IO::Serial::NONE);
1110         control.serial.set_stop_bits(1);
1111         for(unsigned i=0; rates[i]; ++i)
1112         {
1113                 control.serial.set_baud_rate(rates[i]);
1114                 control.serial.put('\xFF');
1115                 if(IO::poll(control.serial, IO::P_INPUT, 500*Time::msec))
1116                 {
1117                         int c = control.serial.get();
1118                         if(c==0xFF)
1119                         {
1120                                 rate = rates[i];
1121                                 break;
1122                         }
1123                 }
1124         }
1125
1126         if(!rate)
1127         {
1128                 if(control.debug>=1)
1129                         IO::print("ArduControl detection failed\n");
1130                 done = true;
1131                 return;
1132         }
1133
1134         if(control.debug>=1)
1135                 IO::print("ArduControl detected at %d bits/s\n", rate);
1136
1137         if(rate!=rates[0])
1138         {
1139                 PendingCommand cmd;
1140                 cmd.command[0] = SET_BAUD_RATE;
1141                 cmd.command[1] = rates[0]>>8;
1142                 cmd.command[2] = rates[0];
1143                 cmd.length = 3;
1144                 if(do_command(cmd, Time::sec)==COMMAND_OK)
1145                 {
1146                         control.serial.set_baud_rate(rates[0]);
1147                         Time::sleep(Time::sec);
1148                         if(do_command(cmd, Time::sec)==COMMAND_OK)
1149                         {
1150                                 if(control.debug>=1)
1151                                         IO::print("Rate changed to %d bits/s\n", rates[0]);
1152                         }
1153                 }
1154         }
1155 }
1156
1157 bool ArduControl::ControlThread::get_work(PendingCommand &cmd)
1158 {
1159         if(control.command_queue.pop(cmd))
1160                 return true;
1161
1162         for(vector<Task *>::iterator i=tasks.begin(); i!=tasks.end(); ++i)
1163                 if((*i)->get_work(cmd))
1164                         return true;
1165
1166         // As fallback, send an idle packet for the MM protocol
1167         cmd.command[0] = MOTOROLA_SPEED;
1168         cmd.command[1] = 80;
1169         cmd.command[2] = 0;
1170         cmd.command[3] = 0;
1171         cmd.length = 4;
1172
1173         return true;
1174 }
1175
1176 unsigned ArduControl::ControlThread::do_command(const PendingCommand &cmd, const Time::TimeDelta &timeout)
1177 {
1178         if(control.debug>=2)
1179         {
1180                 string cmd_hex;
1181                 for(unsigned i=0; i<cmd.length; ++i)
1182                         cmd_hex += format(" %02X", static_cast<unsigned char>(cmd.command[i]));
1183                 IO::print("< %02X%s\n", cmd.length^0xFF, cmd_hex);
1184         }
1185
1186         control.serial.put(cmd.length^0xFF);
1187         control.serial.write(cmd.command, cmd.length);
1188
1189         unsigned result = 0;
1190         while(1)
1191         {
1192                 bool got_data;
1193                 if(result)
1194                         got_data = IO::poll(control.serial, IO::P_INPUT, Time::zero);
1195                 else
1196                         got_data = IO::poll(control.serial, IO::P_INPUT, timeout);
1197
1198                 if(!got_data)
1199                         break;
1200
1201                 unsigned rlength = control.serial.get()^0xFF;
1202                 if(rlength>15)
1203                 {
1204                         IO::print("Invalid length %02X\n", rlength);
1205                         continue;
1206                 }
1207
1208                 char reply[15];
1209                 unsigned pos = 0;
1210                 while(pos<rlength)
1211                 {
1212                         if(!IO::poll(control.serial, IO::P_INPUT, timeout))
1213                                 return 0;
1214                         pos += control.serial.read(reply+pos, rlength-pos);
1215                 }
1216
1217                 if(control.debug>=2)
1218                 {
1219                         string reply_hex;
1220                         for(unsigned i=0; i<rlength; ++i)
1221                                 reply_hex += format(" %02X", static_cast<unsigned char>(reply[i]));
1222                         IO::print("> %02X%s\n", rlength^0xFF, reply_hex);
1223                 }
1224
1225                 unsigned r = process_reply(reply, rlength);
1226                 if(r && !result)
1227                         result = r;
1228         }
1229
1230         return result;
1231 }
1232
1233 unsigned ArduControl::ControlThread::process_reply(const char *reply, unsigned rlength)
1234 {
1235         unsigned char type = reply[0];
1236         if((type&0xE0)==0x80)
1237         {
1238                 if(type!=COMMAND_OK)
1239                         IO::print("Error %02X\n", type);
1240                 return type;
1241         }
1242         else if(type==POWER_STATE && rlength==2)
1243                 set_power(reply[1]);
1244         else if(type==OVERCURRENT)
1245         {
1246                 set_power(false);
1247                 IO::print("Overcurrent detected!\n");
1248         }
1249         else
1250         {
1251                 for(vector<Task *>::iterator i=tasks.begin(); i!=tasks.end(); ++i)
1252                         (*i)->process_reply(reply, rlength);
1253         }
1254
1255         return 0;
1256 }
1257
1258 void ArduControl::ControlThread::set_power(bool p)
1259 {
1260         control.power.set(p);
1261
1262         Tag tag;
1263         tag.type = Tag::GENERAL;
1264         tag.command = POWER;
1265         tag.serial = control.power.serial;
1266         control.completed_commands.push(tag);
1267 }
1268
1269
1270 ArduControl::Loader::Loader(ArduControl &c):
1271         DataFile::ObjectLoader<ArduControl>(c)
1272 {
1273         add("mfx_announce_serial", &Loader::mfx_announce_serial);
1274         add("mfx_locomotive", &Loader::mfx_locomotive);
1275 }
1276
1277 void ArduControl::Loader::mfx_announce_serial(unsigned s)
1278 {
1279         obj.mfx_announce.set_serial(s);
1280 }
1281
1282 void ArduControl::Loader::mfx_locomotive(unsigned id)
1283 {
1284         MfxInfo info;
1285         info.id = id;
1286         info.protocol = "MFX";
1287         load_sub(info);
1288         obj.add_mfx_info(info);
1289 }
1290
1291
1292 ArduControl::MfxInfo::Loader::Loader(MfxInfo &i):
1293         DataFile::ObjectLoader<MfxInfo>(i)
1294 {
1295         add("address", static_cast<unsigned MfxInfo::*>(&MfxInfo::address));
1296         add("name", static_cast<string MfxInfo::*>(&MfxInfo::name));
1297 }
1298
1299 } // namespace R2C2