Diff
Not logged in

Differences From Artifact [8a1eba48f0346eec]:

To Artifact [19a06a471eb23a83]:


77 this.render['\\'] = "λ"; 77 this.render['\\'] = "λ"; 78 this.render['R'] = "☃"; 78 this.render['R'] = "☃"; 79 this.render['d'] = "☠"; 79 this.render['d'] = "☠"; 80 this.render['L'] = "☒"; 80 this.render['L'] = "☒"; 81 this.render['O'] = "☐"; 81 this.render['O'] = "☐"; 82 foreach(c,tp; g.map.tr_target) { 82 foreach(c,tp; g.map.tr_target) { 83 char d = g.map[tp]; 83 char d = g.map[tp]; 84 this.render[c] = [cast(dchar)(''+d-'1')].to!string(); | 84 this.render[c] = [cast(dchar)(''+d-'1')].to!string();/* 85 } 85 } 86 foreach(char c; '1'..':') this.render[c] = [cast(dchar)(''+c-'1 | 86 foreach(char c; '1'..':') this.render[c] = [cast(dchar)(''+c-'1 87 this.paint ~= (Control c, PaintEventArgs ev) { 87 this.paint ~= (Control c, PaintEventArgs ev) { 88 graphicContext.copyTo(ev.graphics, Rect(0,0,this.clientS 88 graphicContext.copyTo(ev.graphics, Rect(0,0,this.clientS 89 }; 89 }; 90 } 90 } 91 91 92 void draw(in Game g) 92 void draw(in Game g) 93 { 93 {