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
|
/*
Copyright (©) 2003-2025 Teus Benschop.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <olb/text.h>
#include <filter/string.h>
#include <filter/url.h>
#include <filter/url.h>
#include <database/books.h>
// Class for creating input files for the Online Bible compiler.
OnlineBible_Text::OnlineBible_Text ()
{
}
void OnlineBible_Text::storeData ()
{
if (lineLoaded) output.push_back (filter::strings::trim (currentLine));
currentLine.clear();
lineLoaded = false;
}
void OnlineBible_Text::newVerse (int bookIdentifier, int chapterNumber, int verseNumber)
{
storeData ();
// Store passage and any text only in case the book is valid,
// and the chapter and verse are non-zero.
std::string book = database::books::get_onlinebible_from_id (static_cast<book_id>(bookIdentifier));
if (!book.empty()) {
if (chapterNumber > 0) {
if (verseNumber > 0) {
output.push_back ("$$$ " + book + " " + std::to_string (chapterNumber) + ":" + std::to_string (verseNumber));
currentLine.clear ();
lineLoaded = true;
}
}
}
}
// This function adds $text to the current line.
void OnlineBible_Text::add_text (std::string text)
{
if (lineLoaded) currentLine += text;
}
// This function adds a note to the current paragraph.
void OnlineBible_Text::addNote ()
{
add_text ("{");
}
// This function closes the current footnote.
void OnlineBible_Text::close_current_note ()
{
add_text ("}");
}
// This saves the data to file $name: the name of the file to save to.
void OnlineBible_Text::save (std::string name)
{
storeData ();
std::string data = filter::strings::implode (output, "\n");
filter_url_file_put_contents (name, data);
}
|