pull/1625/head 3.22.021714
kunfei 3 years ago
parent 33b7800215
commit 55e8af89af
  1. 20
      app/src/main/java/io/legado/app/model/localBook/TextFile.kt

@ -151,17 +151,25 @@ class TextFile(private val book: Book) {
val chapterContent = blockContent.substring(seekPos, chapterStart) val chapterContent = blockContent.substring(seekPos, chapterStart)
val chapterLength = chapterContent.toByteArray(charset).size val chapterLength = chapterContent.toByteArray(charset).size
val lastStart = toc.lastOrNull()?.start ?: curOffset val lastStart = toc.lastOrNull()?.start ?: curOffset
if (book.getSplitLongChapter() && curOffset + chapterLength - lastStart > maxLengthWithToc) { if (book.getSplitLongChapter()
&& curOffset + chapterLength - lastStart > maxLengthWithToc
) {
toc.lastOrNull()?.let { toc.lastOrNull()?.let {
it.end = it.start it.end = it.start
} }
//章节字数太多进行拆分 //章节字数太多进行拆分
toc.addAll( val lastTitle = toc.lastOrNull()?.title
analyze( val lastTitleLength = lastTitle?.toByteArray(charset)?.size ?: 0
lastStart + matcher.group().length, val chapters = analyze(
lastStart + lastTitleLength,
curOffset + chapterLength curOffset + chapterLength
) )
) lastTitle?.let {
chapters.forEachIndexed { index, bookChapter ->
bookChapter.title = "$lastTitle(${index + 1})"
}
}
toc.addAll(chapters)
//创建当前章节 //创建当前章节
val curChapter = BookChapter() val curChapter = BookChapter()
curChapter.title = matcher.group() curChapter.title = matcher.group()
@ -189,7 +197,7 @@ class TextFile(private val book: Book) {
} else { //否则就block分割之后,上一个章节的剩余内容 } else { //否则就block分割之后,上一个章节的剩余内容
//获取上一章节 //获取上一章节
val lastChapter = toc.last() val lastChapter = toc.last()
toc.last().isVolume = lastChapter.isVolume =
chapterContent.substringAfter(lastChapter.title).isBlank() chapterContent.substringAfter(lastChapter.title).isBlank()
//将当前段落添加上一章去 //将当前段落添加上一章去
lastChapter.end = lastChapter.end =

Loading…
Cancel
Save