ResourceCulture.cs 21.3 KB
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 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595
using OnlineStore.Common;
using OnlineStore.DeviceLibrary;
using OnlineStore.LoadCSVLibrary;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Drawing;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Resources;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace OnlineStore.AutoInOutStore
{
    public class ResourceCulture
    {
        public static bool ShowLog = true ;
        public static string China = "zh-CN";
        public static string English = "en-US";
        public static string German = "ge-DE";
        public static string Japanese = "ja-JP";
        private static ResourceManager rm = null;

        public static string CurrLanguage = "zh-CN";

        public static Dictionary<string, string> defaultMap = new Dictionary<string, string>();
        /// <summary>
        /// Set current culture by name
        /// </summary>
        /// <param name="name">name</param>
        public static void SetCurrentCulture(string name)
        {
            Init();
            CodeLibrary.CodeResourceControl.OpenResourceLog = ShowLog;
            ResourceControl.GetStrEvent += GetString;
            ResourceControl.GetStringEvent += GetString;
            ResourceControl.GetStringByLanEvent += GetStringByLan;
            CodeLibrary.CodeResourceControl.GetLanguageEvent += CodeResourceControl_GetLanguageEvent;
            CSVResourceControl.GetStrEvent += GetString;
            CSVResourceControl.GetStringEvent += GetString;
            if (string.IsNullOrEmpty(name))
            {
                name = "en-US";
            }
            CurrLanguage = name;
            Thread.CurrentThread.CurrentCulture = new CultureInfo(name);
            //LoadAllRes();
             ChangeRes();
        }
        public static void LoadAllRes()
        {
            if (rm == null)
            {
                rm = new ResourceManager("OnlineStore.AutoInOutStore.Properties.Resource", assembly);
            }
            //CultureInfo ci = Thread.CurrentThread.CurrentCulture;
            Dictionary<string, string> chinaMap = GetRMap(China);
            Dictionary<string, string> englishMap = GetRMap(English);
            Dictionary<string, string> japMap = GetRMap(Japanese);
            List<string> keyList = new List<string>(chinaMap.Keys);
            keyList = (from m in keyList orderby m select m).ToList<string>();
            List<string> resulList = new List<string>();
            foreach (string key in keyList)
            {
                string china = chinaMap[key];
                string english = "";
                englishMap.TryGetValue(key, out english);
                if (String.IsNullOrEmpty(english))
                {
                    english = "";
                }

                string jap = "";
                japMap.TryGetValue(key, out jap);
                if (String.IsNullOrEmpty(jap))
                {
                    jap = "";
                }
                resulList.Add(key + "," + china.Replace(',', '&') + "," + english.Replace(',', '&')+ "," + jap.Replace(',', '&'));
            }
            File.WriteAllLines("D:\\storeResource.csv", resulList.ToArray());
        }



        public static void ChangeRes()
        {
            string rPath = Application.StartupPath + @"\MIMO软件文本.csv";
            string chinaPath = Application.StartupPath + @"\MIMO软件文本中文.resx";
            string englishPath = Application.StartupPath + @"\MIMO软件文本英文.resx";
            string japPath = Application.StartupPath + @"\MIMO软件文本日文.resx";
            if (!File.Exists(rPath))
            {
                return;
            }
            Dictionary<string, string> ChinaMap = new Dictionary<string, string>();
            Dictionary<string, string> EnglishMap = new Dictionary<string, string>();
            Dictionary<string, string> JapMap = new Dictionary<string, string>();
            char spilt = ',';
            if (File.Exists(rPath))
            {
                string[] lines = FileEncoding.GetFileLines(rPath);
                foreach (string line in lines)
                {
                    try
                    {
                        if (String.IsNullOrEmpty(line))
                        {
                            continue;
                        }
                        string[] array = line.Split(spilt);
                        if (array.Length >= 2)
                        {
                            string key = array[0].Trim();
                            string china = array[1].Replace('&', ',').Trim();

                            string eng = "";
                            if (array.Length >= 3)
                            {
                                eng = array[2].Replace('&', ',').Trim();
                            }
                            string jap = "";
                            if (array.Length >= 4)
                            {
                                jap = array[3].Replace('&', ',').Trim();
                            }
                            if (ChinaMap.ContainsKey(key))
                            {
                                ChinaMap[key] = china;
                            }
                            else
                            {
                                ChinaMap.Add(key, china);
                            }

                            if (EnglishMap.ContainsKey(key))
                            {
                                EnglishMap[key] = eng;
                            }
                            else
                            {
                                EnglishMap.Add(key, eng);
                            }
                            if (JapMap.ContainsKey(key))
                            {
                                JapMap[key] = jap;
                            }
                            else
                            {
                                JapMap.Add(key, jap);
                            }

                        }
                    }
                    catch (Exception ex)
                    {
                        LogUtil.error("读取文件【" + rPath + "】【" + line + "】出错:" + ex.ToString());
                    }
                }
            }
            List<string> chinaBuf = new List<string>();
            List<string> engBuf = new List<string>();
            List<string> japBuf = new List<string>();
            foreach (string key in ChinaMap.Keys)
            {
                string chinastr = ChinaMap[key];
                string engStr = EnglishMap[key];
                string japStr = JapMap[key];
                chinaBuf.Add(GetRes(key, chinastr));
                engBuf.Add(GetRes(key, engStr));
                japBuf.Add(GetRes(key, japStr));
                File.WriteAllLines(chinaPath, chinaBuf, Encoding.UTF8);
                File.WriteAllLines(englishPath, engBuf, Encoding.UTF8);
                File.WriteAllLines(japPath, japBuf, Encoding.UTF8);
            }

        }
        private static string GetRes(string key, string v)
        {
            StringBuilder builder = new StringBuilder();
            builder.AppendLine("<data name = \"" + key + "\" xml:space = \"preserve\">");
            builder.Append("<value> " + v + " </value>");
            builder.Append(" </data>");
            string re = builder.ToString();
            return re;
        }
        private static Dictionary<string, string> GetRMap(string lan)
        {
            Dictionary<string, string> chinaMap = new Dictionary<string, string>();
            CultureInfo ci = new CultureInfo(lan);
            ResourceSet resourceSet = rm.GetResourceSet(ci, true, true);
            IDictionaryEnumerator dictNumerator = resourceSet.GetEnumerator();
            // Get all string resources
            while (dictNumerator.MoveNext())
            {
                // Only string resources
                if (dictNumerator.Value is string)
                {
                    var key = (string)dictNumerator.Key;
                    var value = (string)dictNumerator.Value;
                    // yield return new KeyValuePair<string, string>(key, value);
                    if (!chinaMap.ContainsKey(key))
                    {
                        chinaMap.Add(key, value);
                    }
                }
            }
            return chinaMap;
        }
        private static string CodeResourceControl_GetLanguageEvent()
        {
            return CurrLanguage;
        }

        private static Assembly assembly = Assembly.GetExecutingAssembly();
        public static string GetString(string id)
        {
            return GetString(id, id);
        }
        public static string GetString(string id, string defaultStr)
        {
            string strCurLanguage = "";

            try
            {
                if (rm == null)
                {
                    rm = new ResourceManager("OnlineStore.AutoInOutStore.Properties.Resource", assembly);
                }
                //CultureInfo ci = Thread.CurrentThread.CurrentCulture;
                CultureInfo ci = new CultureInfo(CurrLanguage);
                strCurLanguage = rm.GetString(id, ci).Trim();
                if (strCurLanguage.Equals("") && (!defaultStr.Equals("")))
                {
                    strCurLanguage = defaultStr;
                    NoIdLog(id, defaultStr);
                }

            }
            catch (Exception ex)
            {
                if (defaultStr.Equals(""))
                {
                }
                else
                {
                    strCurLanguage = "No id:[" + id + "], please add.";
                    strCurLanguage = defaultStr;
                    NoIdLog(id, defaultStr);
                }
            }
            return strCurLanguage;
        }
        private static string GetStringByLan(string language, string id, string defaultStr, params object[] param)
        {
            string strCurLanguage = "";

            try
            {
                if (rm == null)
                {
                    rm = new ResourceManager("OnlineStore.AutoInOutStore.Properties.Resource", assembly);
                }
                //CultureInfo ci = Thread.CurrentThread.CurrentCulture;
                CultureInfo ci = new CultureInfo(language);
                strCurLanguage = rm.GetString(id, ci).Trim();
                if (strCurLanguage.Equals("") && (!defaultStr.Equals("")))
                {
                    strCurLanguage = defaultStr;
                    NoIdLog(id, defaultStr);
                }
            }
            catch (Exception ex)
            {
                if (defaultStr.Equals(""))
                {
                }
                else
                {
                    strCurLanguage = "No id:[" + id + "], please add.";
                    strCurLanguage = defaultStr;
                    NoIdLog(id, defaultStr);
                }
            }
            return String.Format(strCurLanguage, param);
        }

        public static string GetString(string id, string defaultStr, params object[] param)
        {
            return GetStringByLan(CurrLanguage, id, defaultStr, param);
        }


        private static void NoIdLog(string id, string defaultStr)
        {
            if (ShowLog)
            {
                LogUtil.info("No id:[" + id + "], please add,use default string :" + defaultStr);
                if (!defaultMap.ContainsKey(id))
                {
                    defaultMap.Add(id, defaultStr);
                }
            }
        }
        public static void LogDefaultMap()
        {
            LogUtil.info("开始打印缺少的文字配置" + defaultMap.Count);
            foreach (string key in defaultMap.Keys)
            {
                string value = defaultMap[key];
                LogUtil.info("     缺少文字配置[" + key + "]     默认值[" + value + "]");
            }
            LogUtil.info("结束打印缺少的文字配置");
        }
        private static string spiltStr = "_";
        private static string Text = "Text";
        public static string GetIdStr(string className, string controlName, string propertyName)
        {
            return className + spiltStr + controlName + spiltStr + propertyName;
        }
        public static string GetIdStr(string className, string propertyName)
        {
            return className + spiltStr + propertyName;
        }
        public static string GetTextIdStr(string className, string controlName)
        {
            return className + spiltStr + controlName + spiltStr + Text;
        }
        public static string GetTextIdStr(string className)
        {
            return className + spiltStr + Text;
        }
        public static Image M_pPoint;
        public static Image M_axis;
        public static Image M_axis2;
        public static Image M_axis4;
        public static Image M_US_pPoint;
        public static Image M_US_axis;
        public static Image M_US_axis2;
        public static Image M_US_axis4;


        public static Image M_JP_pPoint;
        public static Image M_JP_axis;
        public static Image M_JP_axis2;
        public static Image M_JP_axis4;
        /// <summary>
        /// 是否已经初始化过了 
        /// </summary>
        public static bool IsInit = false;
         

        public static Image GetImage(string file)
        {
            Image result = null;
            if (File.Exists(file))
            {
                Image image = Image.FromFile(file);
                result = new System.Drawing.Bitmap(image);
                image.Dispose();
            }
            else
            {

            }
            return result;
        }
        public static void Init()
        {
            try
            {
                IsInit = true; 
                M_pPoint = GetImage(Application.StartupPath + "\\image\\cn\\pPoint.png");
                M_axis = GetImage(Application.StartupPath + "\\image\\cn\\axis.png");
                M_axis2 = GetImage(Application.StartupPath + "\\image\\cn\\axis2.png");
                M_axis4 = GetImage(Application.StartupPath + "\\image\\cn\\axis4.png");
                 
                M_US_pPoint = GetImage(Application.StartupPath + "\\image\\us\\pPoint.png");
                M_US_axis = GetImage(Application.StartupPath + "\\image\\us\\axis.png");
                M_US_axis2 = GetImage(Application.StartupPath + "\\image\\us\\axis2.png");
                M_US_axis4 = GetImage(Application.StartupPath + "\\image\\us\\axis4.png");

                M_JP_pPoint = GetImage(Application.StartupPath + "\\image\\jp\\pPoint.png");
                M_JP_axis = GetImage(Application.StartupPath + "\\image\\jp\\axis.png");
                M_JP_axis2 = GetImage(Application.StartupPath + "\\image\\jp\\axis2.png");
                M_JP_axis4 = GetImage(Application.StartupPath + "\\image\\jp\\axis4.png");

            }
            catch (Exception ex)
            {
                Console.Write(ex.ToString());
            }
        }



        /// <summary>
        /// 保存成功!
        /// </summary>
        public static string SaveOk = "SaveOk";
        /// <summary>
        /// 提示
        /// </summary>
        public static string MsgTitle = "MsgTitle";
        /// <summary>
        /// 打开串口失败
        /// </summary>
        public static string OpenComFail = "OpenComFail";


        /// <summary>
        /// 请先启动料仓
        /// </summary>
        public static string PleaseStartStore = "PleaseStartStore";
 
        /// <summary>
        /// 警告
        /// </summary>
        public static string WarnMsg = "WarnMsg";
        /// <summary>
        /// 保存失败
        /// </summary>
        public static string SaveError = "SaveError";
        /// <summary>
        /// 无报警,无出入库或者重置操作时,才可以回待机点
        /// </summary>
        public static string CanotReset = "CanotReset";
        /// <summary>
        /// 请先输入正确的速度
        /// </summary>
        public static string PWSpeed = "PWSpeed";
        /// <summary>
        /// 是否确定退出
        /// </summary>
        public static string SureExit = "SureExit";
        /// <summary>
        /// AutoOut 自动出库:
        /// </summary>
        public static string AutoOut = "AutoOut";
        /// <summary>
        /// AutoIn 自动入库:
        /// </summary>
        public static string AutoIn = "AutoIn";
        /// <summary>
        /// AutoEnd 自动出入库结束
        /// </summary>
        public static string AutoEnd = "AutoEnd";


        ///// <summary>
        ///// 前门未关
        ///// </summary>
        //public static string DoorHasOpen = "DoorHasOpen";
        /// <summary>
        /// 叉子料盘检测有料,请检查
        /// </summary>
        public static string HasWare = "HasWare";
        /// <summary>
        /// 开始自动出入库
        /// </summary>
        public static string StartAuto = "StartAuto";
        /// <summary>
        /// 停止自动出入库
        /// </summary>
        public static string StopAuto = "StopAuto";
        /// <summary>
        /// 等待启动
        /// </summary>
        public static string WaitStart = "WaitStart";
 

        /// <summary>      
        /// 此设备不支持单个入库	 
        ///  </summary>  
        public static string CanotSingleInStore = "CanotSingleInStore";
        /// <summary>    
        ///叉子不在待机位,请先将叉子退回待机位	 
        /// </summary> 
        public static string InoutNotOk = "InoutNotOk";
        /// <summary>    
        ///警告(叉子在待机位时,才能移动升降轴和旋转轴)
        /// </summary>
        public static string InoutWarn = "InoutWarn";
        /// <summary>     
        ///无报警,无出入库或者重置操作时,才可以回待机点	 
        /// </summary>
        public static string CanotBack = "CanotBack";
        /// <summary>   
        ///请先关闭批量上下料门	 
        /// </summary> 
        public static string PCloseDoor = "PCloseDoor";
        /// <summary>   
        ///请输入正确的密码	 
        /// </summary>  
        public static string PWPwd = "PWPwd";
        /// <summary>      
        ///忙碌中,无法打开门锁	 
        /// </summary>  
        public static string CnotOpen = "CnotOpen";
        /// <summary>     
        ///批量入库失败:请先关闭上料机构	
        /// </summary>  
        public static string batchInError = "batchInError";
        /// <summary>     
        ///批量入库失败:叉子料盘检测有料,请检查后再入库	 
        /// </summary> 
        public static string batchInError2 = "batchInError2";
        /// <summary>   
        ///取出料盘失败:无料盘可取	 
        /// </summary>  
        public static string GetError = "GetError";
        /// <summary>     
        ///取出料盘失败:忙碌中,无法打开门锁	  
        /// </summary>  
        public static string GetError2 = "GetError2";
        /// <summary>      
        ///锁门失败:请先关闭上料机构
        /// </summary>  
        public static string CloseError = "CloseError";
        /// <summary>     
        ///已确认料盘已手动拿出	 
        /// </summary> 
        public static string TakeTrayOut = "TakeTrayOut";
        /// <summary>  
        ///未检测到气压信号	 
        /// </summary>  
        public static string NoAIr = "NoAIr";
        /// <summary>    
        ///料盘高度	  
        /// </summary> 
        public static string trayHeight = "trayHeight";
        /// <summary>   
        ///负限位	  
        /// </summary> 
        public static string FuLimit = "FuLimit";
        /// <summary>   
        ///正限位	 
        /// </summary>  
        public static string ZhLimit = "ZhLimit";
        /// <summary>  
        ///上料轴运动停止	 
        /// </summary> 
        public static string BatchStop = "BatchStop";
        /// <summary>   
        ///扫码结束	 
        /// </summary>  public static string  	ScanOk	= "ScanOk";
        /// <summary>   
        ///操作人员拿走料盘	
        /// </summary>  
        public static string TakeTrayGo = "TakeTrayGo";
        /// <summary>    
        ///等待送料结束	
        /// </summary>
        public static string WaitEnd = "WaitEnd";
    

        /// <summary>    
        ///伺服OFF	  
        /// </summary>  
        public static string ServoOff = "ServoOff";
        /// <summary>    
        ///伺服ON	  
        /// </summary>  
        public static string servoON = "servoON";
        ///// <summary>    
        /////仓门状态未知	  
        ///// </summary>  
        //public static string NoDoorStatus = "NoDoorStatus";
        /// <summary>    
        ///批量出入库信息:    入库:	  
        /// </summary>  
        public static string InstoreInfo = "InstoreInfo";
        /// <summary>    
        ///出库	  
        /// </summary>  
        public static string oustore = "oustore";
        /// <summary>    
        ///门锁关闭	  
        /// </summary>  
        public static string doorClose = "doorClose";
        /// <summary>    
        ///门锁打开	  
        /// </summary>  
        public static string doorOpen = "doorOpen";


        public static string StartCycle = "StartCycle";
        public static string StopCycle = "StopCycle";
    }
}