Skip to content

Commit 55e8af8

Browse files
committed
优化
1 parent 33b7800 commit 55e8af8

File tree

1 file changed

+15
-7
lines changed
  • app/src/main/java/io/legado/app/model/localBook

1 file changed

+15
-7
lines changed

app/src/main/java/io/legado/app/model/localBook/TextFile.kt

+15-7
Original file line numberDiff line numberDiff line change
@@ -151,17 +151,25 @@ class TextFile(private val book: Book) {
151151
val chapterContent = blockContent.substring(seekPos, chapterStart)
152152
val chapterLength = chapterContent.toByteArray(charset).size
153153
val lastStart = toc.lastOrNull()?.start ?: curOffset
154-
if (book.getSplitLongChapter() && curOffset + chapterLength - lastStart > maxLengthWithToc) {
154+
if (book.getSplitLongChapter()
155+
&& curOffset + chapterLength - lastStart > maxLengthWithToc
156+
) {
155157
toc.lastOrNull()?.let {
156158
it.end = it.start
157159
}
158160
//章节字数太多进行拆分
159-
toc.addAll(
160-
analyze(
161-
lastStart + matcher.group().length,
162-
curOffset + chapterLength
163-
)
161+
val lastTitle = toc.lastOrNull()?.title
162+
val lastTitleLength = lastTitle?.toByteArray(charset)?.size ?: 0
163+
val chapters = analyze(
164+
lastStart + lastTitleLength,
165+
curOffset + chapterLength
164166
)
167+
lastTitle?.let {
168+
chapters.forEachIndexed { index, bookChapter ->
169+
bookChapter.title = "$lastTitle(${index + 1})"
170+
}
171+
}
172+
toc.addAll(chapters)
165173
//创建当前章节
166174
val curChapter = BookChapter()
167175
curChapter.title = matcher.group()
@@ -189,7 +197,7 @@ class TextFile(private val book: Book) {
189197
} else { //否则就block分割之后,上一个章节的剩余内容
190198
//获取上一章节
191199
val lastChapter = toc.last()
192-
toc.last().isVolume =
200+
lastChapter.isVolume =
193201
chapterContent.substringAfter(lastChapter.title).isBlank()
194202
//将当前段落添加上一章去
195203
lastChapter.end =

0 commit comments

Comments
 (0)