Пример #1
0
        /// <summary>
        /// Returns the verse text.
        /// </summary>
        /// <param name="version">Bible version - obtained from getBibles()</param>
        /// <param name="b">1-based book (1..66)</param>
        /// <param name="c">1-based chapter (1..150)</param>
        /// <param name="v">2-based verse (1..?)</param>
        /// <returns></returns>
        public string getVerseText(string version, int b, int c, int v)
        {
            SWModule module = getModule(version);

            VerseKey vk = new VerseKey();

            vk.AutoNormalize((char)0);
            // Or else it will get improperly normalized before it's fully configured.

            if (b < 40)
            {
                vk.Testament((char)1);
                // OT =  1..39 -> Sword = 1..39
                vk.Book((char)b);
            }
            else
            {
                vk.Testament((char)2);
                // NT = 40..66 -> Sword = 1..27
                vk.Book((char)(b - 39));
            }

            vk.Chapter(c);
            vk.Verse(v);

            /* vk.Error() would return an error (non-zero) if only vk.Testament is set (even though
             * it sets Book = Chapter = Verse = 1).
             *
             * If there's an error in vk, the increment below would be ignored, so we either have
             * to call vk.Error() to clear it, or set the Book, Chapter, and Verse.
             *  vk.Error();
             *  vk.Book((char)1);
             *  vk.Chapter(1);
             *  vk.Verse(1);
             *
             * The following two don't work because incrementing the index takes us through
             * headings and other non-verse indices:
             *      vk.increment(verseIdx);
             *      vk.Index(vk.Index() + verseIdx);
             */

            if (vk.Error() != '\0')
            {
                // report the error
            }

            return(DreamTools.Sword_ConvertEncoding(module.RenderText(vk)).Trim());
        }
Пример #2
0
        public BibleVersion(BackgroundWorker worker, DoWorkEventArgs evArg, string version, System.Data.DataTable replacements)
        {
            _version      = version;
            _replacements = replacements;
            int i = 0, b = -1, book;

            System.EventArgs e = new System.EventArgs();
            SWModule         module = SwordW.Instance().getModule(version);
            VerseKey         vk = new VerseKey("Gen 1:1");

            while (vk.Error() == '\0')
            {
                if ((i % 300) == 0)
                {
                    int progress = (int)(((float)i / 31102F) * 100);
                    worker.ReportProgress(progress);
                }
                string t = DreamTools.Sword_ConvertEncoding(module.RenderText(vk)).Trim();
                book = vk.Book();

                // Book numbering is 1-based and starts back up from 1 in the New Testament
                // OT = 1, NT = 2
                if (vk.Testament() == (char)2)
                {
                    book += 39;
                }
                BibleVerse v = new BibleVerse(i, book - 1, vk.Chapter(), vk.Verse(), Replace(t));
                verses[i] = v;

                // book is 1-based, b is 0-based
                if (b < book - 1)
                {
                    b = book - 1;
                    BibleBooks[b].Long = vk.getBookName();
                    Console.WriteLine("Processing " + BibleBooks[b].Long);
                    if (worker.CancellationPending)
                    {
                        evArg.Cancel = true;
                    }
                }

                i++;
                vk.increment();
            }

            _VerseCount = i;

            for (i = 0; i < this.BibleBooks.Length; i++)
            {
                if (BibleBooks[i].Long == null)
                {
                    BibleBooks[i].Long = "";
                }
                string bk = BibleBooks[i].Long;
                bk = Regex.Replace(bk.Trim(), @"^III ", "3 ");
                bk = Regex.Replace(bk, @"^II ", "2 ");
                bk = Regex.Replace(bk, @"^I ", "1 ");
                BibleBooks[i].Long  = bk;
                BibleBooks[i].Short = bk;
            }

            worker.ReportProgress(100);
        }